diff --git a/.editorconfig b/.editorconfig index f47ef958..0150b195 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,3 +11,6 @@ indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true + +[justfile] +indent_size = 4 \ No newline at end of file diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index d2fd5408..00000000 --- a/.eslintignore +++ /dev/null @@ -1,8 +0,0 @@ -# directories -.docusaurus -node_modules -repos - -# files -babel.config.js -docusaurus.config.ts diff --git a/.eslintrc.yml b/.eslintrc.yml deleted file mode 100644 index 75794b44..00000000 --- a/.eslintrc.yml +++ /dev/null @@ -1,44 +0,0 @@ -env: - shared-node-browser: true -extends: - - "eslint:recommended" - - "plugin:@docusaurus/recommended" -overrides: - - files: - - "*.md" - - "*.mdx" - extends: - - "plugin:mdx/recommended" - - "plugin:react/recommended" - parser: "eslint-mdx" - rules: - no-unused-expressions: "off" - - files: - - "*.ts" - - "*.tsx" - extends: - - "plugin:@typescript-eslint/recommended" - - "plugin:react/recommended" - parser: "@typescript-eslint/parser" - parserOptions: - ecmaFeatures: - jsx: true - ecmaVersion: "latest" - project: "tsconfig.json" - sourceType: "module" - plugins: - - "@typescript-eslint" - rules: - "@typescript-eslint/no-floating-promises": - - error - - ignoreIIFE: true - ignoreVoid: true - "@typescript-eslint/no-unused-vars": - - error - - argsIgnorePattern: ^_ - varsIgnorePattern: ^_ - "react/react-in-jsx-scope": "off" -root: true -settings: - react: - version: "detect" diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 00000000..d7a716b8 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,34 @@ +name: "Deploy to Vercel" + +on: + workflow_dispatch: + push: + branches: ["main"] + +jobs: + cd: + environment: "production" + runs-on: "ubuntu-latest" + steps: + - name: "Check out the repo" + uses: "actions/checkout@v4" + + - name: "Set up devkit" + uses: "sablier-labs/devkit/actions/setup@main" + with: + package-manager: "bun" + + - name: "Run the code checks" + run: "just full-check" + + - name: "Deploy to Vercel" + env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} + VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} + run: "just deploy" + + - name: "Add summary" + run: | + echo "## Continuous Deployment results" >> $GITHUB_STEP_SUMMARY + echo "✅ Passed" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/stale.yml b/.github/workflows/cron-stale.yml similarity index 100% rename from .github/workflows/stale.yml rename to .github/workflows/cron-stale.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index cb175bc4..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: "Deploy to Vercel" - -on: - workflow_dispatch: - push: - branches: ["main"] - -env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} - -jobs: - cd: - environment: "production" - runs-on: "ubuntu-latest" - steps: - - name: "Check out the repo" - uses: "actions/checkout@v4" - - - name: "Install Bun" - uses: "oven-sh/setup-bun@v1" - - - name: "Install the dependencies" - run: "bun install --frozen-lockfile" - - - name: "Lint the code" - run: "bun run check" - - - name: "Pull Vercel environment information" - run: "bun vercel pull --environment=production --token=$VERCEL_TOKEN --yes" - - - name: "Build the website" - run: "bun vercel build --prod --token=$VERCEL_TOKEN" - - - name: "Add build summary" - run: | - echo "## Build results" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY - - - name: "Deploy to Vercel" - run: "bun vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN" - - - name: "Add deploy summary" - run: | - echo "## Deploy results" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY diff --git a/.gitignore b/.gitignore index 9867300e..a7086dac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,10 @@ # directories .cache-loader .docusaurus +.repomix build node_modules +src/autogen/**/*.mdx # files *.env @@ -10,7 +12,4 @@ node_modules *.tsbuildinfo .DS_Store .eslintcache -.pnp.* package-lock.json -pnpm-lock.yaml -yarn.lock diff --git a/.lintstagedrc.js b/.lintstagedrc.js new file mode 100644 index 00000000..abf1306a --- /dev/null +++ b/.lintstagedrc.js @@ -0,0 +1,9 @@ +/** + * @type {import("lint-staged").Configuration} + */ +module.exports = { + "*.{css,js,json,jsonc,jsx,ts,tsx}": "bun biome check --write", + "*.{js,jsx,ts,tsx}": "bun biome lint --write --only correctness/noUnusedImports", + "*.{md,mdx,yaml,yml}": "bun prettier --cache --write", + "*.{md,mdx}": "bun eslint --cache --fix", +}; diff --git a/.lintstagedrc.yml b/.lintstagedrc.yml deleted file mode 100644 index 5fcf8208..00000000 --- a/.lintstagedrc.yml +++ /dev/null @@ -1 +0,0 @@ -"*.{json,md,mdx,ts,tsx,yml}": "bun run fix" diff --git a/.prettierignore b/.prettierignore index 42834666..4942f287 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,11 +1,8 @@ # directories -.cache-loader .docusaurus build node_modules repos # files -.pnp.* -package-lock.json -pnpm-lock.yaml +src/autogen/**/*.mdx \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 00000000..9779cd65 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,9 @@ +const baseConfig = require("@sablier/devkit/prettier"); + +/** + * @see https://prettier.io/docs/configuration + * @type {import("prettier").Config} + */ +const config = baseConfig; + +module.exports = config; diff --git a/.prettierrc.yml b/.prettierrc.yml deleted file mode 100644 index 2e07a63d..00000000 --- a/.prettierrc.yml +++ /dev/null @@ -1,21 +0,0 @@ -printWidth: 120 -plugins: ["@trivago/prettier-plugin-sort-imports"] -trailingComma: "all" - -overrides: - - files: "*.md" - options: - proseWrap: "always" - - files: ["*.ts", "*.tsx"] - options: - # https://github.com/trivago/prettier-plugin-sort-imports#importorder - importOrder: - - "^react" - - "^@emotion" - - "" - - "" - - "" - - "^[./]" - importOrderSeparation: false - importOrderSortSpecifiers: true - parser: "typescript" diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1d7ac851..189f9f70 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] + "recommendations": ["biomejs.biome", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "nefrob.vscode-just-syntax"] } diff --git a/.vscode/settings.json b/.vscode/settings.json index f3c4a802..96284339 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,21 @@ { - "editor.defaultFormatter": "esbenp.prettier-vscode", - "eslint.validate": ["markdown", "mdx", "javascript", "javascriptreact", "typescript", "typescriptreact"], - "prettier.documentSelectors": ["**/*.tsx"], + "biome.enabled": true, + "eslint.validate": ["md", "mdx"], + "typescript.tsdk": "node_modules/typescript/lib", + "editor.codeActionsOnSave": { + "source.fixAll.biome": "explicit", + "source.organizeImports.biome": "explicit" + }, "search.exclude": { - "**/.docusaurus": true, - "**/node_modules": true, - "**/repos": true + ".docusaurus": true, + "build": true, + "node_modules": true, + "repos": true + }, + "[css][javascript][javascriptreact][typescript][typescriptreact]": { + "editor.defaultFormatter": "biomejs.biome" }, - "typescript.tsdk": "node_modules/typescript/lib" + "[md][mdx][yaml]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a8682967..1bc500c6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,58 +5,33 @@ informal concerns or feedback, please join our [Discord server](https://discord. Contributions to Sablier Docs are welcome by anyone interested in improving readability, or adding new features. -## Pre Requisites +## Prerequisites -You will need the following software on your machine: +- [Node.js](https://nodejs.org) (v20+) +- [Just](https://github.com/casey/just) (command runner) +- [Bun](https://bun.sh) (package manager) +- [Ni](https://github.com/antfu-collective/ni) (package manager resolver) -- [Git] (https://git-scm.com/downloads) -- [Node.Js] (https://nodejs.org/en/download/) -- [Bun] (https://bun.sh/) +### Setup -### Set Up - -Clone this repository: - -```shell -$ git clone git@github.com:sablier-labs/docs.git && cd docs -``` - -Then, inside the project's directory, run this to install the Node.js dependencies: - -```shell -$ bun install -``` - -Create a new branch and switch to it, this is where all development work should be done: - -```shell -$ git switch +```bash +git clone https://github.com/sablier-labs/docs.git sablier-docs +cd sablier-docs +bun install ``` -Now you can start making changes. - -Run the following command to starts a local development server and opens up a browser window. +### Available Commands -```shell -$ bun run start +```bash +just --list # Show all available commands +just start # Build the docs site locally on localhost:3000 +just full-check # Run all code checks ``` -To see a list of all available scripts: - -```shell -$ bun run -``` - -## Pull Requests - -- Before you submit your Pull Request (PR), search the project for an open or closed PR related to your submission to - avoid duplicating effort. -- Make your changes in a new git branch. -- Commit your changes. Your commit message should follow the - [Conventional Commits](https://conventionalcommits.org/en/v1.0.0/) specification -- Make sure `bun run check` passes. -- Open a pull request from your forked repository to the original repository. - -When making a pull request, ensure that: +### Development Workflow -- A descriptive summary of the PR has been provided. +1. Fork the repository +2. Create a feature branch +3. Make your changes +4. Run `just full-check` to verify code quality +5. Submit a pull request diff --git a/README.md b/README.md index f8764ff5..ea96371f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ $ bun install ### Local Development ```sh -$ bun run start +$ just start ``` This command starts a local development server and opens up a browser window. Most changes are reflected live without @@ -23,7 +23,7 @@ having to restart the server. ### Build ```sh -$ bun run build +$ just build ``` This command generates static content into the `build` directory, and can be served using any static contents hosting @@ -32,7 +32,7 @@ service. ### Clear cache ```sh -$ bun run clear +$ just clean ``` ## License diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index bfd75dbd..00000000 --- a/babel.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - presets: [require.resolve("@docusaurus/core/lib/babel/preset")], -}; diff --git a/biome.jsonc b/biome.jsonc new file mode 100644 index 00000000..00c3138a --- /dev/null +++ b/biome.jsonc @@ -0,0 +1,13 @@ +{ + "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", + "extends": ["@sablier/devkit/biome"], + "files": { + "includes": [ + "**/*.{css,js,json,jsonc,jsx,ts,tsx}", + "!node_modules/**", + "!repos/**", + "!src/autogen/**", + "!static/**" + ] + } +} diff --git a/bun.lock b/bun.lock index 453c84ac..00fd4735 100644 --- a/bun.lock +++ b/bun.lock @@ -2,55 +2,61 @@ "lockfileVersion": 1, "workspaces": { "": { - "name": "@sablier/v2-docs", + "name": "@sablier/docs", "dependencies": { - "@algolia/client-search": "^4.24", + "@algolia/client-search": "^5.27", "@cookbookdev/docsbot": "^4.25", "@docusaurus/core": "^3.8", + "@docusaurus/faster": "^3.8.1", "@docusaurus/plugin-client-redirects": "^3.8", "@docusaurus/plugin-vercel-analytics": "^3.8", "@docusaurus/preset-classic": "^3.8", - "@docusaurus/theme-classic": "^3.8", "@docusaurus/theme-mermaid": "^3.8", "@emotion/react": "^11.14", "@emotion/styled": "^11.14", + "@graphql-markdown/docusaurus": "^1.29", + "@graphql-tools/graphql-file-loader": "^8.0.20", "@heroicons/react": "^2.2", - "@mdx-js/react": "~3.0.1", + "@mdx-js/mdx": "~3.1", + "@sablier/indexers": "1.0.0-beta.2", "@vercel/analytics": "^1.5", - "clsx": "^2.1", + "axios": "^1.9", "docusaurus-theme-github-codeblock": "^2.0", "function-plot": "^1.25", - "hast-util-is-element": "3.0.0", + "lodash": "^4.17", "prism-react-renderer": "^2.4", - "react": "18.2", - "react-dom": "18.2", - "react-loadable": "^5.5", + "react": "18.2.0", + "react-dom": "18.2.0", + "rehype-external-links": "^3.0", "rehype-katex": "7", "remark-math": "6", + "sablier": "1.0.0-beta.8", }, "devDependencies": { - "@docusaurus/eslint-plugin": "^3.8", - "@docusaurus/module-type-aliases": "^3.8", + "@biomejs/biome": "2.0.0-beta.5", "@docusaurus/tsconfig": "^3.8", "@docusaurus/types": "^3.8", - "@trivago/prettier-plugin-sort-imports": "^4.3", - "@types/node": "^20.19", - "@typescript-eslint/eslint-plugin": "^8.33", - "@typescript-eslint/parser": "^8.33", - "eslint": "^8.57", - "eslint-plugin-mdx": "^3.4", - "eslint-plugin-react": "^7.37", + "@eslint/compat": "^1.3.0", + "@graphql-markdown/types": "^1.7.0", + "@graphql-tools/url-loader": "^8.0.31", + "@sablier/devkit": "github:sablier-labs/devkit#main", + "@types/eslint": "^9.6.1", + "@types/node": "^24.0", + "bufferutil": "^4.0.9", + "commander": "^14.0", + "eslint": "^9.29", + "eslint-plugin-mdx": "^3.5", + "execa": "5.1.1", "husky": "^9.1", - "lint-staged": "^15.5", + "js-yaml": "^4.1.0", + "lint-staged": "^16.1", "prettier": "^3.5", - "typescript": "^5.8", - "vercel": "^34.4", + "typescript": "5.8.3", + "utf-8-validate": "^6.0.5", + "vercel": "^43.1", }, }, }, - "overrides": { - "jackspeak": "2.1.1", - }, "packages": { "@adraffy/ens-normalize": ["@adraffy/ens-normalize@1.10.0", "", {}, "sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q=="], @@ -62,41 +68,33 @@ "@algolia/autocomplete-shared": ["@algolia/autocomplete-shared@1.17.9", "", { "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", "algoliasearch": ">= 4.9.1 < 6" } }, "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ=="], - "@algolia/cache-common": ["@algolia/cache-common@4.24.0", "", {}, "sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g=="], - - "@algolia/client-abtesting": ["@algolia/client-abtesting@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-wPOzHYSsW+H97JkBLmnlOdJSpbb9mIiuNPycUCV5DgzSkJFaI/OFxXfZXAh1gqxK+hf0miKue1C9bltjWljrNA=="], + "@algolia/client-abtesting": ["@algolia/client-abtesting@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-AM/6LYMSTnZvAT5IarLEKjYWOdV+Fb+LVs8JRq88jn8HH6bpVUtjWdOZXqX1hJRXuCAY8SdQfb7F8uEiMNXdYQ=="], - "@algolia/client-analytics": ["@algolia/client-analytics@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-XE3iduH9lA7iTQacDGofBQyIyIgaX8qbTRRdj1bOCmfzc9b98CoiMwhNwdTifmmMewmN0EhVF3hP8KjKWwX7Yw=="], + "@algolia/client-analytics": ["@algolia/client-analytics@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-La34HJh90l0waw3wl5zETO8TuukeUyjcXhmjYZL3CAPLggmKv74mobiGRIb+mmBENybiFDXf/BeKFLhuDYWMMQ=="], - "@algolia/client-common": ["@algolia/client-common@4.24.0", "", { "dependencies": { "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" } }, "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA=="], + "@algolia/client-common": ["@algolia/client-common@5.29.0", "", {}, "sha512-T0lzJH/JiCxQYtCcnWy7Jf1w/qjGDXTi2npyF9B9UsTvXB97GRC6icyfXxe21mhYvhQcaB1EQ/J2575FXxi2rA=="], - "@algolia/client-insights": ["@algolia/client-insights@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-QGc/bmDUBgzB71rDL6kihI2e1Mx6G6PxYO5Ks84iL3tDcIel1aFuxtRF14P8saGgdIe1B6I6QkpkeIddZ6vWQw=="], + "@algolia/client-insights": ["@algolia/client-insights@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-A39F1zmHY9aev0z4Rt3fTLcGN5AG1VsVUkVWy6yQG5BRDScktH+U5m3zXwThwniBTDV1HrPgiGHZeWb67GkR2Q=="], - "@algolia/client-personalization": ["@algolia/client-personalization@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-zuM31VNPDJ1LBIwKbYGz/7+CSm+M8EhlljDamTg8AnDilnCpKjBebWZR5Tftv/FdWSro4tnYGOIz1AURQgZ+tQ=="], + "@algolia/client-personalization": ["@algolia/client-personalization@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-ibxmh2wKKrzu5du02gp8CLpRMeo+b/75e4ORct98CT7mIxuYFXowULwCd6cMMkz/R0LpKXIbTUl15UL5soaiUQ=="], - "@algolia/client-query-suggestions": ["@algolia/client-query-suggestions@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-Nn872PuOI8qzi1bxMMhJ0t2AzVBqN01jbymBQOkypvZHrrjZPso3iTpuuLLo9gi3yc/08vaaWTAwJfPhxPwJUw=="], + "@algolia/client-query-suggestions": ["@algolia/client-query-suggestions@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-VZq4/AukOoJC2WSwF6J5sBtt+kImOoBwQc1nH3tgI+cxJBg7B77UsNC+jT6eP2dQCwGKBBRTmtPLUTDDnHpMgA=="], - "@algolia/client-search": ["@algolia/client-search@4.24.0", "", { "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" } }, "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA=="], + "@algolia/client-search": ["@algolia/client-search@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-cZ0Iq3OzFUPpgszzDr1G1aJV5UMIZ4VygJ2Az252q4Rdf5cQMhYEIKArWY/oUjMhQmosM8ygOovNq7gvA9CdCg=="], "@algolia/events": ["@algolia/events@4.0.1", "", {}, "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ=="], - "@algolia/ingestion": ["@algolia/ingestion@1.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-5GHNTiZ3saLjTNyr6WkP5hzDg2eFFAYWomvPcm9eHWskjzXt8R0IOiW9kkTS6I6hXBwN5H9Zna5mZDSqqJdg+g=="], - - "@algolia/logger-common": ["@algolia/logger-common@4.24.0", "", {}, "sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA=="], - - "@algolia/monitoring": ["@algolia/monitoring@1.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-KUWQbTPoRjP37ivXSQ1+lWMfaifCCMzTnEcEnXwAmherS5Tp7us6BAqQDMGOD4E7xyaS2I8pto6WlOzxH+CxmA=="], + "@algolia/ingestion": ["@algolia/ingestion@1.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-scBXn0wO5tZCxmO6evfa7A3bGryfyOI3aoXqSQBj5SRvNYXaUlFWQ/iKI70gRe/82ICwE0ICXbHT/wIvxOW7vw=="], - "@algolia/recommend": ["@algolia/recommend@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-oo/gG77xTTTclkrdFem0Kmx5+iSRFiwuRRdxZETDjwzCI7svutdbwBgV/Vy4D4QpYaX4nhY/P43k84uEowCE4Q=="], + "@algolia/monitoring": ["@algolia/monitoring@1.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-FGWWG9jLFhsKB7YiDjM2dwQOYnWu//7Oxrb2vT96N7+s+hg1mdHHfHNRyEudWdxd4jkMhBjeqNA21VbTiOIPVg=="], - "@algolia/requester-browser-xhr": ["@algolia/requester-browser-xhr@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3" } }, "sha512-BkkW7otbiI/Er1AiEPZs1h7lxbtSO9p09jFhv3/iT8/0Yz0CY79VJ9iq+Wv1+dq/l0OxnMpBy8mozrieGA3mXQ=="], + "@algolia/recommend": ["@algolia/recommend@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-xte5+mpdfEARAu61KXa4ewpjchoZuJlAlvQb8ptK6hgHlBHDnYooy1bmOFpokaAICrq/H9HpoqNUX71n+3249A=="], - "@algolia/requester-common": ["@algolia/requester-common@4.24.0", "", {}, "sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA=="], + "@algolia/requester-browser-xhr": ["@algolia/requester-browser-xhr@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0" } }, "sha512-og+7Em75aPHhahEUScq2HQ3J7ULN63Levtd87BYMpn6Im5d5cNhaC4QAUsXu6LWqxRPgh4G+i+wIb6tVhDhg2A=="], - "@algolia/requester-fetch": ["@algolia/requester-fetch@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3" } }, "sha512-eAVlXz7UNzTsA1EDr+p0nlIH7WFxo7k3NMxYe8p38DH8YVWLgm2MgOVFUMNg9HCi6ZNOi/A2w/id2ZZ4sKgUOw=="], + "@algolia/requester-fetch": ["@algolia/requester-fetch@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0" } }, "sha512-JCxapz7neAy8hT/nQpCvOrI5JO8VyQ1kPvBiaXWNC1prVq0UMYHEL52o1BsPvtXfdQ7BVq19OIq6TjOI06mV/w=="], - "@algolia/requester-node-http": ["@algolia/requester-node-http@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3" } }, "sha512-FqR3pQPfHfQyX1wgcdK6iyqu86yP76MZd4Pzj1y/YLMj9rRmRCY0E0AffKr//nrOFEwv6uY8BQY4fd9/6b0ZCg=="], - - "@algolia/transporter": ["@algolia/transporter@4.24.0", "", { "dependencies": { "@algolia/cache-common": "4.24.0", "@algolia/logger-common": "4.24.0", "@algolia/requester-common": "4.24.0" } }, "sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA=="], + "@algolia/requester-node-http": ["@algolia/requester-node-http@5.29.0", "", { "dependencies": { "@algolia/client-common": "5.29.0" } }, "sha512-lVBD81RBW5VTdEYgnzCz7Pf9j2H44aymCP+/eHGJu4vhU+1O8aKf3TVBgbQr5UM6xoe8IkR/B112XY6YIG2vtg=="], "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], @@ -104,251 +102,225 @@ "@antfu/utils": ["@antfu/utils@8.1.1", "", {}, "sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ=="], - "@babel/code-frame": ["@babel/code-frame@7.24.7", "", { "dependencies": { "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" } }, "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA=="], - - "@babel/compat-data": ["@babel/compat-data@7.26.8", "", {}, "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="], - - "@babel/core": ["@babel/core@7.26.9", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-module-transforms": "^7.26.0", "@babel/helpers": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/traverse": "^7.26.9", "@babel/types": "^7.26.9", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw=="], - - "@babel/generator": ["@babel/generator@7.17.7", "", { "dependencies": { "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="], + "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], - "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g=="], + "@babel/compat-data": ["@babel/compat-data@7.27.5", "", {}, "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg=="], - "@babel/helper-builder-binary-assignment-operator-visitor": ["@babel/helper-builder-binary-assignment-operator-visitor@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA=="], + "@babel/core": ["@babel/core@7.27.4", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-module-transforms": "^7.27.3", "@babel/helpers": "^7.27.4", "@babel/parser": "^7.27.4", "@babel/template": "^7.27.2", "@babel/traverse": "^7.27.4", "@babel/types": "^7.27.3", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g=="], - "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.26.5", "", { "dependencies": { "@babel/compat-data": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA=="], + "@babel/generator": ["@babel/generator@7.27.5", "", { "dependencies": { "@babel/parser": "^7.27.5", "@babel/types": "^7.27.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw=="], - "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.26.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/helper-replace-supers": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/traverse": "^7.26.9", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg=="], + "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.27.3", "", { "dependencies": { "@babel/types": "^7.27.3" } }, "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg=="], - "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA=="], + "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ=="], - "@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.2", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ=="], + "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/traverse": "^7.27.1", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A=="], - "@babel/helper-environment-visitor": ["@babel/helper-environment-visitor@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ=="], + "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ=="], - "@babel/helper-function-name": ["@babel/helper-function-name@7.24.7", "", { "dependencies": { "@babel/template": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA=="], + "@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.4", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw=="], - "@babel/helper-hoist-variables": ["@babel/helper-hoist-variables@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ=="], + "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA=="], - "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ=="], + "@babel/helper-module-imports": ["@babel/helper-module-imports@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="], - "@babel/helper-module-imports": ["@babel/helper-module-imports@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw=="], + "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.27.3", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.3" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg=="], - "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.26.0", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw=="], + "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.27.1", "", { "dependencies": { "@babel/types": "^7.27.1" } }, "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw=="], - "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ=="], + "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.27.1", "", {}, "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw=="], - "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.24.7", "", {}, "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg=="], + "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-wrap-function": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA=="], - "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-wrap-function": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw=="], + "@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.27.1", "", { "dependencies": { "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA=="], - "@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.26.5", "", { "dependencies": { "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/traverse": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg=="], + "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg=="], - "@babel/helper-simple-access": ["@babel/helper-simple-access@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg=="], + "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="], - "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA=="], + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.27.1", "", {}, "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="], - "@babel/helper-split-export-declaration": ["@babel/helper-split-export-declaration@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA=="], + "@babel/helper-validator-option": ["@babel/helper-validator-option@7.27.1", "", {}, "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="], - "@babel/helper-string-parser": ["@babel/helper-string-parser@7.24.7", "", {}, "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg=="], + "@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.27.1", "", { "dependencies": { "@babel/template": "^7.27.1", "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ=="], - "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.24.7", "", {}, "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w=="], + "@babel/helpers": ["@babel/helpers@7.27.6", "", { "dependencies": { "@babel/template": "^7.27.2", "@babel/types": "^7.27.6" } }, "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug=="], - "@babel/helper-validator-option": ["@babel/helper-validator-option@7.25.9", "", {}, "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="], + "@babel/parser": ["@babel/parser@7.27.5", "", { "dependencies": { "@babel/types": "^7.27.3" }, "bin": "./bin/babel-parser.js" }, "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg=="], - "@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.25.9", "", { "dependencies": { "@babel/template": "^7.25.9", "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g=="], + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA=="], - "@babel/helpers": ["@babel/helpers@7.26.9", "", { "dependencies": { "@babel/template": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA=="], + "@babel/plugin-bugfix-safari-class-field-initializer-scope": ["@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA=="], - "@babel/highlight": ["@babel/highlight@7.24.7", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw=="], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA=="], - "@babel/parser": ["@babel/parser@7.24.7", "", { "bin": "./bin/babel-parser.js" }, "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw=="], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw=="], - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g=="], - - "@babel/plugin-bugfix-safari-class-field-initializer-scope": ["@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw=="], - - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug=="], - - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg=="], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw=="], "@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", "", { "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="], - "@babel/plugin-syntax-async-generators": ["@babel/plugin-syntax-async-generators@7.8.4", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="], - - "@babel/plugin-syntax-class-properties": ["@babel/plugin-syntax-class-properties@7.12.13", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="], - - "@babel/plugin-syntax-class-static-block": ["@babel/plugin-syntax-class-static-block@7.14.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="], - "@babel/plugin-syntax-dynamic-import": ["@babel/plugin-syntax-dynamic-import@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="], - "@babel/plugin-syntax-export-namespace-from": ["@babel/plugin-syntax-export-namespace-from@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="], - - "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg=="], + "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg=="], - "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A=="], + "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww=="], - "@babel/plugin-syntax-import-meta": ["@babel/plugin-syntax-import-meta@7.10.4", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="], + "@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w=="], - "@babel/plugin-syntax-json-strings": ["@babel/plugin-syntax-json-strings@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="], + "@babel/plugin-syntax-typescript": ["@babel/plugin-syntax-typescript@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ=="], - "@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA=="], - - "@babel/plugin-syntax-logical-assignment-operators": ["@babel/plugin-syntax-logical-assignment-operators@7.10.4", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="], - - "@babel/plugin-syntax-nullish-coalescing-operator": ["@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="], + "@babel/plugin-syntax-unicode-sets-regex": ["@babel/plugin-syntax-unicode-sets-regex@7.18.6", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg=="], - "@babel/plugin-syntax-numeric-separator": ["@babel/plugin-syntax-numeric-separator@7.10.4", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="], + "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA=="], - "@babel/plugin-syntax-object-rest-spread": ["@babel/plugin-syntax-object-rest-spread@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="], + "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA=="], - "@babel/plugin-syntax-optional-catch-binding": ["@babel/plugin-syntax-optional-catch-binding@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="], + "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.27.1", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA=="], - "@babel/plugin-syntax-optional-chaining": ["@babel/plugin-syntax-optional-chaining@7.8.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="], + "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg=="], - "@babel/plugin-syntax-private-property-in-object": ["@babel/plugin-syntax-private-property-in-object@7.14.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="], + "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.27.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ=="], - "@babel/plugin-syntax-top-level-await": ["@babel/plugin-syntax-top-level-await@7.14.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="], + "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA=="], - "@babel/plugin-syntax-typescript": ["@babel/plugin-syntax-typescript@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ=="], + "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA=="], - "@babel/plugin-syntax-unicode-sets-regex": ["@babel/plugin-syntax-unicode-sets-regex@7.18.6", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg=="], + "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/traverse": "^7.27.1", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA=="], - "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg=="], + "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/template": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw=="], - "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-remap-async-to-generator": "^7.25.9", "@babel/traverse": "^7.26.8" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg=="], + "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.27.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA=="], - "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-remap-async-to-generator": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ=="], + "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw=="], - "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.26.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ=="], + "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q=="], - "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg=="], + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ["@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ=="], - "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q=="], + "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A=="], - "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.26.0", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ=="], + "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ=="], - "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/traverse": "^7.25.9", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg=="], + "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ=="], - "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/template": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA=="], + "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw=="], - "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ=="], + "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.27.1", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ=="], - "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA=="], + "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q=="], - "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw=="], + "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA=="], - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ["@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog=="], + "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw=="], - "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg=="], + "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ=="], - "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.26.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ=="], + "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA=="], - "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww=="], + "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw=="], - "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.26.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg=="], + "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA=="], - "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA=="], + "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w=="], - "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw=="], + "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng=="], - "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ=="], + "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ=="], - "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q=="], + "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA=="], - "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA=="], + "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw=="], - "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw=="], + "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.27.3", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.27.3", "@babel/plugin-transform-parameters": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q=="], - "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.26.3", "", { "dependencies": { "@babel/helper-module-transforms": "^7.26.0", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ=="], + "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng=="], - "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA=="], + "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q=="], - "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw=="], + "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg=="], - "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA=="], + "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg=="], - "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ=="], + "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA=="], - "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.26.6", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw=="], + "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ=="], - "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q=="], + "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ=="], - "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg=="], + "@babel/plugin-transform-react-constant-elements": ["@babel/plugin-transform-react-constant-elements@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug=="], - "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A=="], + "@babel/plugin-transform-react-display-name": ["@babel/plugin-transform-react-display-name@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-p9+Vl3yuHPmkirRrg021XiP+EETmPMQTLr6Ayjj85RLNEbb3Eya/4VI0vAdzQG9SEAl2Lnt7fy5lZyMzjYoZQQ=="], - "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g=="], + "@babel/plugin-transform-react-jsx": ["@babel/plugin-transform-react-jsx@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-syntax-jsx": "^7.27.1", "@babel/types": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw=="], - "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A=="], + "@babel/plugin-transform-react-jsx-development": ["@babel/plugin-transform-react-jsx-development@7.27.1", "", { "dependencies": { "@babel/plugin-transform-react-jsx": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q=="], - "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g=="], + "@babel/plugin-transform-react-pure-annotations": ["@babel/plugin-transform-react-pure-annotations@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA=="], - "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw=="], + "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.27.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q=="], - "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw=="], + "@babel/plugin-transform-regexp-modifiers": ["@babel/plugin-transform-regexp-modifiers@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA=="], - "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA=="], + "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw=="], - "@babel/plugin-transform-react-constant-elements": ["@babel/plugin-transform-react-constant-elements@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA=="], + "@babel/plugin-transform-runtime": ["@babel/plugin-transform-runtime@7.27.4", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A=="], - "@babel/plugin-transform-react-display-name": ["@babel/plugin-transform-react-display-name@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ=="], + "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ=="], - "@babel/plugin-transform-react-jsx": ["@babel/plugin-transform-react-jsx@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/types": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw=="], + "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q=="], - "@babel/plugin-transform-react-jsx-development": ["@babel/plugin-transform-react-jsx-development@7.25.9", "", { "dependencies": { "@babel/plugin-transform-react-jsx": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw=="], + "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g=="], - "@babel/plugin-transform-react-pure-annotations": ["@babel/plugin-transform-react-pure-annotations@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg=="], + "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg=="], - "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "regenerator-transform": "^0.15.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg=="], + "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw=="], - "@babel/plugin-transform-regexp-modifiers": ["@babel/plugin-transform-regexp-modifiers@7.26.0", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw=="], + "@babel/plugin-transform-typescript": ["@babel/plugin-transform-typescript@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/plugin-syntax-typescript": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg=="], - "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg=="], + "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg=="], - "@babel/plugin-transform-runtime": ["@babel/plugin-transform-runtime@7.26.9", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.26.5", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.6", "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ=="], + "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q=="], - "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng=="], + "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw=="], - "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A=="], + "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw=="], - "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA=="], + "@babel/preset-env": ["@babel/preset-env@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.27.1", "@babel/plugin-syntax-import-attributes": "^7.27.1", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.27.1", "@babel/plugin-transform-async-generator-functions": "^7.27.1", "@babel/plugin-transform-async-to-generator": "^7.27.1", "@babel/plugin-transform-block-scoped-functions": "^7.27.1", "@babel/plugin-transform-block-scoping": "^7.27.1", "@babel/plugin-transform-class-properties": "^7.27.1", "@babel/plugin-transform-class-static-block": "^7.27.1", "@babel/plugin-transform-classes": "^7.27.1", "@babel/plugin-transform-computed-properties": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.27.1", "@babel/plugin-transform-dotall-regex": "^7.27.1", "@babel/plugin-transform-duplicate-keys": "^7.27.1", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-dynamic-import": "^7.27.1", "@babel/plugin-transform-exponentiation-operator": "^7.27.1", "@babel/plugin-transform-export-namespace-from": "^7.27.1", "@babel/plugin-transform-for-of": "^7.27.1", "@babel/plugin-transform-function-name": "^7.27.1", "@babel/plugin-transform-json-strings": "^7.27.1", "@babel/plugin-transform-literals": "^7.27.1", "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", "@babel/plugin-transform-member-expression-literals": "^7.27.1", "@babel/plugin-transform-modules-amd": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-modules-systemjs": "^7.27.1", "@babel/plugin-transform-modules-umd": "^7.27.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-new-target": "^7.27.1", "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", "@babel/plugin-transform-numeric-separator": "^7.27.1", "@babel/plugin-transform-object-rest-spread": "^7.27.2", "@babel/plugin-transform-object-super": "^7.27.1", "@babel/plugin-transform-optional-catch-binding": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1", "@babel/plugin-transform-parameters": "^7.27.1", "@babel/plugin-transform-private-methods": "^7.27.1", "@babel/plugin-transform-private-property-in-object": "^7.27.1", "@babel/plugin-transform-property-literals": "^7.27.1", "@babel/plugin-transform-regenerator": "^7.27.1", "@babel/plugin-transform-regexp-modifiers": "^7.27.1", "@babel/plugin-transform-reserved-words": "^7.27.1", "@babel/plugin-transform-shorthand-properties": "^7.27.1", "@babel/plugin-transform-spread": "^7.27.1", "@babel/plugin-transform-sticky-regex": "^7.27.1", "@babel/plugin-transform-template-literals": "^7.27.1", "@babel/plugin-transform-typeof-symbol": "^7.27.1", "@babel/plugin-transform-unicode-escapes": "^7.27.1", "@babel/plugin-transform-unicode-property-regex": "^7.27.1", "@babel/plugin-transform-unicode-regex": "^7.27.1", "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ=="], - "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q=="], + "@babel/preset-modules": ["@babel/preset-modules@0.1.6-no-external-plugins", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA=="], - "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.26.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw=="], + "@babel/preset-react": ["@babel/preset-react@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-transform-react-display-name": "^7.27.1", "@babel/plugin-transform-react-jsx": "^7.27.1", "@babel/plugin-transform-react-jsx-development": "^7.27.1", "@babel/plugin-transform-react-pure-annotations": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA=="], - "@babel/plugin-transform-typescript": ["@babel/plugin-transform-typescript@7.26.8", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/plugin-syntax-typescript": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw=="], + "@babel/preset-typescript": ["@babel/preset-typescript@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-syntax-jsx": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-typescript": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ=="], - "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q=="], + "@babel/runtime": ["@babel/runtime@7.27.6", "", {}, "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q=="], - "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg=="], + "@babel/runtime-corejs3": ["@babel/runtime-corejs3@7.27.6", "", { "dependencies": { "core-js-pure": "^3.30.2" } }, "sha512-vDVrlmRAY8z9Ul/HxT+8ceAru95LQgkSKiXkSYZvqtbkPSfhZJgpRp45Cldbh1GJ1kxzQkI70AqyrTI58KpaWQ=="], - "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA=="], + "@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="], - "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ=="], + "@babel/traverse": ["@babel/traverse@7.27.4", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/parser": "^7.27.4", "@babel/template": "^7.27.2", "@babel/types": "^7.27.3", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA=="], - "@babel/preset-env": ["@babel/preset-env@7.26.9", "", { "dependencies": { "@babel/compat-data": "^7.26.8", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.26.0", "@babel/plugin-syntax-import-attributes": "^7.26.0", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.25.9", "@babel/plugin-transform-async-generator-functions": "^7.26.8", "@babel/plugin-transform-async-to-generator": "^7.25.9", "@babel/plugin-transform-block-scoped-functions": "^7.26.5", "@babel/plugin-transform-block-scoping": "^7.25.9", "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-classes": "^7.25.9", "@babel/plugin-transform-computed-properties": "^7.25.9", "@babel/plugin-transform-destructuring": "^7.25.9", "@babel/plugin-transform-dotall-regex": "^7.25.9", "@babel/plugin-transform-duplicate-keys": "^7.25.9", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-dynamic-import": "^7.25.9", "@babel/plugin-transform-exponentiation-operator": "^7.26.3", "@babel/plugin-transform-export-namespace-from": "^7.25.9", "@babel/plugin-transform-for-of": "^7.26.9", "@babel/plugin-transform-function-name": "^7.25.9", "@babel/plugin-transform-json-strings": "^7.25.9", "@babel/plugin-transform-literals": "^7.25.9", "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", "@babel/plugin-transform-member-expression-literals": "^7.25.9", "@babel/plugin-transform-modules-amd": "^7.25.9", "@babel/plugin-transform-modules-commonjs": "^7.26.3", "@babel/plugin-transform-modules-systemjs": "^7.25.9", "@babel/plugin-transform-modules-umd": "^7.25.9", "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-new-target": "^7.25.9", "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", "@babel/plugin-transform-numeric-separator": "^7.25.9", "@babel/plugin-transform-object-rest-spread": "^7.25.9", "@babel/plugin-transform-object-super": "^7.25.9", "@babel/plugin-transform-optional-catch-binding": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9", "@babel/plugin-transform-private-methods": "^7.25.9", "@babel/plugin-transform-private-property-in-object": "^7.25.9", "@babel/plugin-transform-property-literals": "^7.25.9", "@babel/plugin-transform-regenerator": "^7.25.9", "@babel/plugin-transform-regexp-modifiers": "^7.26.0", "@babel/plugin-transform-reserved-words": "^7.25.9", "@babel/plugin-transform-shorthand-properties": "^7.25.9", "@babel/plugin-transform-spread": "^7.25.9", "@babel/plugin-transform-sticky-regex": "^7.25.9", "@babel/plugin-transform-template-literals": "^7.26.8", "@babel/plugin-transform-typeof-symbol": "^7.26.7", "@babel/plugin-transform-unicode-escapes": "^7.25.9", "@babel/plugin-transform-unicode-property-regex": "^7.25.9", "@babel/plugin-transform-unicode-regex": "^7.25.9", "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ=="], + "@babel/types": ["@babel/types@7.27.6", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q=="], - "@babel/preset-modules": ["@babel/preset-modules@0.1.6-no-external-plugins", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA=="], + "@biomejs/biome": ["@biomejs/biome@2.0.0-beta.5", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.0.0-beta.5", "@biomejs/cli-darwin-x64": "2.0.0-beta.5", "@biomejs/cli-linux-arm64": "2.0.0-beta.5", "@biomejs/cli-linux-arm64-musl": "2.0.0-beta.5", "@biomejs/cli-linux-x64": "2.0.0-beta.5", "@biomejs/cli-linux-x64-musl": "2.0.0-beta.5", "@biomejs/cli-win32-arm64": "2.0.0-beta.5", "@biomejs/cli-win32-x64": "2.0.0-beta.5" }, "bin": { "biome": "bin/biome" } }, "sha512-1ldO4AepieVvg4aLi1ubZkA7NsefQT2UTNssbJbDiQTGem8kCHx/PZCwLxIR6UzFpGIjh0xsDzivyVvhnmqmuA=="], - "@babel/preset-react": ["@babel/preset-react@7.26.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-transform-react-display-name": "^7.25.9", "@babel/plugin-transform-react-jsx": "^7.25.9", "@babel/plugin-transform-react-jsx-development": "^7.25.9", "@babel/plugin-transform-react-pure-annotations": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw=="], + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.0.0-beta.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-pnJiaoDpwGo+ctGkMu4POcO8jgOgCErBdYbhutr+K9rxxJS+TlHLr0LR91GCEWbGV2O1oyZRFQcW21rYFoak4w=="], - "@babel/preset-typescript": ["@babel/preset-typescript@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/plugin-transform-modules-commonjs": "^7.25.9", "@babel/plugin-transform-typescript": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg=="], + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.0.0-beta.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-WwEZpqcmsNoFpZkUFNQcbZo52WK4hLGQ0vZk3PQ8JlZ55gJsHiyhtv6aem6fVlyVCvZgpsC0sYPLE3VvFVKNAQ=="], - "@babel/regjsgen": ["@babel/regjsgen@0.8.0", "", {}, "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="], + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.0.0-beta.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-lAF1de+Ki0vnq14NwDXouKkAR/iviyMNrUngSHjTGFC4z8XGVEfIw0ZMSm7fAdJZ5fAWodt9HiYmEAVs5EtHQg=="], - "@babel/runtime": ["@babel/runtime@7.26.9", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg=="], + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.0.0-beta.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-4vxNkYx1uEt211W8hLdXddc7icRHQgYENb72g6uTd/tLVPSBvIwqUAxAOkU+9Ai1E/8R4sWy7HIxREgpuFgbNA=="], - "@babel/runtime-corejs3": ["@babel/runtime-corejs3@7.26.9", "", { "dependencies": { "core-js-pure": "^3.30.2", "regenerator-runtime": "^0.14.0" } }, "sha512-5EVjbTegqN7RSJle6hMWYxO4voo4rI+9krITk+DWR+diJgGrjZjrIBnJhjrHYYQsFgI7j1w1QnrvV7YSKBfYGg=="], + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.0.0-beta.5", "", { "os": "linux", "cpu": "x64" }, "sha512-I0Pt1VHeL1mN8G7ZwV2u9AfzBd5ZKfbvHUI4x2wETUZbwcQlAu/nEzEa2LUe5HqSmnctTR36ig7RkkM9qbmIrA=="], - "@babel/template": ["@babel/template@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig=="], + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.0.0-beta.5", "", { "os": "linux", "cpu": "x64" }, "sha512-nUeKGO517GtRCxziVD9les1HiCs2s2/WIVITMN9+9RRuLOko8r+T77E8ZXEmlfLOfOIOeE6z62WITqei3oNccA=="], - "@babel/traverse": ["@babel/traverse@7.23.2", "", { "dependencies": { "@babel/code-frame": "^7.22.13", "@babel/generator": "^7.23.0", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/parser": "^7.23.0", "@babel/types": "^7.23.0", "debug": "^4.1.0", "globals": "^11.1.0" } }, "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw=="], + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.0.0-beta.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-YXW6hgbrgBcWQ1SLO69ypWlluPchgQV5C1lTG4xOcBUWdCsfYuQirM64S6Dov7SFPqsMIoFC6LlQRW+n8qAyiA=="], - "@babel/types": ["@babel/types@7.17.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" } }, "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="], + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.0.0-beta.5", "", { "os": "win32", "cpu": "x64" }, "sha512-N7Yby52BJmvEdst1iMbclE5hxxefboaXKRJLm1tLfBYr4FeuoCe6j8HdiQSwhCRdIUGFFqBLaDXh//LLF6EReA=="], "@braintree/sanitize-url": ["@braintree/sanitize-url@7.1.1", "", {}, "sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw=="], @@ -364,7 +336,7 @@ "@colors/colors": ["@colors/colors@1.5.0", "", {}, "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="], - "@cookbookdev/docsbot": ["@cookbookdev/docsbot@4.25.10", "", { "dependencies": { "@cookbookdev/sonner": "1.5.1", "@floating-ui/devtools": "^0.2.2", "@floating-ui/react-dom": "^2.1.2", "@headlessui/react": "^1.7.18", "@headlessui/tailwindcss": "^0.2.0", "@lingui/detect-locale": "^4.11.4", "@lingui/macro": "^4.11.4", "@lingui/react": "^4.11.4", "@lingui/remote-loader": "^3.11.0", "@monaco-editor/react": "^4.6.0", "@radix-ui/react-avatar": "^1.0.4", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-collapsible": "^1.0.3", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-dropdown-menu": "^2.0.6", "@radix-ui/react-hover-card": "^1.0.7", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-popover": "^1.0.7", "@radix-ui/react-scroll-area": "^1.0.5", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-separator": "^1.0.3", "@radix-ui/react-slider": "^1.1.2", "@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-tooltip": "^1.0.7", "@shikijs/rehype": "^1.12.1", "@statsig/js-client": "^3.1.0", "@statsig/react-bindings": "^3.1.0", "@tailwindcss/line-clamp": "^0.4.4", "@tanstack/react-table": "^8.11.7", "@vercel/edge": "^1.1.1", "bcp-47": "^2.1.0", "can-dom-mutate": "^2.0.9", "clsx": "^2.1.0", "cmdk-react17": "^1.0.0", "color2k": "^2.0.3", "composed-offset-position": "^0.0.6", "fflate": "^0.8.2", "file-saver": "^2.0.5", "framer-motion": "^6.5.1", "idb": "^8.0.0", "iso-639-1": "^3.1.3", "jszip": "^3.10.1", "nanoid": "3.3.7", "posthog-js": "^1.136.8", "prop-types": "^15.8.1", "react-complex-tree": "^2.3.7", "react-remark": "^2.1.0", "react-resizable-panels": "2.0.19", "recharts": "^2.12.4", "rehype-react": "^8.0.0", "remark-gfm": "^4.0.0", "remark-parse": "^11.0.0", "remark-rehype": "^11.1.0", "solc": "^0.8.25", "styled-components": "^6.1.8", "swr": "^2.2.5", "tailwind-merge": "^2.2.1", "tailwindcss-animate": "^1.0.7", "use-sync-external-store": "^1.2.0", "viem": "2.9.16" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0" } }, "sha512-obSkzhxHIneFb2FFuXn84IM277oAAIVaqKdSeEjXa+ISb2yphLPNRCMkXrelQfwROQAfk5TmfBxLsvpk64UKww=="], + "@cookbookdev/docsbot": ["@cookbookdev/docsbot@4.25.11", "", { "dependencies": { "@cookbookdev/sonner": "1.5.1", "@floating-ui/devtools": "^0.2.2", "@floating-ui/react-dom": "^2.1.2", "@headlessui/react": "^1.7.18", "@headlessui/tailwindcss": "^0.2.0", "@lingui/detect-locale": "^4.11.4", "@lingui/macro": "^4.11.4", "@lingui/react": "^4.11.4", "@lingui/remote-loader": "^3.11.0", "@monaco-editor/react": "^4.6.0", "@radix-ui/react-avatar": "^1.0.4", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-collapsible": "^1.0.3", "@radix-ui/react-dialog": "^1.0.5", "@radix-ui/react-dropdown-menu": "^2.0.6", "@radix-ui/react-hover-card": "^1.0.7", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.0.2", "@radix-ui/react-popover": "^1.0.7", "@radix-ui/react-scroll-area": "^1.0.5", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-separator": "^1.0.3", "@radix-ui/react-slider": "^1.1.2", "@radix-ui/react-slot": "^1.0.2", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", "@radix-ui/react-tooltip": "^1.0.7", "@shikijs/rehype": "^1.12.1", "@statsig/js-client": "^3.1.0", "@statsig/react-bindings": "^3.1.0", "@tailwindcss/line-clamp": "^0.4.4", "@tanstack/react-table": "^8.11.7", "@vercel/edge": "^1.1.1", "bcp-47": "^2.1.0", "can-dom-mutate": "^2.0.9", "clsx": "^2.1.0", "cmdk-react17": "^1.0.0", "color2k": "^2.0.3", "composed-offset-position": "^0.0.6", "fflate": "^0.8.2", "file-saver": "^2.0.5", "framer-motion": "^6.5.1", "idb": "^8.0.0", "iso-639-1": "^3.1.3", "jszip": "^3.10.1", "nanoid": "3.3.7", "posthog-js": "^1.136.8", "prop-types": "^15.8.1", "react-complex-tree": "^2.3.7", "react-remark": "^2.1.0", "react-resizable-panels": "2.0.19", "recharts": "^2.12.4", "rehype-react": "^8.0.0", "remark-gfm": "^4.0.0", "remark-parse": "^11.0.0", "remark-rehype": "^11.1.0", "solc": "^0.8.25", "styled-components": "^6.1.8", "swr": "^2.2.5", "tailwind-merge": "^2.2.1", "tailwindcss-animate": "^1.0.7", "use-sync-external-store": "^1.2.0", "viem": "2.9.16" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0" } }, "sha512-dgu+OtyUwcqKTFeqNYnIAFIQAWBmcSNF5ocnoiePhgVO6f/tCTmRAdBojC5fkpF7eemTic0CwhDADqkJo6A/nQ=="], "@cookbookdev/sonner": ["@cookbookdev/sonner@1.5.1", "", { "peerDependencies": { "react": "^18.0.0", "react-dom": "^18.0.0" } }, "sha512-MqPxvFpWKRWuYpKv6ktnT+nGa2mk4jz+OVgunlpIxqfLgMvJ/PSg9OQv0+QlR6iAbThyjiedD6exULSgogPTmA=="], @@ -408,7 +380,7 @@ "@csstools/postcss-initial": ["@csstools/postcss-initial@2.0.1", "", { "peerDependencies": { "postcss": "^8.4" } }, "sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg=="], - "@csstools/postcss-is-pseudo-class": ["@csstools/postcss-is-pseudo-class@5.0.1", "", { "dependencies": { "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ=="], + "@csstools/postcss-is-pseudo-class": ["@csstools/postcss-is-pseudo-class@5.0.3", "", { "dependencies": { "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ=="], "@csstools/postcss-light-dark-function": ["@csstools/postcss-light-dark-function@2.0.9", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4", "@csstools/postcss-progressive-custom-properties": "^4.1.0", "@csstools/utilities": "^2.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-1tCZH5bla0EAkFAI2r0H33CDnIBeLUaJh1p+hvvsylJ4svsv2wOmJjJn+OXwUZLXef37GYbRIVKX+X+g6m+3CQ=="], @@ -450,7 +422,7 @@ "@csstools/postcss-unset-value": ["@csstools/postcss-unset-value@4.0.0", "", { "peerDependencies": { "postcss": "^8.4" } }, "sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA=="], - "@csstools/selector-resolve-nested": ["@csstools/selector-resolve-nested@3.0.0", "", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ=="], + "@csstools/selector-resolve-nested": ["@csstools/selector-resolve-nested@3.1.0", "", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g=="], "@csstools/selector-specificity": ["@csstools/selector-specificity@5.0.0", "", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw=="], @@ -470,7 +442,7 @@ "@docusaurus/cssnano-preset": ["@docusaurus/cssnano-preset@3.8.1", "", { "dependencies": { "cssnano-preset-advanced": "^6.1.2", "postcss": "^8.5.4", "postcss-sort-media-queries": "^5.2.0", "tslib": "^2.6.0" } }, "sha512-G7WyR2N6SpyUotqhGznERBK+x84uyhfMQM2MmDLs88bw4Flom6TY46HzkRkSEzaP9j80MbTN8naiL1fR17WQug=="], - "@docusaurus/eslint-plugin": ["@docusaurus/eslint-plugin@3.8.1", "", { "dependencies": { "@typescript-eslint/utils": "^5.62.0", "tslib": "^2.6.0" }, "peerDependencies": { "eslint": ">=6" } }, "sha512-moiMzNuUpWaIcoEqZP4FzFGk4j8Gg/fYJYc9lpTWZplsy4GswGZw150rPuFcZ1lW65kuKVeGqu/E60JG37AX5Q=="], + "@docusaurus/faster": ["@docusaurus/faster@3.8.1", "", { "dependencies": { "@docusaurus/types": "3.8.1", "@rspack/core": "^1.3.15", "@swc/core": "^1.7.39", "@swc/html": "^1.7.39", "browserslist": "^4.24.2", "lightningcss": "^1.27.0", "swc-loader": "^0.2.6", "tslib": "^2.6.0", "webpack": "^5.95.0" } }, "sha512-XYrj3qnTm+o2d5ih5drCq9s63GJoM8vZ26WbLG5FZhURsNxTSXgHJcx11Qo7nWPUStCQkuqk1HvItzscCUnd4A=="], "@docusaurus/logger": ["@docusaurus/logger@3.8.1", "", { "dependencies": { "chalk": "^4.1.2", "tslib": "^2.6.0" } }, "sha512-2wjeGDhKcExEmjX8k1N/MRDiPKXGF2Pg+df/bDDPnnJWHXnVEZxXj80d6jcxp1Gpnksl0hF8t/ZQw9elqj2+ww=="], @@ -560,26 +532,96 @@ "@emotion/weak-memoize": ["@emotion/weak-memoize@0.4.0", "", {}, "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg=="], - "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.4.0", "", { "dependencies": { "eslint-visitor-keys": "^3.3.0" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="], + "@envelop/core": ["@envelop/core@5.3.0", "", { "dependencies": { "@envelop/instrumentation": "^1.0.0", "@envelop/types": "^5.2.1", "@whatwg-node/promise-helpers": "^1.2.4", "tslib": "^2.5.0" } }, "sha512-xvUkOWXI8JsG2OOnqiI2tOkEc52wbmIqWORr7yGc8B8E53Oh1MMGGGck4mbR80s25LnHVzfNIiIlNkuDgZRuuA=="], + + "@envelop/instrumentation": ["@envelop/instrumentation@1.0.0", "", { "dependencies": { "@whatwg-node/promise-helpers": "^1.2.1", "tslib": "^2.5.0" } }, "sha512-cxgkB66RQB95H3X27jlnxCRNTmPuSTgmBAq6/4n2Dtv4hsk4yz8FadA1ggmd0uZzvKqWD6CR+WFgTjhDqg7eyw=="], + + "@envelop/types": ["@envelop/types@5.2.1", "", { "dependencies": { "@whatwg-node/promise-helpers": "^1.0.0", "tslib": "^2.5.0" } }, "sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg=="], - "@eslint-community/regexpp": ["@eslint-community/regexpp@4.11.0", "", {}, "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A=="], + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], - "@eslint/eslintrc": ["@eslint/eslintrc@2.1.4", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ=="], + "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], - "@eslint/js": ["@eslint/js@8.57.1", "", {}, "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q=="], + "@eslint/compat": ["@eslint/compat@1.3.0", "", { "peerDependencies": { "eslint": "^9.10.0" }, "optionalPeers": ["eslint"] }, "sha512-ZBygRBqpDYiIHsN+d1WyHn3TYgzgpzLEcgJUxTATyiInQbKZz6wZb6+ljwdg8xeeOe4v03z6Uh6lELiw0/mVhQ=="], - "@fastify/busboy": ["@fastify/busboy@2.1.1", "", {}, "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA=="], + "@eslint/config-array": ["@eslint/config-array@0.20.1", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw=="], - "@floating-ui/core": ["@floating-ui/core@1.7.0", "", { "dependencies": { "@floating-ui/utils": "^0.2.9" } }, "sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA=="], + "@eslint/config-helpers": ["@eslint/config-helpers@0.2.3", "", {}, "sha512-u180qk2Um1le4yf0ruXH3PYFeEZeYC3p/4wCTKrr2U1CmGdzGi3KtY0nuPDH48UJxlKCC5RDzbcbh4X0XlqgHg=="], + + "@eslint/core": ["@eslint/core@0.14.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg=="], + + "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], + + "@eslint/js": ["@eslint/js@9.29.0", "", {}, "sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ=="], + + "@eslint/object-schema": ["@eslint/object-schema@2.1.6", "", {}, "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="], + + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.2", "", { "dependencies": { "@eslint/core": "^0.15.0", "levn": "^0.4.1" } }, "sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg=="], + + "@fastify/busboy": ["@fastify/busboy@3.1.1", "", {}, "sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw=="], + + "@floating-ui/core": ["@floating-ui/core@1.7.1", "", { "dependencies": { "@floating-ui/utils": "^0.2.9" } }, "sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw=="], "@floating-ui/devtools": ["@floating-ui/devtools@0.2.3", "", { "peerDependencies": { "@floating-ui/dom": "^1.0.0" } }, "sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q=="], - "@floating-ui/dom": ["@floating-ui/dom@1.7.0", "", { "dependencies": { "@floating-ui/core": "^1.7.0", "@floating-ui/utils": "^0.2.9" } }, "sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg=="], + "@floating-ui/dom": ["@floating-ui/dom@1.7.1", "", { "dependencies": { "@floating-ui/core": "^1.7.1", "@floating-ui/utils": "^0.2.9" } }, "sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ=="], - "@floating-ui/react-dom": ["@floating-ui/react-dom@2.1.2", "", { "dependencies": { "@floating-ui/dom": "^1.0.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A=="], + "@floating-ui/react-dom": ["@floating-ui/react-dom@2.1.3", "", { "dependencies": { "@floating-ui/dom": "^1.0.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "sha512-huMBfiU9UnQ2oBwIhgzyIiSpVgvlDstU8CX0AF+wS+KzmYMs0J2a3GwuFHV1Lz+jlrQGeC1fF+Nv0QoumyV0bA=="], "@floating-ui/utils": ["@floating-ui/utils@0.2.9", "", {}, "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg=="], + "@graphql-hive/signal": ["@graphql-hive/signal@1.0.0", "", {}, "sha512-RiwLMc89lTjvyLEivZ/qxAC5nBHoS2CtsWFSOsN35sxG9zoo5Z+JsFHM8MlvmO9yt+MJNIyC5MLE1rsbOphlag=="], + + "@graphql-markdown/cli": ["@graphql-markdown/cli@0.3.1", "", { "dependencies": { "@graphql-markdown/core": "^1.15.1", "@graphql-markdown/logger": "^1.0.5", "@graphql-markdown/printer-legacy": "^1.12.1", "commander": "^5.1.0", "graphql-config": "^5.1.3" }, "bin": { "gqlmd": "dist/main.js" } }, "sha512-ei60aBQdAWuQqexZSRUY6ZqQq5KsNClt+uTz/lAmq/g/pw53sBagXpNr5eU51gKfiuuoa8vNYbeRK5TGxkVyvQ=="], + + "@graphql-markdown/core": ["@graphql-markdown/core@1.15.1", "", { "dependencies": { "@graphql-markdown/graphql": "^1.1.7", "@graphql-markdown/logger": "^1.0.5", "@graphql-markdown/utils": "^1.8.1" }, "peerDependencies": { "@graphql-markdown/diff": "^1.1.11", "@graphql-markdown/helpers": "^1.0.10", "@graphql-markdown/printer-legacy": "^1.12.1", "graphql-config": "^5.1.0" }, "optionalPeers": ["@graphql-markdown/diff", "@graphql-markdown/helpers", "@graphql-markdown/printer-legacy", "graphql-config"] }, "sha512-UFpDD78fU+1/bIKLq2s5gxi0KKlUc2TFuD6t+0rBPKlZfOdjyVtKfhvA8Z7P+3nT57W9QS3m1CS6ROtCWA10cg=="], + + "@graphql-markdown/docusaurus": ["@graphql-markdown/docusaurus@1.29.1", "", { "dependencies": { "@docusaurus/utils": ">=3.2.0", "@graphql-markdown/cli": "^0.3.1", "@graphql-markdown/logger": "^1.0.5", "@graphql-markdown/utils": "^1.8.1" }, "peerDependencies": { "@docusaurus/logger": "*" } }, "sha512-1S/317YGnq36NroBrt3lrFkULz24zD0AdXbk3GEe+I3NbGKu8zPq3oS4ahFSjGdOz9F6HGBxzWIZ5E1rQIxoow=="], + + "@graphql-markdown/graphql": ["@graphql-markdown/graphql@1.1.7", "", { "dependencies": { "@graphql-markdown/utils": "^1.8.1", "@graphql-tools/load": "^8.1.0" }, "peerDependencies": { "graphql": "^16.0" } }, "sha512-pxnJ184DOtnJmYRHphgpOOhwkV8Pd7MLAzW/Up13wKFj0LczL+sDRAIgMS02ct6QDEbn+Kg8OpPphYrITMmZYg=="], + + "@graphql-markdown/logger": ["@graphql-markdown/logger@1.0.5", "", {}, "sha512-f13a/3dXUDVilapqP17EOMKGIXXaEp16pRTwZlCB8HJGfl3euCC8Sn5nlW+DESVoF2GDH+UNpBScOOQwuI8URw=="], + + "@graphql-markdown/printer-legacy": ["@graphql-markdown/printer-legacy@1.12.1", "", { "dependencies": { "@graphql-markdown/graphql": "^1.1.7", "@graphql-markdown/utils": "^1.8.1" } }, "sha512-dBZld+Y+SP3jrjSWrLwtIcwB7P+UsiUsdBxE9ehVSVHU5n9tntO8EzVIvBokt5sFG2545RpVo9S/oPrzAoiXaA=="], + + "@graphql-markdown/types": ["@graphql-markdown/types@1.7.0", "", {}, "sha512-so9QImN5X0O5VQ1OfLn5wC049CO+nayB7iWIGxso/jgmE2Kt8n9Z6s70VbnEBZL0bdYvfuKQGRchwuI5VWUWuw=="], + + "@graphql-markdown/utils": ["@graphql-markdown/utils@1.8.1", "", { "peerDependencies": { "prettier": "^2.8 || ^3.0" }, "optionalPeers": ["prettier"] }, "sha512-yTTofs5OP71JI3YfSnfReNsKeremAnXPj28+J6tJ9UL8A3CxznF4n8B4CoXa8G4DsdXf7WecZHIEe2jkslCLQw=="], + + "@graphql-tools/batch-execute": ["@graphql-tools/batch-execute@9.0.17", "", { "dependencies": { "@graphql-tools/utils": "^10.8.1", "@whatwg-node/promise-helpers": "^1.3.0", "dataloader": "^2.2.3", "tslib": "^2.8.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-i7BqBkUP2+ex8zrQrCQTEt6nYHQmIey9qg7CMRRa1hXCY2X8ZCVjxsvbsi7gOLwyI/R3NHxSRDxmzZevE2cPLg=="], + + "@graphql-tools/delegate": ["@graphql-tools/delegate@10.2.19", "", { "dependencies": { "@graphql-tools/batch-execute": "^9.0.17", "@graphql-tools/executor": "^1.4.7", "@graphql-tools/schema": "^10.0.11", "@graphql-tools/utils": "^10.8.1", "@repeaterjs/repeater": "^3.0.6", "@whatwg-node/promise-helpers": "^1.3.0", "dataloader": "^2.2.3", "dset": "^3.1.2", "tslib": "^2.8.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-aaCGAALTQmKctHwumbtz0c5XehGjYLSfoDx1IB2vdPt76Q0MKz2AiEDlENgzTVr4JHH7fd9YNrd+IO3D8tFlIg=="], + + "@graphql-tools/executor": ["@graphql-tools/executor@1.4.7", "", { "dependencies": { "@graphql-tools/utils": "^10.8.6", "@graphql-typed-document-node/core": "^3.2.0", "@repeaterjs/repeater": "^3.0.4", "@whatwg-node/disposablestack": "^0.0.6", "@whatwg-node/promise-helpers": "^1.0.0", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-U0nK9jzJRP9/9Izf1+0Gggd6K6RNRsheFo1gC/VWzfnsr0qjcOSS9qTjY0OTC5iTPt4tQ+W5Zpw/uc7mebI6aA=="], + + "@graphql-tools/executor-common": ["@graphql-tools/executor-common@0.0.4", "", { "dependencies": { "@envelop/core": "^5.2.3", "@graphql-tools/utils": "^10.8.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-SEH/OWR+sHbknqZyROCFHcRrbZeUAyjCsgpVWCRjqjqRbiJiXq6TxNIIOmpXgkrXWW/2Ev4Wms6YSGJXjdCs6Q=="], + + "@graphql-tools/executor-graphql-ws": ["@graphql-tools/executor-graphql-ws@2.0.5", "", { "dependencies": { "@graphql-tools/executor-common": "^0.0.4", "@graphql-tools/utils": "^10.8.1", "@whatwg-node/disposablestack": "^0.0.6", "graphql-ws": "^6.0.3", "isomorphic-ws": "^5.0.0", "tslib": "^2.8.1", "ws": "^8.17.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-gI/D9VUzI1Jt1G28GYpvm5ckupgJ5O8mi5Y657UyuUozX34ErfVdZ81g6oVcKFQZ60LhCzk7jJeykK48gaLhDw=="], + + "@graphql-tools/executor-http": ["@graphql-tools/executor-http@1.3.3", "", { "dependencies": { "@graphql-hive/signal": "^1.0.0", "@graphql-tools/executor-common": "^0.0.4", "@graphql-tools/utils": "^10.8.1", "@repeaterjs/repeater": "^3.0.4", "@whatwg-node/disposablestack": "^0.0.6", "@whatwg-node/fetch": "^0.10.4", "@whatwg-node/promise-helpers": "^1.3.0", "meros": "^1.2.1", "tslib": "^2.8.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-LIy+l08/Ivl8f8sMiHW2ebyck59JzyzO/yF9SFS4NH6MJZUezA1xThUXCDIKhHiD56h/gPojbkpcFvM2CbNE7A=="], + + "@graphql-tools/executor-legacy-ws": ["@graphql-tools/executor-legacy-ws@1.1.17", "", { "dependencies": { "@graphql-tools/utils": "^10.8.6", "@types/ws": "^8.0.0", "isomorphic-ws": "^5.0.0", "tslib": "^2.4.0", "ws": "^8.17.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-TvltY6eL4DY1Vt66Z8kt9jVmNcI+WkvVPQZrPbMCM3rv2Jw/sWvSwzUBezRuWX0sIckMifYVh23VPcGBUKX/wg=="], + + "@graphql-tools/graphql-file-loader": ["@graphql-tools/graphql-file-loader@8.0.20", "", { "dependencies": { "@graphql-tools/import": "7.0.19", "@graphql-tools/utils": "^10.8.6", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-inds4My+JJxmg5mxKWYtMIJNRxa7MtX+XIYqqD/nu6G4LzQ5KGaBJg6wEl103KxXli7qNOWeVAUmEjZeYhwNEg=="], + + "@graphql-tools/import": ["@graphql-tools/import@7.0.19", "", { "dependencies": { "@graphql-tools/utils": "^10.8.6", "resolve-from": "5.0.0", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-Xtku8G4bxnrr6I3hVf8RrBFGYIbQ1OYVjl7jgcy092aBkNZvy1T6EDmXmYXn5F+oLd9Bks3K3WaMm8gma/nM/Q=="], + + "@graphql-tools/json-file-loader": ["@graphql-tools/json-file-loader@8.0.18", "", { "dependencies": { "@graphql-tools/utils": "^10.8.6", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-JjjIxxewgk8HeMR3npR3YbOkB7fxmdgmqB9kZLWdkRKBxrRXVzhryyq+mhmI0Evzt6pNoHIc3vqwmSctG2sddg=="], + + "@graphql-tools/load": ["@graphql-tools/load@8.1.0", "", { "dependencies": { "@graphql-tools/schema": "^10.0.23", "@graphql-tools/utils": "^10.8.6", "p-limit": "3.1.0", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-OGfOm09VyXdNGJS/rLqZ6ztCiG2g6AMxhwtET8GZXTbnjptFc17GtKwJ3Jv5w7mjJ8dn0BHydvIuEKEUK4ciYw=="], + + "@graphql-tools/merge": ["@graphql-tools/merge@9.0.24", "", { "dependencies": { "@graphql-tools/utils": "^10.8.6", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-NzWx/Afl/1qHT3Nm1bghGG2l4jub28AdvtG11PoUlmjcIjnFBJMv4vqL0qnxWe8A82peWo4/TkVdjJRLXwgGEw=="], + + "@graphql-tools/schema": ["@graphql-tools/schema@10.0.23", "", { "dependencies": { "@graphql-tools/merge": "^9.0.24", "@graphql-tools/utils": "^10.8.6", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-aEGVpd1PCuGEwqTXCStpEkmheTHNdMayiIKH1xDWqYp9i8yKv9FRDgkGrY4RD8TNxnf7iII+6KOBGaJ3ygH95A=="], + + "@graphql-tools/url-loader": ["@graphql-tools/url-loader@8.0.31", "", { "dependencies": { "@graphql-tools/executor-graphql-ws": "^2.0.1", "@graphql-tools/executor-http": "^1.1.9", "@graphql-tools/executor-legacy-ws": "^1.1.17", "@graphql-tools/utils": "^10.8.6", "@graphql-tools/wrap": "^10.0.16", "@types/ws": "^8.0.0", "@whatwg-node/fetch": "^0.10.0", "@whatwg-node/promise-helpers": "^1.0.0", "isomorphic-ws": "^5.0.0", "sync-fetch": "0.6.0-2", "tslib": "^2.4.0", "ws": "^8.17.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-QGP3py6DAdKERHO5D38Oi+6j+v0O3rkBbnLpyOo87rmIRbwE6sOkL5JeHegHs7EEJ279fBX6lMt8ry0wBMGtyA=="], + + "@graphql-tools/utils": ["@graphql-tools/utils@10.8.6", "", { "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "@whatwg-node/promise-helpers": "^1.0.0", "cross-inspect": "1.0.1", "dset": "^3.1.4", "tslib": "^2.4.0" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-Alc9Vyg0oOsGhRapfL3xvqh1zV8nKoFUdtLhXX7Ki4nClaIJXckrA86j+uxEuG3ic6j4jlM1nvcWXRn/71AVLQ=="], + + "@graphql-tools/wrap": ["@graphql-tools/wrap@10.1.0", "", { "dependencies": { "@graphql-tools/delegate": "^10.2.19", "@graphql-tools/schema": "^10.0.11", "@graphql-tools/utils": "^10.8.1", "@whatwg-node/promise-helpers": "^1.3.0", "tslib": "^2.8.1" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-M7QolM/cJwM2PNAJS1vphT2/PDVSKtmg5m+fxHrFfKpp2RRosJSvYPzUD/PVPqF2rXTtnCwkgh1s5KIsOPCz+w=="], + + "@graphql-typed-document-node/core": ["@graphql-typed-document-node/core@3.2.0", "", { "peerDependencies": { "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ=="], + "@hapi/hoek": ["@hapi/hoek@9.3.0", "", {}, "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="], "@hapi/topo": ["@hapi/topo@5.1.0", "", { "dependencies": { "@hapi/hoek": "^9.0.0" } }, "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="], @@ -590,21 +632,27 @@ "@heroicons/react": ["@heroicons/react@2.2.0", "", { "peerDependencies": { "react": ">= 16 || ^19.0.0-rc" } }, "sha512-LMcepvRaS9LYHJGsF0zzmgKCUim/X3N/DQKc4jepAXJ7l8QxJ1PmxJzqplF2Z3FE4PqBAIGyJAQ/w4B5dsqbtQ=="], - "@humanwhocodes/config-array": ["@humanwhocodes/config-array@0.13.0", "", { "dependencies": { "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" } }, "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw=="], + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], + + "@humanfs/node": ["@humanfs/node@0.16.6", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" } }, "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="], "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], - "@humanwhocodes/object-schema": ["@humanwhocodes/object-schema@2.0.3", "", {}, "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA=="], + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], "@iconify/types": ["@iconify/types@2.0.0", "", {}, "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg=="], "@iconify/utils": ["@iconify/utils@2.3.0", "", { "dependencies": { "@antfu/install-pkg": "^1.0.0", "@antfu/utils": "^8.1.0", "@iconify/types": "^2.0.0", "debug": "^4.4.0", "globals": "^15.14.0", "kolorist": "^1.8.0", "local-pkg": "^1.0.0", "mlly": "^1.7.4" } }, "sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA=="], + "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="], + + "@isaacs/fs-minipass": ["@isaacs/fs-minipass@4.0.1", "", { "dependencies": { "minipass": "^7.0.4" } }, "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="], + "@jest/schemas": ["@jest/schemas@29.6.3", "", { "dependencies": { "@sinclair/typebox": "^0.27.8" } }, "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="], "@jest/types": ["@jest/types@29.6.3", "", { "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }, "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw=="], - "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.5", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="], + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="], "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], @@ -612,7 +660,7 @@ "@jridgewell/source-map": ["@jridgewell/source-map@0.3.6", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ=="], - "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.4.15", "", {}, "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="], + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="], "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.25", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="], @@ -634,16 +682,28 @@ "@mapbox/hast-util-table-cell-style": ["@mapbox/hast-util-table-cell-style@0.2.1", "", { "dependencies": { "unist-util-visit": "^1.4.1" } }, "sha512-LyQz4XJIdCdY/+temIhD/Ed0x/p4GAOUycpFSEK2Ads1CPKZy6b7V/2ROEtQiLLQ8soIs0xe/QAoR6kwpyW/yw=="], - "@mapbox/node-pre-gyp": ["@mapbox/node-pre-gyp@1.0.11", "", { "dependencies": { "detect-libc": "^2.0.0", "https-proxy-agent": "^5.0.0", "make-dir": "^3.1.0", "node-fetch": "^2.6.7", "nopt": "^5.0.0", "npmlog": "^5.0.1", "rimraf": "^3.0.2", "semver": "^7.3.5", "tar": "^6.1.11" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" } }, "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ=="], + "@mapbox/node-pre-gyp": ["@mapbox/node-pre-gyp@2.0.0", "", { "dependencies": { "consola": "^3.2.3", "detect-libc": "^2.0.0", "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", "nopt": "^8.0.0", "semver": "^7.5.3", "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" } }, "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="], - "@mdx-js/mdx": ["@mdx-js/mdx@3.0.1", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdx": "^2.0.0", "collapse-white-space": "^2.0.0", "devlop": "^1.0.0", "estree-util-build-jsx": "^3.0.0", "estree-util-is-identifier-name": "^3.0.0", "estree-util-to-js": "^2.0.0", "estree-walker": "^3.0.0", "hast-util-to-estree": "^3.0.0", "hast-util-to-jsx-runtime": "^2.0.0", "markdown-extensions": "^2.0.0", "periscopic": "^3.0.0", "remark-mdx": "^3.0.0", "remark-parse": "^11.0.0", "remark-rehype": "^11.0.0", "source-map": "^0.7.0", "unified": "^11.0.0", "unist-util-position-from-estree": "^2.0.0", "unist-util-stringify-position": "^4.0.0", "unist-util-visit": "^5.0.0", "vfile": "^6.0.0" } }, "sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA=="], + "@mdx-js/mdx": ["@mdx-js/mdx@3.1.0", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdx": "^2.0.0", "collapse-white-space": "^2.0.0", "devlop": "^1.0.0", "estree-util-is-identifier-name": "^3.0.0", "estree-util-scope": "^1.0.0", "estree-walker": "^3.0.0", "hast-util-to-jsx-runtime": "^2.0.0", "markdown-extensions": "^2.0.0", "recma-build-jsx": "^1.0.0", "recma-jsx": "^1.0.0", "recma-stringify": "^1.0.0", "rehype-recma": "^1.0.0", "remark-mdx": "^3.0.0", "remark-parse": "^11.0.0", "remark-rehype": "^11.0.0", "source-map": "^0.7.0", "unified": "^11.0.0", "unist-util-position-from-estree": "^2.0.0", "unist-util-stringify-position": "^4.0.0", "unist-util-visit": "^5.0.0", "vfile": "^6.0.0" } }, "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw=="], - "@mdx-js/react": ["@mdx-js/react@3.0.1", "", { "dependencies": { "@types/mdx": "^2.0.0" }, "peerDependencies": { "@types/react": ">=16", "react": ">=16" } }, "sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A=="], + "@mdx-js/react": ["@mdx-js/react@3.1.0", "", { "dependencies": { "@types/mdx": "^2.0.0" }, "peerDependencies": { "@types/react": ">=16", "react": ">=16" } }, "sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ=="], - "@mermaid-js/parser": ["@mermaid-js/parser@0.4.0", "", { "dependencies": { "langium": "3.3.1" } }, "sha512-wla8XOWvQAwuqy+gxiZqY+c7FokraOTHRWMsbB4AgRx9Sy7zKslNyejy7E+a77qHfey5GXw/ik3IXv/NHMJgaA=="], + "@mermaid-js/parser": ["@mermaid-js/parser@0.5.0", "", { "dependencies": { "langium": "3.3.1" } }, "sha512-AiaN7+VjXC+3BYE+GwNezkpjIcCI2qIMB/K4S2/vMWe0q/XJCBbx5+K7iteuz7VyltX9iAK4FmVTvGc9kjOV4w=="], "@messageformat/parser": ["@messageformat/parser@5.1.1", "", { "dependencies": { "moo": "^0.5.1" } }, "sha512-3p0YRGCcTUCYvBKLIxtDDyrJ0YijGIwrTRu1DT8gIviIDZru8H23+FkY6MJBzM1n9n20CiM4VeDYuBsrrwnLjg=="], + "@module-federation/error-codes": ["@module-federation/error-codes@0.14.3", "", {}, "sha512-sBJ3XKU9g5Up31jFeXPFsD8AgORV7TLO/cCSMuRewSfgYbG/3vSKLJmfHrO6+PvjZSb9VyV2UaF02ojktW65vw=="], + + "@module-federation/runtime": ["@module-federation/runtime@0.14.3", "", { "dependencies": { "@module-federation/error-codes": "0.14.3", "@module-federation/runtime-core": "0.14.3", "@module-federation/sdk": "0.14.3" } }, "sha512-7ZHpa3teUDVhraYdxQGkfGHzPbjna4LtwbpudgzAxSLLFxLDNanaxCuSeIgSM9c+8sVUNC9kvzUgJEZB0krPJw=="], + + "@module-federation/runtime-core": ["@module-federation/runtime-core@0.14.3", "", { "dependencies": { "@module-federation/error-codes": "0.14.3", "@module-federation/sdk": "0.14.3" } }, "sha512-xMFQXflLVW/AJTWb4soAFP+LB4XuhE7ryiLIX8oTyUoBBgV6U2OPghnFljPjeXbud72O08NYlQ1qsHw1kN/V8Q=="], + + "@module-federation/runtime-tools": ["@module-federation/runtime-tools@0.14.3", "", { "dependencies": { "@module-federation/runtime": "0.14.3", "@module-federation/webpack-bundler-runtime": "0.14.3" } }, "sha512-QBETX7iMYXdSa3JtqFlYU+YkpymxETZqyIIRiqg0gW+XGpH3jgU68yjrme2NBJp7URQi/CFZG8KWtfClk0Pjgw=="], + + "@module-federation/sdk": ["@module-federation/sdk@0.14.3", "", {}, "sha512-THJZMfbXpqjQOLblCQ8jjcBFFXsGRJwUWE9l/Q4SmuCSKMgAwie7yLT0qSGrHmyBYrsUjAuy+xNB4nfKP0pnGw=="], + + "@module-federation/webpack-bundler-runtime": ["@module-federation/webpack-bundler-runtime@0.14.3", "", { "dependencies": { "@module-federation/runtime": "0.14.3", "@module-federation/sdk": "0.14.3" } }, "sha512-hIyJFu34P7bY2NeMIUHAS/mYUHEY71VTAsN0A0AqEJFSVPszheopu9VdXq0VDLrP9KQfuXT8SDxeYeJXyj0mgA=="], + "@monaco-editor/loader": ["@monaco-editor/loader@1.5.0", "", { "dependencies": { "state-local": "^1.0.6" } }, "sha512-hKoGSM+7aAc7eRTRjpqAZucPmoNOC4UUbknb/VNoTkEIkCPhqV8LfbsgM1webRM7S/z21eHEx9Fkwx8Z/C/+Xw=="], "@monaco-editor/react": ["@monaco-editor/react@4.7.0", "", { "dependencies": { "@monaco-editor/loader": "^1.5.0" }, "peerDependencies": { "monaco-editor": ">= 0.25.0 < 1", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA=="], @@ -660,6 +720,8 @@ "@motionone/utils": ["@motionone/utils@10.18.0", "", { "dependencies": { "@motionone/types": "^10.17.1", "hey-listen": "^1.0.8", "tslib": "^2.3.1" } }, "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw=="], + "@noble/ciphers": ["@noble/ciphers@1.3.0", "", {}, "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw=="], + "@noble/curves": ["@noble/curves@1.2.0", "", { "dependencies": { "@noble/hashes": "1.3.2" } }, "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw=="], "@noble/hashes": ["@noble/hashes@1.3.2", "", {}, "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ=="], @@ -670,12 +732,18 @@ "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], - "@npmcli/config": ["@npmcli/config@8.3.3", "", { "dependencies": { "@npmcli/map-workspaces": "^3.0.2", "ci-info": "^4.0.0", "ini": "^4.1.2", "nopt": "^7.2.1", "proc-log": "^4.2.0", "read-package-json-fast": "^3.0.2", "semver": "^7.3.5", "walk-up-path": "^3.0.1" } }, "sha512-sIMKHiiYr91ALiHjhPq64F5P/SCaiSyDfpNmgYHtlIJtLY445+3+r3VoREzpdDrOwIqwQ6iEHinbTfaocL0UgA=="], + "@npmcli/config": ["@npmcli/config@8.3.4", "", { "dependencies": { "@npmcli/map-workspaces": "^3.0.2", "@npmcli/package-json": "^5.1.1", "ci-info": "^4.0.0", "ini": "^4.1.2", "nopt": "^7.2.1", "proc-log": "^4.2.0", "semver": "^7.3.5", "walk-up-path": "^3.0.1" } }, "sha512-01rtHedemDNhUXdicU7s+QYz/3JyV5Naj84cvdXGH4mgCdL+agmSYaLF4LUG4vMCLzhBO8YtS0gPpH1FGvbgAw=="], + + "@npmcli/git": ["@npmcli/git@5.0.8", "", { "dependencies": { "@npmcli/promise-spawn": "^7.0.0", "ini": "^4.1.3", "lru-cache": "^10.0.1", "npm-pick-manifest": "^9.0.0", "proc-log": "^4.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", "which": "^4.0.0" } }, "sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ=="], "@npmcli/map-workspaces": ["@npmcli/map-workspaces@3.0.6", "", { "dependencies": { "@npmcli/name-from-folder": "^2.0.0", "glob": "^10.2.2", "minimatch": "^9.0.0", "read-package-json-fast": "^3.0.0" } }, "sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA=="], "@npmcli/name-from-folder": ["@npmcli/name-from-folder@2.0.0", "", {}, "sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg=="], + "@npmcli/package-json": ["@npmcli/package-json@5.2.1", "", { "dependencies": { "@npmcli/git": "^5.0.0", "glob": "^10.2.2", "hosted-git-info": "^7.0.0", "json-parse-even-better-errors": "^3.0.0", "normalize-package-data": "^6.0.0", "proc-log": "^4.0.0", "semver": "^7.5.3" } }, "sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ=="], + + "@npmcli/promise-spawn": ["@npmcli/promise-spawn@7.0.2", "", { "dependencies": { "which": "^4.0.0" } }, "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ=="], + "@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="], "@pkgr/core": ["@pkgr/core@0.2.7", "", {}, "sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg=="], @@ -684,77 +752,77 @@ "@pnpm/network.ca-file": ["@pnpm/network.ca-file@1.0.2", "", { "dependencies": { "graceful-fs": "4.2.10" } }, "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="], - "@pnpm/npm-conf": ["@pnpm/npm-conf@2.2.2", "", { "dependencies": { "@pnpm/config.env-replace": "^1.1.0", "@pnpm/network.ca-file": "^1.0.1", "config-chain": "^1.1.11" } }, "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA=="], + "@pnpm/npm-conf": ["@pnpm/npm-conf@2.3.1", "", { "dependencies": { "@pnpm/config.env-replace": "^1.1.0", "@pnpm/network.ca-file": "^1.0.1", "config-chain": "^1.1.11" } }, "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw=="], - "@polka/url": ["@polka/url@1.0.0-next.25", "", {}, "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ=="], + "@polka/url": ["@polka/url@1.0.0-next.29", "", {}, "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww=="], "@radix-ui/number": ["@radix-ui/number@1.1.1", "", {}, "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g=="], "@radix-ui/primitive": ["@radix-ui/primitive@1.1.2", "", {}, "sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA=="], - "@radix-ui/react-arrow": ["@radix-ui/react-arrow@1.1.6", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-2JMfHJf/eVnwq+2dewT3C0acmCWD3XiVA1Da+jTDqo342UlU13WvXtqHhG+yJw5JeQmu4ue2eMy6gcEArLBlcw=="], + "@radix-ui/react-arrow": ["@radix-ui/react-arrow@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w=="], - "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.9", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-10tQokfvZdFvnvDkcOJPjm2pWiP8A0R4T83MoD7tb15bC/k2GU7B1YBuzJi8lNQ8V1QqhP8ocNqp27ByZaNagQ=="], + "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.10", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog=="], - "@radix-ui/react-checkbox": ["@radix-ui/react-checkbox@1.3.1", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-xTaLKAO+XXMPK/BpVTSaAAhlefmvMSACjIhK9mGsImvX2ljcTDm8VGR1CuS1uYcNdR5J+oiOhoJZc5un6bh3VQ=="], + "@radix-ui/react-checkbox": ["@radix-ui/react-checkbox@1.3.2", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-yd+dI56KZqawxKZrJ31eENUwqc1QSqg4OZ15rybGjF2ZNwMO+wCyHzAVLRp9qoYJf7kYy0YpZ2b0JCzJ42HZpA=="], - "@radix-ui/react-collapsible": ["@radix-ui/react-collapsible@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-O2mcG3gZNkJ/Ena34HurA3llPOEA/M4dJtIRMa6y/cknRDC8XY5UZBInKTsUwW5cUue9A4k0wi1XU5fKBzKe1w=="], + "@radix-ui/react-collapsible": ["@radix-ui/react-collapsible@1.1.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-2qrRsVGSCYasSz1RFOorXwl0H7g7J1frQtgpQgYrt+MOidtPAINHn9CPovQXb83r8ahapdx3Tu0fa/pdFFSdPg=="], - "@radix-ui/react-collection": ["@radix-ui/react-collection@1.1.6", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-slot": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-PbhRFK4lIEw9ADonj48tiYWzkllz81TM7KVYyyMMw2cwHO7D5h4XKEblL8NlaRisTK3QTe6tBEhDccFUryxHBQ=="], + "@radix-ui/react-collection": ["@radix-ui/react-collection@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw=="], "@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg=="], "@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="], - "@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.1.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.6", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-slot": "1.2.2", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ARFmqUyhIVS3+riWzwGTe7JLjqwqgnODBUZdqpWar/z1WFs9z76fuOs/2BOWCR+YboRn4/WN9aoaGVwqNRr8VA=="], + "@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw=="], "@radix-ui/react-direction": ["@radix-ui/react-direction@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw=="], - "@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.1.9", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-escape-keydown": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-way197PiTvNp+WBP7svMJasHl+vibhWGQDb6Mgf5mhEWJkgb85z7Lfl9TUdkqpWsf8GRNmoopx9ZxCyDzmgRMQ=="], + "@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-escape-keydown": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ=="], - "@radix-ui/react-dropdown-menu": ["@radix-ui/react-dropdown-menu@2.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.14", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-lzuyNjoWOoaMFE/VC5FnAAYM16JmQA8ZmucOXtlhm2kKR5TSU95YLAueQ4JYuRmUJmBvSqXaVFGIfuukybwZJQ=="], + "@radix-ui/react-dropdown-menu": ["@radix-ui/react-dropdown-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ=="], "@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA=="], - "@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.1.6", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-r9zpYNUQY+2jWHWZGyddQLL9YHkM/XvSFHVcWs7bdVuxMAnCwTAuy6Pf47Z4nw7dYcUou1vg/VgjjrrH03VeBw=="], + "@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw=="], - "@radix-ui/react-hover-card": ["@radix-ui/react-hover-card@1.1.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-popper": "1.2.6", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Wtjvx0d/6Bgd/jAYS1mW6IPSUQ25y0hkUSOS1z5/4+U8+DJPwKroqJlM/AlVFl3LywGoruiPmcvB9Aks9mSOQw=="], + "@radix-ui/react-hover-card": ["@radix-ui/react-hover-card@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-CPYZ24Mhirm+g6D8jArmLzjYu4Eyg3TTUHswR26QgzXBHBe64BO/RHOJKzmF/Dxb4y4f9PKyJdwm/O/AhNkb+Q=="], "@radix-ui/react-icons": ["@radix-ui/react-icons@1.3.2", "", { "peerDependencies": { "react": "^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc" } }, "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g=="], "@radix-ui/react-id": ["@radix-ui/react-id@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg=="], - "@radix-ui/react-label": ["@radix-ui/react-label@2.1.6", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-S/hv1mTlgcPX2gCTJrWuTjSXf7ER3Zf7zWGtOprxhIIY93Qin3n5VgNA0Ez9AgrK/lEtlYgzLd4f5x6AVar4Yw=="], + "@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="], - "@radix-ui/react-menu": ["@radix-ui/react-menu@2.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.6", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.6", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-roving-focus": "1.1.9", "@radix-ui/react-slot": "1.2.2", "@radix-ui/react-use-callback-ref": "1.1.1", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0zSiBAIFq9GSKoSH5PdEaQeRB3RnEGxC+H2P0egtnKoKKLNBH8VBHyVO6/jskhjAezhOIplyRUj7U2lds9A+Yg=="], + "@radix-ui/react-menu": ["@radix-ui/react-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew=="], - "@radix-ui/react-popover": ["@radix-ui/react-popover@1.1.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.6", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.6", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-slot": "1.2.2", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-84uqQV3omKDR076izYgcha6gdpN8m3z6w/AeJ83MSBJYVG/AbOHdLjAgsPZkeC/kt+k64moXFCnio8BbqXszlw=="], + "@radix-ui/react-popover": ["@radix-ui/react-popover@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw=="], - "@radix-ui/react-popper": ["@radix-ui/react-popper@1.2.6", "", { "dependencies": { "@floating-ui/react-dom": "^2.0.0", "@radix-ui/react-arrow": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-rect": "1.1.1", "@radix-ui/react-use-size": "1.1.1", "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-7iqXaOWIjDBfIG7aq8CUEeCSsQMLFdn7VEE8TaFz704DtEzpPHR7w/uuzRflvKgltqSAImgcmxQ7fFX3X7wasg=="], + "@radix-ui/react-popper": ["@radix-ui/react-popper@1.2.7", "", { "dependencies": { "@floating-ui/react-dom": "^2.0.0", "@radix-ui/react-arrow": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-rect": "1.1.1", "@radix-ui/react-use-size": "1.1.1", "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ=="], - "@radix-ui/react-portal": ["@radix-ui/react-portal@1.1.8", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-hQsTUIn7p7fxCPvao/q6wpbxmCwgLrlz+nOrJgC+RwfZqWY/WN+UMqkXzrtKbPrF82P43eCTl3ekeKuyAQbFeg=="], + "@radix-ui/react-portal": ["@radix-ui/react-portal@1.1.9", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ=="], "@radix-ui/react-presence": ["@radix-ui/react-presence@1.1.4", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA=="], - "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.2", "", { "dependencies": { "@radix-ui/react-slot": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-uHa+l/lKfxuDD2zjN/0peM/RhhSmRjr5YWdk/37EnSv1nJ88uvG85DPexSm8HdFQROd2VdERJ6ynXbkCFi+APw=="], + "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="], - "@radix-ui/react-roving-focus": ["@radix-ui/react-roving-focus@1.1.9", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ZzrIFnMYHHCNqSNCsuN6l7wlewBEq0O0BCSBkabJMFXVO51LRUTq71gLP1UxFvmrXElqmPjA5VX7IqC9VpazAQ=="], + "@radix-ui/react-roving-focus": ["@radix-ui/react-roving-focus@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q=="], - "@radix-ui/react-scroll-area": ["@radix-ui/react-scroll-area@1.2.8", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-K5h1RkYA6M0Sn61BV5LQs686zqBsSC0sGzL4/Gw4mNnjzrQcGSc6YXfC6CRFNaGydSdv5+M8cb0eNsOGo0OXtQ=="], + "@radix-ui/react-scroll-area": ["@radix-ui/react-scroll-area@1.2.9", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YSjEfBXnhUELsO2VzjdtYYD4CfQjvao+lhhrX5XsHD7/cyUNzljF1FHEbgTPN7LH2MClfwRMIsYlqTYpKTTe2A=="], - "@radix-ui/react-select": ["@radix-ui/react-select@2.2.4", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.6", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.6", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-slot": "1.2.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-/OOm58Gil4Ev5zT8LyVzqfBcij4dTHYdeyuF5lMHZ2bIp0Lk9oETocYiJ5QC0dHekEQnK6L/FNJCceeb4AkZ6Q=="], + "@radix-ui/react-select": ["@radix-ui/react-select@2.2.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-HnMTdXEVuuyzx63ME0ut4+sEMYW6oouHWNGUZc7ddvUWIcfCva/AMoqEW/3wnEllriMWBa0RHspCYnfCWJQYmA=="], - "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.6", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Izof3lPpbCfTM7WDta+LRkz31jem890VjEvpVRoWQNKpDUMMVffuyq854XPGP1KYGWWmjmYvHvPFeocWhFCy1w=="], + "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="], - "@radix-ui/react-slider": ["@radix-ui/react-slider@1.3.4", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Cp6hEmQtRJFci285vkdIJ+HCDLTRDk+25VhFwa1fcubywjMUE3PynBgtN5RLudOgSCYMlT4jizCXdmV+8J7Y2w=="], + "@radix-ui/react-slider": ["@radix-ui/react-slider@1.3.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw=="], - "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.2", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-y7TBO4xN4Y94FvcWIOIh18fM4R1A8S4q1jhoz4PNzOoHsFcN8pogcFmZrTYAm4F9VRUrWP/Mw7xSKybIeRI+CQ=="], + "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="], - "@radix-ui/react-tabs": ["@radix-ui/react-tabs@1.1.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-roving-focus": "1.1.9", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-4FiKSVoXqPP/KfzlB7lwwqoFV6EPwkrrqGp9cUYXjwDYHhvpnqq79P+EPHKcdoTE7Rl8w/+6s9rTlsfXHES9GA=="], + "@radix-ui/react-tabs": ["@radix-ui/react-tabs@1.1.12", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw=="], - "@radix-ui/react-toast": ["@radix-ui/react-toast@1.2.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.6", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-e/e43mQAwgYs8BY4y9l99xTK6ig1bK2uXsFLOMn9IZ16lAgulSTsotcPHVT2ZlSb/ye6Sllq7IgyDB8dGhpeXQ=="], + "@radix-ui/react-toast": ["@radix-ui/react-toast@1.2.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-nAP5FBxBJGQ/YfUB+r+O6USFVkWq3gAInkxyEnmvEV5jtSbfDhfa4hwX8CraCnbjMLsE7XSf/K75l9xXY7joWg=="], - "@radix-ui/react-tooltip": ["@radix-ui/react-tooltip@1.2.6", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.9", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.6", "@radix-ui/react-portal": "1.1.8", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.2", "@radix-ui/react-slot": "1.2.2", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-visually-hidden": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-zYb+9dc9tkoN2JjBDIIPLQtk3gGyz8FMKoqYTb8EMVQ5a5hBcdHPECrsZVI4NpPAUOixhkoqg7Hj5ry5USowfA=="], + "@radix-ui/react-tooltip": ["@radix-ui/react-tooltip@1.2.7", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw=="], "@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg=="], @@ -774,11 +842,41 @@ "@radix-ui/react-use-size": ["@radix-ui/react-use-size@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ=="], - "@radix-ui/react-visually-hidden": ["@radix-ui/react-visually-hidden@1.2.2", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ORCmRUbNiZIv6uV5mhFrhsIKw4UX/N3syZtyqvry61tbGm4JlgQuSn0hk5TwCARsCjkcnuRkSdCE3xfb+ADHew=="], + "@radix-ui/react-visually-hidden": ["@radix-ui/react-visually-hidden@1.2.3", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug=="], "@radix-ui/rect": ["@radix-ui/rect@1.1.1", "", {}, "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw=="], - "@rollup/pluginutils": ["@rollup/pluginutils@4.2.1", "", { "dependencies": { "estree-walker": "^2.0.1", "picomatch": "^2.2.2" } }, "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="], + "@repeaterjs/repeater": ["@repeaterjs/repeater@3.0.6", "", {}, "sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA=="], + + "@rollup/pluginutils": ["@rollup/pluginutils@5.2.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw=="], + + "@rspack/binding": ["@rspack/binding@1.3.15", "", { "optionalDependencies": { "@rspack/binding-darwin-arm64": "1.3.15", "@rspack/binding-darwin-x64": "1.3.15", "@rspack/binding-linux-arm64-gnu": "1.3.15", "@rspack/binding-linux-arm64-musl": "1.3.15", "@rspack/binding-linux-x64-gnu": "1.3.15", "@rspack/binding-linux-x64-musl": "1.3.15", "@rspack/binding-win32-arm64-msvc": "1.3.15", "@rspack/binding-win32-ia32-msvc": "1.3.15", "@rspack/binding-win32-x64-msvc": "1.3.15" } }, "sha512-utNPuJglLO5lW9XbwIqjB7+2ilMo6JkuVLTVdnNVKU94FW7asn9F/qV+d+MgjUVqU1QPCGm0NuGO9xhbgeJ7pg=="], + + "@rspack/binding-darwin-arm64": ["@rspack/binding-darwin-arm64@1.3.15", "", { "os": "darwin", "cpu": "arm64" }, "sha512-f+DnVRENRdVe+ufpZeqTtWAUDSTnP48jVo7x9KWsXf8XyJHUi+eHKEPrFoy1HvL1/k5yJ3HVnFBh1Hb9cNIwSg=="], + + "@rspack/binding-darwin-x64": ["@rspack/binding-darwin-x64@1.3.15", "", { "os": "darwin", "cpu": "x64" }, "sha512-TfUvEIBqYUT2OK01BYXb2MNcZeZIhAnJy/5aj0qV0uy4KlvwW63HYcKWa1sFd4Ac7bnGShDkanvP3YEuHOFOyg=="], + + "@rspack/binding-linux-arm64-gnu": ["@rspack/binding-linux-arm64-gnu@1.3.15", "", { "os": "linux", "cpu": "arm64" }, "sha512-D/YjYk9snKvYm1Elotq8/GsEipB4ZJWVv/V8cZ+ohhFNOPzygENi6JfyI06TryBTQiN0/JDZqt/S9RaWBWnMqw=="], + + "@rspack/binding-linux-arm64-musl": ["@rspack/binding-linux-arm64-musl@1.3.15", "", { "os": "linux", "cpu": "arm64" }, "sha512-lJbBsPMOiR0hYPCSM42yp7QiZjfo0ALtX7ws2wURpsQp3BMfRVAmXU3Ixpo2XCRtG1zj8crHaCmAWOJTS0smsA=="], + + "@rspack/binding-linux-x64-gnu": ["@rspack/binding-linux-x64-gnu@1.3.15", "", { "os": "linux", "cpu": "x64" }, "sha512-qGB8ucHklrzNg6lsAS36VrBsCbOw0acgpQNqTE5cuHWrp1Pu3GFTRiFEogenxEmzoRbohMZt0Ev5grivrcgKBQ=="], + + "@rspack/binding-linux-x64-musl": ["@rspack/binding-linux-x64-musl@1.3.15", "", { "os": "linux", "cpu": "x64" }, "sha512-qRn6e40fLQP+N2rQD8GAj/h4DakeTIho32VxTIaHRVuzw68ZD7VmKkwn55ssN370ejmey35ZdoNFNE12RBrMZA=="], + + "@rspack/binding-win32-arm64-msvc": ["@rspack/binding-win32-arm64-msvc@1.3.15", "", { "os": "win32", "cpu": "arm64" }, "sha512-7uJ7dWhO1nWXJiCss6Rslz8hoAxAhFpwpbWja3eHgRb7O4NPHg6MWw63AQSI2aFVakreenfu9yXQqYfpVWJ2dA=="], + + "@rspack/binding-win32-ia32-msvc": ["@rspack/binding-win32-ia32-msvc@1.3.15", "", { "os": "win32", "cpu": "ia32" }, "sha512-UsaWTYCjDiSCB0A0qETgZk4QvhwfG8gCrO4SJvA+QSEWOmgSai1YV70prFtLLIiyT9mDt1eU3tPWl1UWPRU/EQ=="], + + "@rspack/binding-win32-x64-msvc": ["@rspack/binding-win32-x64-msvc@1.3.15", "", { "os": "win32", "cpu": "x64" }, "sha512-ZnDIc9Es8EF94MirPDN+hOMt7tkb8nMEbRJFKLMmNd0ElNPgsql+1cY5SqyGRH1hsKB87KfSUQlhFiKZvzbfIg=="], + + "@rspack/core": ["@rspack/core@1.3.15", "", { "dependencies": { "@module-federation/runtime-tools": "0.14.3", "@rspack/binding": "1.3.15", "@rspack/lite-tapable": "1.0.1" }, "peerDependencies": { "@swc/helpers": ">=0.5.1" }, "optionalPeers": ["@swc/helpers"] }, "sha512-QuElIC8jXSKWAp0LSx18pmbhA7NiA5HGoVYesmai90UVxz98tud0KpMxTVCg+0lrLrnKZfCWN9kwjCxM5pGnrA=="], + + "@rspack/lite-tapable": ["@rspack/lite-tapable@1.0.1", "", {}, "sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w=="], + + "@sablier/devkit": ["@sablier/devkit@github:sablier-labs/devkit#f4773d0", {}, "sablier-labs-devkit-f4773d0"], + + "@sablier/indexers": ["@sablier/indexers@1.0.0-beta.2", "", { "dependencies": { "lodash": "^4.17", "sablier": "1.0.0-beta.8" } }, "sha512-JHjLb4oeFb74DfYH6C+FOQcVKqHowPhFSdwHQrUdHGLEh5eCJ7/cmZjFHmK4gECOUuhHNVqwBvZxuq3dlJ9jkw=="], "@scure/base": ["@scure/base@1.1.9", "", {}, "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg=="], @@ -814,11 +912,11 @@ "@slorber/remark-comment": ["@slorber/remark-comment@1.0.0", "", { "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.1.0", "micromark-util-symbol": "^1.0.1" } }, "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA=="], - "@statsig/client-core": ["@statsig/client-core@3.17.0", "", {}, "sha512-2P3NGRFGHIwD1BQE4nOMvVK1S7UtdSu04pGf70wEQio3rNxsdaz9tyBWsLk4uQ1FrRn9N8Y1ia5ALrE0DBxsBw=="], + "@statsig/client-core": ["@statsig/client-core@3.18.0", "", {}, "sha512-XwRz4qSd/XdHPEhP+g70ShhX/LRUo3N5i8T1pXthB+qQMxtb0gDLLSJOkqerYFy0Pa1o2bfM1fw8W5tYwqWufA=="], - "@statsig/js-client": ["@statsig/js-client@3.17.0", "", { "dependencies": { "@statsig/client-core": "3.17.0" } }, "sha512-bleYQ29OK6k9cbfLzhqIDsLjQadnvRpkHk3HhiYeWS9xYKpiPltHjOwZNogcox7k9HtgHlhZpzfnT5dXqP4sWg=="], + "@statsig/js-client": ["@statsig/js-client@3.18.0", "", { "dependencies": { "@statsig/client-core": "3.18.0" } }, "sha512-yU4tKywxuP7H16Ri/E4hb+Ti/PN7kEk+ZDrhbzFX9OwEh9qZIjEkoxXOGDFje+3rqn0meN/MuBoSvZwN8qSDYQ=="], - "@statsig/react-bindings": ["@statsig/react-bindings@3.17.0", "", { "dependencies": { "@statsig/client-core": "3.17.0", "@statsig/js-client": "3.17.0" }, "peerDependencies": { "react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-+v6ZCfR8tw/Sy+SDSCiHSuBxS3vy9UT7wCo3lKmacVDxi7nPCg9WL5v6Cz2pCSc9khx8jaSNvyRnxEye8hQmWQ=="], + "@statsig/react-bindings": ["@statsig/react-bindings@3.18.0", "", { "dependencies": { "@statsig/client-core": "3.18.0", "@statsig/js-client": "3.18.0" }, "peerDependencies": { "react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-1wS2mi49rrlAErzxhYHGVQDvkixuazGTT0ToCHUBqNl4jRfMHcsuNXgaDfd337RStq1hUcSXD5welpbVI/aJcA=="], "@svgr/babel-plugin-add-jsx-attribute": ["@svgr/babel-plugin-add-jsx-attribute@8.0.0", "", { "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g=="], @@ -848,22 +946,68 @@ "@svgr/webpack": ["@svgr/webpack@8.1.0", "", { "dependencies": { "@babel/core": "^7.21.3", "@babel/plugin-transform-react-constant-elements": "^7.21.3", "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.21.0", "@svgr/core": "8.1.0", "@svgr/plugin-jsx": "8.1.0", "@svgr/plugin-svgo": "8.1.0" } }, "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA=="], + "@swc/core": ["@swc/core@1.12.5", "", { "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.23" }, "optionalDependencies": { "@swc/core-darwin-arm64": "1.12.5", "@swc/core-darwin-x64": "1.12.5", "@swc/core-linux-arm-gnueabihf": "1.12.5", "@swc/core-linux-arm64-gnu": "1.12.5", "@swc/core-linux-arm64-musl": "1.12.5", "@swc/core-linux-x64-gnu": "1.12.5", "@swc/core-linux-x64-musl": "1.12.5", "@swc/core-win32-arm64-msvc": "1.12.5", "@swc/core-win32-ia32-msvc": "1.12.5", "@swc/core-win32-x64-msvc": "1.12.5" }, "peerDependencies": { "@swc/helpers": ">=0.5.17" }, "optionalPeers": ["@swc/helpers"] }, "sha512-KxA0PHHIuUBmQ/Oi+xFpVzILj2Oo37sTtftCbyowQlyx5YOknEOw1kLpas5hMcpznXgFyAWbpK71xQps4INPgA=="], + + "@swc/core-darwin-arm64": ["@swc/core-darwin-arm64@1.12.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-3WF+naP/qkt5flrTfJr+p07b522JcixKvIivM7FgvllA6LjJxf+pheoILrTS8IwrNAK/XtHfKWYcGY+3eaA4mA=="], + + "@swc/core-darwin-x64": ["@swc/core-darwin-x64@1.12.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-GCcD3dft8YN7unTBcW02Fx41jXp2MNQHCjx5ceWSEYOGvn7vBSUp7k7LkfTxGN5Ftxb9a1mxhPq8r4rD2u/aPw=="], + + "@swc/core-linux-arm-gnueabihf": ["@swc/core-linux-arm-gnueabihf@1.12.5", "", { "os": "linux", "cpu": "arm" }, "sha512-jWlzP/Y4+wbE/EJM+WGIDQsklLFV3g5LmbYTBgrY4+5nb517P31mkBzf5y2knfNWPrL7HzNu0578j3Zi2E6Iig=="], + + "@swc/core-linux-arm64-gnu": ["@swc/core-linux-arm64-gnu@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-GkzgIUz+2r6J6Tn3hb7/4ByaWHRrRZt4vuN9BLAd+y65m2Bt0vlEpPtWhrB/TVe4hEkFR+W5PDETLEbUT4i0tQ=="], + + "@swc/core-linux-arm64-musl": ["@swc/core-linux-arm64-musl@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-g0AJ7QmZPj3Uw+C5pDa48LAUG7JBgQmB0mN5cW+s2mjaFKT0mTSxYALtx/MDZwJExDPo0yJV8kSbFO1tvFPyhg=="], + + "@swc/core-linux-x64-gnu": ["@swc/core-linux-x64-gnu@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-PeYoSziNy+iNiBHPtAsO84bzBne/mbCsG5ijYkAhS1GVsDgohClorUvRXXhcUZoX2gr8TfSI9WLHo30K+DKiHg=="], + + "@swc/core-linux-x64-musl": ["@swc/core-linux-x64-musl@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-EJrfCCIyuV5LLmYgKtIMwtgsnjVesdFe0IgQzEKs9OfB6cL6g7WO9conn8BkGX8jphVa7jChKxShDGkreWWDzA=="], + + "@swc/core-win32-arm64-msvc": ["@swc/core-win32-arm64-msvc@1.12.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-FnwT7fxkJJMgsfiDoZKEVGyCzrPFbzpflFAAoTCUCu3MaHw6mW55o/MAAfofvJ1iIcEpec4o93OilsmKtpyO5Q=="], + + "@swc/core-win32-ia32-msvc": ["@swc/core-win32-ia32-msvc@1.12.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-jW6l4KFt9mIXSpGseE6BQOEFmbIeXeShDuWgldEJXKeXf/uPs8wrqv80XBIUwVpK0ZbmJwPQ0waGVj8UM3th2Q=="], + + "@swc/core-win32-x64-msvc": ["@swc/core-win32-x64-msvc@1.12.5", "", { "os": "win32", "cpu": "x64" }, "sha512-AZszwuEjlz1tSNLQRm3T5OZJ5eebxjJlDQnnzXJmg0B7DJMRoaAe1HTLOmejxjFK6yWr7fh+pSeCw2PgQLxgqA=="], + + "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], + + "@swc/html": ["@swc/html@1.12.5", "", { "dependencies": { "@swc/counter": "^0.1.3" }, "optionalDependencies": { "@swc/html-darwin-arm64": "1.12.5", "@swc/html-darwin-x64": "1.12.5", "@swc/html-linux-arm-gnueabihf": "1.12.5", "@swc/html-linux-arm64-gnu": "1.12.5", "@swc/html-linux-arm64-musl": "1.12.5", "@swc/html-linux-x64-gnu": "1.12.5", "@swc/html-linux-x64-musl": "1.12.5", "@swc/html-win32-arm64-msvc": "1.12.5", "@swc/html-win32-ia32-msvc": "1.12.5", "@swc/html-win32-x64-msvc": "1.12.5" } }, "sha512-6AcT5dBLt4fFch0YI1FL5CYZkamcObKAt7Tj9nv/jfm8l8JRuIKaHCa0pElHcQv99ZvjP9MlVJgJz8ZqfEJM2A=="], + + "@swc/html-darwin-arm64": ["@swc/html-darwin-arm64@1.12.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-PE9cCiQUxxC15VrN9D+nDXS9R1z6Fxg04wRoEVg2imRa+I5uUSWjJwzfT3vHmNbvXdR0poybL9ro1Zr74EWliw=="], + + "@swc/html-darwin-x64": ["@swc/html-darwin-x64@1.12.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-/81/o18rbJKcrplNwB0zh30lVmH9+bbNNpyAMwvnhDI8TP7ZMGvsmv1asRM3qnTP2g1jKeUXM90RcqFC1wdJuQ=="], + + "@swc/html-linux-arm-gnueabihf": ["@swc/html-linux-arm-gnueabihf@1.12.5", "", { "os": "linux", "cpu": "arm" }, "sha512-wTcXXoV4fioAFEKPQZznqquscD1BNmCKilVIDWjpo0q9RS0zwJQzx8XKzvBwCylxpJRL8otUQxdwoscckdGaVA=="], + + "@swc/html-linux-arm64-gnu": ["@swc/html-linux-arm64-gnu@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-qNukrD+Nm4OjH6S+aiHHj7q5Bufhx/uPR3G3do6+xJLX97LsAONG0yQfgw1mRVoOtbVZ7JF2+y7VliFi+jcjow=="], + + "@swc/html-linux-arm64-musl": ["@swc/html-linux-arm64-musl@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-WJqYRdyh+Qms1RHAaNP/dCqACtH3GzZDY7RoiG6gUvOdJ8z+U+nvpUqyNYxrXkSCzfeps7W7Mw4xQR5doRztBQ=="], + + "@swc/html-linux-x64-gnu": ["@swc/html-linux-x64-gnu@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-RmGL1PFzFQ4IVABNEQQMnKH4kucbnYlh7Lro9GcfGyEHD+QowZF4JBCkhIYK6eL7eahGr8gVjyB7rApuj9+GbA=="], + + "@swc/html-linux-x64-musl": ["@swc/html-linux-x64-musl@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-ril18eB2FymVfrYAWES6L2UOTP/6nVLOSkl6MUV/ReIMzffm06zoMaY3ywJU5NpU1vNg2CWip0Neb4drYuL7zQ=="], + + "@swc/html-win32-arm64-msvc": ["@swc/html-win32-arm64-msvc@1.12.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-MjyphqJlHkJc1eluDNWX+dFoeBgiVvOOWSbHpALslIXmefzlCJDtiMrPwh7CaYsQqvwMGD0VQ/7mLm/w5vTG5A=="], + + "@swc/html-win32-ia32-msvc": ["@swc/html-win32-ia32-msvc@1.12.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-5QpsXeWxzx3uAgGJEwIAGGVOBB75mFbV+/rtykfxPtLYcItaVQAbFEvOQek9AMn858Q32oTB0kPAq92Fi9rhlA=="], + + "@swc/html-win32-x64-msvc": ["@swc/html-win32-x64-msvc@1.12.5", "", { "os": "win32", "cpu": "x64" }, "sha512-Um+hIkVmg9ayZV0Swu0g42sXx8Py0Q8sZfLt8izXiKYExaxCu6MDU6EgySpaARcrYyo0XYByhHJ+/QYZ3ZDBhA=="], + + "@swc/types": ["@swc/types@0.1.23", "", { "dependencies": { "@swc/counter": "^0.1.3" } }, "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw=="], + "@szmarczak/http-timer": ["@szmarczak/http-timer@5.0.1", "", { "dependencies": { "defer-to-connect": "^2.0.1" } }, "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw=="], "@tailwindcss/line-clamp": ["@tailwindcss/line-clamp@0.4.4", "", { "peerDependencies": { "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" } }, "sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g=="], "@tanstack/react-table": ["@tanstack/react-table@8.21.3", "", { "dependencies": { "@tanstack/table-core": "8.21.3" }, "peerDependencies": { "react": ">=16.8", "react-dom": ">=16.8" } }, "sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww=="], - "@tanstack/react-virtual": ["@tanstack/react-virtual@3.13.8", "", { "dependencies": { "@tanstack/virtual-core": "3.13.8" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-meS2AanUg50f3FBSNoAdBSRAh8uS0ue01qm7zrw65KGJtiXB9QXfybqZwkh4uFpRv2iX/eu5tjcH5wqUpwYLPg=="], + "@tanstack/react-virtual": ["@tanstack/react-virtual@3.13.10", "", { "dependencies": { "@tanstack/virtual-core": "3.13.10" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-nvrzk4E9mWB4124YdJ7/yzwou7IfHxlSef6ugCFcBfRmsnsma3heciiiV97sBNxyc3VuwtZvmwXd0aB5BpucVw=="], "@tanstack/table-core": ["@tanstack/table-core@8.21.3", "", {}, "sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg=="], - "@tanstack/virtual-core": ["@tanstack/virtual-core@3.13.8", "", {}, "sha512-BT6w89Hqy7YKaWewYzmecXQzcJh6HTBbKYJIIkMaNU49DZ06LoTV3z32DWWEdUsgW6n1xTmwTLs4GtWrZC261w=="], + "@tanstack/virtual-core": ["@tanstack/virtual-core@3.13.10", "", {}, "sha512-sPEDhXREou5HyZYqSWIqdU580rsF6FGeN7vpzijmP3KTiOGjOMZASz4Y6+QKjiFQwhWrR58OP8izYaNGVxvViA=="], "@tootallnate/once": ["@tootallnate/once@2.0.0", "", {}, "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="], - "@trivago/prettier-plugin-sort-imports": ["@trivago/prettier-plugin-sort-imports@4.3.0", "", { "dependencies": { "@babel/generator": "7.17.7", "@babel/parser": "^7.20.5", "@babel/traverse": "7.23.2", "@babel/types": "7.17.0", "javascript-natural-sort": "0.7.1", "lodash": "^4.17.21" }, "peerDependencies": { "@vue/compiler-sfc": "3.x", "prettier": "2.x - 3.x" }, "optionalPeers": ["@vue/compiler-sfc"] }, "sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ=="], - "@trysound/sax": ["@trysound/sax@0.2.0", "", {}, "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="], "@ts-morph/common": ["@ts-morph/common@0.11.1", "", { "dependencies": { "fast-glob": "^3.2.7", "minimatch": "^3.0.4", "mkdirp": "^1.0.4", "path-browserify": "^1.0.1" } }, "sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g=="], @@ -876,9 +1020,7 @@ "@tsconfig/node16": ["@tsconfig/node16@1.0.4", "", {}, "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA=="], - "@types/acorn": ["@types/acorn@4.0.6", "", { "dependencies": { "@types/estree": "*" } }, "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ=="], - - "@types/body-parser": ["@types/body-parser@1.19.5", "", { "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg=="], + "@types/body-parser": ["@types/body-parser@1.19.6", "", { "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g=="], "@types/bonjour": ["@types/bonjour@3.5.13", "", { "dependencies": { "@types/node": "*" } }, "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ=="], @@ -932,15 +1074,15 @@ "@types/d3-random": ["@types/d3-random@3.0.3", "", {}, "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ=="], - "@types/d3-scale": ["@types/d3-scale@4.0.8", "", { "dependencies": { "@types/d3-time": "*" } }, "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ=="], + "@types/d3-scale": ["@types/d3-scale@4.0.9", "", { "dependencies": { "@types/d3-time": "*" } }, "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw=="], - "@types/d3-scale-chromatic": ["@types/d3-scale-chromatic@3.0.3", "", {}, "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw=="], + "@types/d3-scale-chromatic": ["@types/d3-scale-chromatic@3.1.0", "", {}, "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ=="], "@types/d3-selection": ["@types/d3-selection@3.0.11", "", {}, "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w=="], "@types/d3-shape": ["@types/d3-shape@3.1.7", "", { "dependencies": { "@types/d3-path": "*" } }, "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg=="], - "@types/d3-time": ["@types/d3-time@3.0.3", "", {}, "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw=="], + "@types/d3-time": ["@types/d3-time@3.0.4", "", {}, "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g=="], "@types/d3-time-format": ["@types/d3-time-format@4.0.3", "", {}, "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg=="], @@ -952,17 +1094,17 @@ "@types/debug": ["@types/debug@4.1.12", "", { "dependencies": { "@types/ms": "*" } }, "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ=="], - "@types/eslint": ["@types/eslint@8.56.10", "", { "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ=="], + "@types/eslint": ["@types/eslint@9.6.1", "", { "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag=="], "@types/eslint-scope": ["@types/eslint-scope@3.7.7", "", { "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg=="], - "@types/estree": ["@types/estree@1.0.5", "", {}, "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw=="], + "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], "@types/estree-jsx": ["@types/estree-jsx@1.0.5", "", { "dependencies": { "@types/estree": "*" } }, "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg=="], - "@types/express": ["@types/express@4.17.21", "", { "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ=="], + "@types/express": ["@types/express@4.17.23", "", { "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ=="], - "@types/express-serve-static-core": ["@types/express-serve-static-core@4.19.5", "", { "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg=="], + "@types/express-serve-static-core": ["@types/express-serve-static-core@4.19.6", "", { "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A=="], "@types/geojson": ["@types/geojson@7946.0.16", "", {}, "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg=="], @@ -976,9 +1118,9 @@ "@types/http-cache-semantics": ["@types/http-cache-semantics@4.0.4", "", {}, "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="], - "@types/http-errors": ["@types/http-errors@2.0.4", "", {}, "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA=="], + "@types/http-errors": ["@types/http-errors@2.0.5", "", {}, "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg=="], - "@types/http-proxy": ["@types/http-proxy@1.17.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w=="], + "@types/http-proxy": ["@types/http-proxy@1.17.16", "", { "dependencies": { "@types/node": "*" } }, "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w=="], "@types/is-empty": ["@types/is-empty@1.2.3", "", {}, "sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw=="], @@ -998,23 +1140,21 @@ "@types/mime": ["@types/mime@1.3.5", "", {}, "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w=="], - "@types/ms": ["@types/ms@0.7.34", "", {}, "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="], + "@types/ms": ["@types/ms@2.1.0", "", {}, "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA=="], - "@types/node": ["@types/node@20.19.0", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-hfrc+1tud1xcdVTABC2JiomZJEklMcXYNTVtZLAeqTVWD+qL5jkHKT+1lOtqDdGxt+mB53DTtiz673vfjU8D1Q=="], + "@types/node": ["@types/node@24.0.3", "", { "dependencies": { "undici-types": "~7.8.0" } }, "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg=="], "@types/node-forge": ["@types/node-forge@1.3.11", "", { "dependencies": { "@types/node": "*" } }, "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ=="], "@types/parse-json": ["@types/parse-json@4.0.2", "", {}, "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw=="], - "@types/prismjs": ["@types/prismjs@1.26.4", "", {}, "sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg=="], - - "@types/prop-types": ["@types/prop-types@15.7.12", "", {}, "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q=="], + "@types/prismjs": ["@types/prismjs@1.26.5", "", {}, "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ=="], - "@types/qs": ["@types/qs@6.9.15", "", {}, "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg=="], + "@types/qs": ["@types/qs@6.14.0", "", {}, "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ=="], "@types/range-parser": ["@types/range-parser@1.2.7", "", {}, "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="], - "@types/react": ["@types/react@18.3.3", "", { "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" } }, "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw=="], + "@types/react": ["@types/react@19.1.8", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g=="], "@types/react-router": ["@types/react-router@5.1.20", "", { "dependencies": { "@types/history": "^4.7.11", "@types/react": "*" } }, "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q=="], @@ -1026,13 +1166,11 @@ "@types/sax": ["@types/sax@1.2.7", "", { "dependencies": { "@types/node": "*" } }, "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A=="], - "@types/semver": ["@types/semver@7.5.8", "", {}, "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ=="], - - "@types/send": ["@types/send@0.17.4", "", { "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA=="], + "@types/send": ["@types/send@0.17.5", "", { "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w=="], "@types/serve-index": ["@types/serve-index@1.9.4", "", { "dependencies": { "@types/express": "*" } }, "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug=="], - "@types/serve-static": ["@types/serve-static@1.15.7", "", { "dependencies": { "@types/http-errors": "*", "@types/node": "*", "@types/send": "*" } }, "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw=="], + "@types/serve-static": ["@types/serve-static@1.15.8", "", { "dependencies": { "@types/http-errors": "*", "@types/node": "*", "@types/send": "*" } }, "sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg=="], "@types/sockjs": ["@types/sockjs@0.3.36", "", { "dependencies": { "@types/node": "*" } }, "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q=="], @@ -1042,73 +1180,53 @@ "@types/trusted-types": ["@types/trusted-types@2.0.7", "", {}, "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="], - "@types/unist": ["@types/unist@3.0.2", "", {}, "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ=="], + "@types/unist": ["@types/unist@3.0.3", "", {}, "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="], - "@types/ws": ["@types/ws@8.5.10", "", { "dependencies": { "@types/node": "*" } }, "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A=="], + "@types/ws": ["@types/ws@8.18.1", "", { "dependencies": { "@types/node": "*" } }, "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg=="], - "@types/yargs": ["@types/yargs@17.0.32", "", { "dependencies": { "@types/yargs-parser": "*" } }, "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog=="], + "@types/yargs": ["@types/yargs@17.0.33", "", { "dependencies": { "@types/yargs-parser": "*" } }, "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA=="], "@types/yargs-parser": ["@types/yargs-parser@21.0.3", "", {}, "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="], - "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.33.1", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.33.1", "@typescript-eslint/type-utils": "8.33.1", "@typescript-eslint/utils": "8.33.1", "@typescript-eslint/visitor-keys": "8.33.1", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.33.1", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-TDCXj+YxLgtvxvFlAvpoRv9MAncDLBV2oT9Bd7YBGC/b/sEURoOYuIwLI99rjWOfY3QtDzO+mk0n4AmdFExW8A=="], - - "@typescript-eslint/parser": ["@typescript-eslint/parser@8.33.1", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.33.1", "@typescript-eslint/types": "8.33.1", "@typescript-eslint/typescript-estree": "8.33.1", "@typescript-eslint/visitor-keys": "8.33.1", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA=="], - - "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.33.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.33.1", "@typescript-eslint/types": "^8.33.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw=="], - - "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.33.1", "", { "dependencies": { "@typescript-eslint/types": "8.33.1", "@typescript-eslint/visitor-keys": "8.33.1" } }, "sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA=="], - - "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.33.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g=="], - - "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.33.1", "", { "dependencies": { "@typescript-eslint/typescript-estree": "8.33.1", "@typescript-eslint/utils": "8.33.1", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-1cG37d9xOkhlykom55WVwG2QRNC7YXlxMaMzqw2uPeJixBFfKWZgaP/hjAObqMN/u3fr5BrTwTnc31/L9jQ2ww=="], - - "@typescript-eslint/types": ["@typescript-eslint/types@8.33.1", "", {}, "sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg=="], - - "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.33.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.33.1", "@typescript-eslint/tsconfig-utils": "8.33.1", "@typescript-eslint/types": "8.33.1", "@typescript-eslint/visitor-keys": "8.33.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA=="], - - "@typescript-eslint/utils": ["@typescript-eslint/utils@5.62.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ=="], - - "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.33.1", "", { "dependencies": { "@typescript-eslint/types": "8.33.1", "eslint-visitor-keys": "^4.2.0" } }, "sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ=="], - - "@ungap/structured-clone": ["@ungap/structured-clone@1.2.0", "", {}, "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="], + "@ungap/structured-clone": ["@ungap/structured-clone@1.3.0", "", {}, "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="], "@vercel/analytics": ["@vercel/analytics@1.5.0", "", { "peerDependencies": { "@remix-run/react": "^2", "@sveltejs/kit": "^1 || ^2", "next": ">= 13", "react": "^18 || ^19 || ^19.0.0-rc", "svelte": ">= 4", "vue": "^3", "vue-router": "^4" }, "optionalPeers": ["@remix-run/react", "@sveltejs/kit", "next", "react", "svelte", "vue", "vue-router"] }, "sha512-MYsBzfPki4gthY5HnYN7jgInhAZ7Ac1cYDoRWFomwGHWEX7odTEzbtg9kf/QSo7XEsEAqlQugA6gJ2WS2DEa3g=="], - "@vercel/build-utils": ["@vercel/build-utils@8.3.2", "", {}, "sha512-/pacEU/vFFOayrZAWk0uEObo28mwqL8rIi7dTowYl0lRFcw3frej32uYMJSPdjskSRo50IR0m8WBqBiFu6zJGA=="], + "@vercel/blob": ["@vercel/blob@1.0.2", "", { "dependencies": { "async-retry": "^1.3.3", "is-buffer": "^2.0.5", "is-node-process": "^1.2.0", "throttleit": "^2.1.0", "undici": "^5.28.4" } }, "sha512-Im/KeFH4oPx7UsM+QiteimnE07bIUD7JK6CBafI9Z0jRFogaialTBMiZj8EKk/30ctUYsrpIIyP9iIY1YxWnUQ=="], - "@vercel/edge": ["@vercel/edge@1.2.1", "", {}, "sha512-1++yncEyIAi68D3UEOlytYb1IUcIulMWdoSzX2h9LuSeeyR7JtaIgR8DcTQ6+DmYOQn+5MCh6LY+UmK6QBByNA=="], + "@vercel/build-utils": ["@vercel/build-utils@10.6.1", "", {}, "sha512-E6O45bInBcKFDtliPADlNpIMutPjzGepYVfV2GyXdxf+00k6wMAlTQ/HbgWhvErOvy7TkZxFxrkRghAWnGK+UA=="], - "@vercel/error-utils": ["@vercel/error-utils@2.0.2", "", {}, "sha512-Sj0LFafGpYr6pfCqrQ82X6ukRl5qpmVrHM/191kNYFqkkB9YkjlMAj6QcEsvCG259x4QZ7Tya++0AB85NDPbKQ=="], + "@vercel/edge": ["@vercel/edge@1.2.2", "", {}, "sha512-1+y+f6rk0Yc9ss9bRDgz/gdpLimwoRteKHhrcgHvEpjbP1nyT3ByqEMWm2BTcpIO5UtDmIFXc8zdq4LR190PDA=="], - "@vercel/fun": ["@vercel/fun@1.1.0", "", { "dependencies": { "@tootallnate/once": "2.0.0", "async-listen": "1.2.0", "debug": "4.1.1", "execa": "3.2.0", "fs-extra": "8.1.0", "generic-pool": "3.4.2", "micro": "9.3.5-canary.3", "ms": "2.1.1", "node-fetch": "2.6.7", "path-match": "1.2.4", "promisepipe": "3.0.0", "semver": "7.3.5", "stat-mode": "0.3.0", "stream-to-promise": "2.2.0", "tar": "4.4.18", "tree-kill": "1.2.2", "uid-promise": "1.0.0", "uuid": "3.3.2", "xdg-app-paths": "5.1.0", "yauzl-promise": "2.1.3" } }, "sha512-SpuPAo+MlAYMtcMcC0plx7Tv4Mp7SQhJJj1iIENlOnABL24kxHpL09XLQMGzZIzIW7upR8c3edwgfpRtp+dhVw=="], + "@vercel/error-utils": ["@vercel/error-utils@2.0.3", "", {}, "sha512-CqC01WZxbLUxoiVdh9B/poPbNpY9U+tO1N9oWHwTl5YAZxcqXmmWJ8KNMFItJCUUWdY3J3xv8LvAuQv2KZ5YdQ=="], - "@vercel/gatsby-plugin-vercel-analytics": ["@vercel/gatsby-plugin-vercel-analytics@1.0.11", "", { "dependencies": { "web-vitals": "0.2.4" } }, "sha512-iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="], + "@vercel/fun": ["@vercel/fun@1.1.6", "", { "dependencies": { "@tootallnate/once": "2.0.0", "async-listen": "1.2.0", "debug": "4.3.4", "generic-pool": "3.4.2", "micro": "9.3.5-canary.3", "ms": "2.1.1", "node-fetch": "2.6.7", "path-match": "1.2.4", "promisepipe": "3.0.0", "semver": "7.5.4", "stat-mode": "0.3.0", "stream-to-promise": "2.2.0", "tar": "6.2.1", "tinyexec": "0.3.2", "tree-kill": "1.2.2", "uid-promise": "1.0.0", "xdg-app-paths": "5.1.0", "yauzl-promise": "2.1.3" } }, "sha512-xDiM+bD0fSZyzcjsAua3D+guXclvHOSTzr03UcZEQwYzIjwWjLduT7bl2gAaeNIe7fASAIZd0P00clcj0On4rQ=="], - "@vercel/gatsby-plugin-vercel-builder": ["@vercel/gatsby-plugin-vercel-builder@2.0.36", "", { "dependencies": { "@sinclair/typebox": "0.25.24", "@vercel/build-utils": "8.3.2", "@vercel/routing-utils": "3.1.0", "esbuild": "0.14.47", "etag": "1.8.1", "fs-extra": "11.1.0" } }, "sha512-TyKJtiBKkj6bJFRLXKi6S0ID1Qwic6JSvVvi9wheulm8I8o4HQPp3xkHa1jEo8PJ9+XQU06hHHiAY6+YafVRiQ=="], + "@vercel/gatsby-plugin-vercel-analytics": ["@vercel/gatsby-plugin-vercel-analytics@1.0.11", "", { "dependencies": { "web-vitals": "0.2.4" } }, "sha512-iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw=="], - "@vercel/go": ["@vercel/go@3.1.1", "", {}, "sha512-mrzomNYltxkjvtUmaYry5YEyvwTz6c/QQHE5Gr/pPGRIniUiP6T6OFOJ49RBN7e6pRXaNzHPVuidiuBhvHh5+Q=="], + "@vercel/gatsby-plugin-vercel-builder": ["@vercel/gatsby-plugin-vercel-builder@2.0.84", "", { "dependencies": { "@sinclair/typebox": "0.25.24", "@vercel/build-utils": "10.6.1", "esbuild": "0.14.47", "etag": "1.8.1", "fs-extra": "11.1.0" } }, "sha512-iQW+4zng32XrBnXqia1pocFweI8YPcUn7i7evLHRhFSSKWRn+6FmQsGPEqzw1cVqwl2ute5+sx0R/J0nr0v0Xw=="], - "@vercel/hydrogen": ["@vercel/hydrogen@1.0.2", "", { "dependencies": { "@vercel/static-config": "3.0.0", "ts-morph": "12.0.0" } }, "sha512-/Q2MKk1GfOuZAnkE9jQexjtUQqanbY65R+xtJWd9yKIgwcfRI1hxiNH3uXyVM5AvLoY+fxxULkSuxDtUKpkJpQ=="], + "@vercel/go": ["@vercel/go@3.2.1", "", {}, "sha512-ezjmuUvLigH9V4egEaX0SZ+phILx8lb+Zkp1iTqKI+yl/ibPAtVo5o+dLSRAXU9U01LBmaLu3O8Oxd/JpWYCOw=="], - "@vercel/next": ["@vercel/next@4.3.2", "", { "dependencies": { "@vercel/nft": "0.27.2" } }, "sha512-sZ8SlDIYPoPVOe1HjAqKd4Pi6f5TBE7gDmt12X+ja/g6VPNNwqDaQG3SizVjcZsavnpH1fZNm8Rc1HRoBLihfA=="], + "@vercel/hydrogen": ["@vercel/hydrogen@1.2.2", "", { "dependencies": { "@vercel/static-config": "3.1.1", "ts-morph": "12.0.0" } }, "sha512-PRA3r1/ZRcklGgs/hczprQZ27jX9Avyq/iEbtmzAFNbFovkTlkE0Wy93pVKJfJ4ISCBzBgUSMktX9+6wgjs32A=="], - "@vercel/nft": ["@vercel/nft@0.27.2", "", { "dependencies": { "@mapbox/node-pre-gyp": "^1.0.5", "@rollup/pluginutils": "^4.0.0", "acorn": "^8.6.0", "acorn-import-attributes": "^1.9.5", "async-sema": "^3.1.1", "bindings": "^1.4.0", "estree-walker": "2.0.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "micromatch": "^4.0.2", "node-gyp-build": "^4.2.2", "resolve-from": "^5.0.0" }, "bin": { "nft": "out/cli.js" } }, "sha512-7LeioS1yE5hwPpQfD3DdH04tuugKjo5KrJk3yK5kAI3Lh76iSsK/ezoFQfzuT08X3ZASQOd1y9ePjLNI9+TxTQ=="], + "@vercel/next": ["@vercel/next@4.9.0", "", { "dependencies": { "@vercel/nft": "0.29.2" } }, "sha512-bX1/4ymvd7VaXpbNsM0nhjLLvlMXjAiK5EklnMp22wnE7GVey+gCPXAx6JmAM2pqxdl6HkTeppC4WstiktOkfA=="], - "@vercel/node": ["@vercel/node@3.2.3", "", { "dependencies": { "@edge-runtime/node-utils": "2.3.0", "@edge-runtime/primitives": "4.1.0", "@edge-runtime/vm": "3.2.0", "@types/node": "16.18.11", "@vercel/build-utils": "8.3.2", "@vercel/error-utils": "2.0.2", "@vercel/nft": "0.27.2", "@vercel/static-config": "3.0.0", "async-listen": "3.0.0", "cjs-module-lexer": "1.2.3", "edge-runtime": "2.5.9", "es-module-lexer": "1.4.1", "esbuild": "0.14.47", "etag": "1.8.1", "node-fetch": "2.6.9", "path-to-regexp": "6.2.1", "ts-morph": "12.0.0", "ts-node": "10.9.1", "typescript": "4.9.5", "undici": "5.28.4" } }, "sha512-M/trB1Cs5/aaZVpJJpylntoektXeShFkl8uSCehbh4wy/gGMXFsTRmQfGfUbcJq8K/rhPHrRv1lmJEU5S5zerg=="], + "@vercel/nft": ["@vercel/nft@0.29.2", "", { "dependencies": { "@mapbox/node-pre-gyp": "^2.0.0", "@rollup/pluginutils": "^5.1.3", "acorn": "^8.6.0", "acorn-import-attributes": "^1.9.5", "async-sema": "^3.1.1", "bindings": "^1.4.0", "estree-walker": "2.0.2", "glob": "^10.4.5", "graceful-fs": "^4.2.9", "node-gyp-build": "^4.2.2", "picomatch": "^4.0.2", "resolve-from": "^5.0.0" }, "bin": { "nft": "out/cli.js" } }, "sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA=="], - "@vercel/python": ["@vercel/python@4.3.0", "", {}, "sha512-tj6ffEh+ligmQoo/ONOg7DNX0VGKJt9FyswyOIIp6lZufs5oGzHAfan4+5QzF/2INxvXobN0aMYgcbFHJ81ZKg=="], + "@vercel/node": ["@vercel/node@5.3.0", "", { "dependencies": { "@edge-runtime/node-utils": "2.3.0", "@edge-runtime/primitives": "4.1.0", "@edge-runtime/vm": "3.2.0", "@types/node": "16.18.11", "@vercel/build-utils": "10.6.1", "@vercel/error-utils": "2.0.3", "@vercel/nft": "0.29.2", "@vercel/static-config": "3.1.1", "async-listen": "3.0.0", "cjs-module-lexer": "1.2.3", "edge-runtime": "2.5.9", "es-module-lexer": "1.4.1", "esbuild": "0.14.47", "etag": "1.8.1", "node-fetch": "2.6.9", "path-to-regexp": "6.1.0", "path-to-regexp-updated": "npm:path-to-regexp@6.3.0", "ts-morph": "12.0.0", "ts-node": "10.9.1", "typescript": "4.9.5", "undici": "5.28.4" } }, "sha512-NeE5c7dRt9PXUzq7zUA+rj94l7AoXBw2cE+xK0hIoYDcWbIJVYBhbkBtzNdZx8CGncUJ2wMq01gn8pCwoQ0xYA=="], - "@vercel/redwood": ["@vercel/redwood@2.1.0", "", { "dependencies": { "@vercel/nft": "0.27.2", "@vercel/routing-utils": "3.1.0", "@vercel/static-config": "3.0.0", "semver": "6.3.1", "ts-morph": "12.0.0" } }, "sha512-kwlAJSA0qHrq3eG5k4+xiOXUfPNQ5mUm3Zs+2FUweEhyhIBRlue862H55A5w1kZBPDSTtnlQZrkrwCOMpz0pHg=="], + "@vercel/python": ["@vercel/python@4.7.2", "", {}, "sha512-i2QBNMvNxUZQ2e5vLIL7mUkLg5Qkl9nqxUNXCYezdyvk2Ql6xYKjg7tMhpK/uiy094KfZSOECpDbDxkIN0jUSw=="], - "@vercel/remix-builder": ["@vercel/remix-builder@2.1.10", "", { "dependencies": { "@vercel/error-utils": "2.0.2", "@vercel/nft": "0.27.2", "@vercel/static-config": "3.0.0", "ts-morph": "12.0.0" } }, "sha512-Ehw0TGWOma7Z5zD42pZXh+b4QPSPMZO98Va88uVsebD4TmTg+V3I/6E+U/HRKHsxSWixy5ZSdWjdrNV9NoZgQA=="], + "@vercel/redwood": ["@vercel/redwood@2.3.3", "", { "dependencies": { "@vercel/nft": "0.29.2", "@vercel/static-config": "3.1.1", "semver": "6.3.1", "ts-morph": "12.0.0" } }, "sha512-9Dfith+CYNNt/5Mkrklu7xWroWgSJVR4uh7mwu/2IvuCiJMNa24ReR9xtQNyGFAwAjdeweQ/nHfImz+12ORfpQ=="], - "@vercel/routing-utils": ["@vercel/routing-utils@3.1.0", "", { "dependencies": { "path-to-regexp": "6.1.0" }, "optionalDependencies": { "ajv": "^6.0.0" } }, "sha512-Ci5xTjVTJY/JLZXpCXpLehMft97i9fH34nu9PGav6DtwkVUF6TOPX86U0W0niQjMZ5n6/ZP0BwcJK2LOozKaGw=="], + "@vercel/remix-builder": ["@vercel/remix-builder@5.4.9", "", { "dependencies": { "@vercel/error-utils": "2.0.3", "@vercel/nft": "0.29.2", "@vercel/static-config": "3.1.1", "path-to-regexp": "6.1.0", "path-to-regexp-updated": "npm:path-to-regexp@6.3.0", "ts-morph": "12.0.0" } }, "sha512-+fWdMjVI6bO0GUBJbw2seBDnLvPi2dd9aBQHVG2TCbJobBPfXgyEMgRWDS+4gjhXn4jLatX4B5C5iJykkeMqNQ=="], - "@vercel/ruby": ["@vercel/ruby@2.1.0", "", {}, "sha512-UZYwlSEEfVnfzTmgkD+kxex9/gkZGt7unOWNyWFN7V/ZnZSsGBUgv6hXLnwejdRi3EztgRQEBd1kUKlXdIeC0Q=="], + "@vercel/ruby": ["@vercel/ruby@2.2.0", "", {}, "sha512-FJF9gKVNHAljGOgV6zS5ou2N7ZgjOqMMtcPA5lsJEUI5/AZzVDWCmtcowTP80wEtHuupkd7d7M399FA082kXYQ=="], - "@vercel/static-build": ["@vercel/static-build@2.5.14", "", { "dependencies": { "@vercel/gatsby-plugin-vercel-analytics": "1.0.11", "@vercel/gatsby-plugin-vercel-builder": "2.0.36", "@vercel/static-config": "3.0.0", "ts-morph": "12.0.0" } }, "sha512-HWm2B3WPbSXlRzT2KDiOhV+gRQR2t6s1gFhM22YXpWfUcdRJhyRam1DGkuZYBWlZYDEOxbdD0veK2VObIKYD5Q=="], + "@vercel/static-build": ["@vercel/static-build@2.7.10", "", { "dependencies": { "@vercel/gatsby-plugin-vercel-analytics": "1.0.11", "@vercel/gatsby-plugin-vercel-builder": "2.0.84", "@vercel/static-config": "3.1.1", "ts-morph": "12.0.0" } }, "sha512-qH5WrNXDVMn6RtdzCzLK5Eqeq9ABkL+FsJTYyeS35Y4Sd9FYR6QsCSANm1Go0MMv3RLa5j1Jtje/9N7QaU4TKg=="], - "@vercel/static-config": ["@vercel/static-config@3.0.0", "", { "dependencies": { "ajv": "8.6.3", "json-schema-to-ts": "1.6.4", "ts-morph": "12.0.0" } }, "sha512-2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw=="], + "@vercel/static-config": ["@vercel/static-config@3.1.1", "", { "dependencies": { "ajv": "8.6.3", "json-schema-to-ts": "1.6.4", "ts-morph": "12.0.0" } }, "sha512-IRtKnm9N1Uqd2ayIbLPjRtdwcl1GTWvqF1PuEVNm9O43kmoI+m9VpGlW8oga+5LQq1LmJ2Y67zHr7NbjrH1rrw=="], "@webassemblyjs/ast": ["@webassemblyjs/ast@1.14.1", "", { "dependencies": { "@webassemblyjs/helper-numbers": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ=="], @@ -1140,27 +1258,35 @@ "@webassemblyjs/wast-printer": ["@webassemblyjs/wast-printer@1.14.1", "", { "dependencies": { "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw=="], + "@whatwg-node/disposablestack": ["@whatwg-node/disposablestack@0.0.6", "", { "dependencies": { "@whatwg-node/promise-helpers": "^1.0.0", "tslib": "^2.6.3" } }, "sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw=="], + + "@whatwg-node/fetch": ["@whatwg-node/fetch@0.10.8", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.7.21", "urlpattern-polyfill": "^10.0.0" } }, "sha512-Rw9z3ctmeEj8QIB9MavkNJqekiu9usBCSMZa+uuAvM0lF3v70oQVCXNppMIqaV6OTZbdaHF1M2HLow58DEw+wg=="], + + "@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.7.21", "", { "dependencies": { "@fastify/busboy": "^3.1.1", "@whatwg-node/disposablestack": "^0.0.6", "@whatwg-node/promise-helpers": "^1.3.2", "tslib": "^2.6.3" } }, "sha512-QC16IdsEyIW7kZd77aodrMO7zAoDyyqRCTLg+qG4wqtP4JV9AA+p7/lgqMdD29XyiYdVvIdFrfI9yh7B1QvRvw=="], + + "@whatwg-node/promise-helpers": ["@whatwg-node/promise-helpers@1.3.2", "", { "dependencies": { "tslib": "^2.6.3" } }, "sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA=="], + "@xtuc/ieee754": ["@xtuc/ieee754@1.2.0", "", {}, "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="], "@xtuc/long": ["@xtuc/long@4.2.2", "", {}, "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="], - "abbrev": ["abbrev@1.1.1", "", {}, "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="], + "abbrev": ["abbrev@3.0.1", "", {}, "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg=="], "abitype": ["abitype@1.0.0", "", { "peerDependencies": { "typescript": ">=5.0.4", "zod": "^3 >=3.22.0" }, "optionalPeers": ["typescript", "zod"] }, "sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ=="], "accepts": ["accepts@1.3.8", "", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="], - "acorn": ["acorn@8.14.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="], + "acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], "acorn-import-attributes": ["acorn-import-attributes@1.9.5", "", { "peerDependencies": { "acorn": "^8" } }, "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ=="], "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], - "acorn-walk": ["acorn-walk@8.3.3", "", { "dependencies": { "acorn": "^8.11.0" } }, "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw=="], + "acorn-walk": ["acorn-walk@8.3.4", "", { "dependencies": { "acorn": "^8.11.0" } }, "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g=="], "address": ["address@1.2.2", "", {}, "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="], - "agent-base": ["agent-base@6.0.2", "", { "dependencies": { "debug": "4" } }, "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="], + "agent-base": ["agent-base@7.1.3", "", {}, "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw=="], "aggregate-error": ["aggregate-error@3.1.0", "", { "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" } }, "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="], @@ -1170,9 +1296,9 @@ "ajv-keywords": ["ajv-keywords@5.1.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3" }, "peerDependencies": { "ajv": "^8.8.2" } }, "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="], - "algoliasearch": ["algoliasearch@5.20.3", "", { "dependencies": { "@algolia/client-abtesting": "5.20.3", "@algolia/client-analytics": "5.20.3", "@algolia/client-common": "5.20.3", "@algolia/client-insights": "5.20.3", "@algolia/client-personalization": "5.20.3", "@algolia/client-query-suggestions": "5.20.3", "@algolia/client-search": "5.20.3", "@algolia/ingestion": "1.20.3", "@algolia/monitoring": "1.20.3", "@algolia/recommend": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-iNC6BGvipaalFfDfDnXUje8GUlW5asj0cTMsZJwO/0rhsyLx1L7GZFAY8wW+eQ6AM4Yge2p5GSE5hrBlfSD90Q=="], + "algoliasearch": ["algoliasearch@5.29.0", "", { "dependencies": { "@algolia/client-abtesting": "5.29.0", "@algolia/client-analytics": "5.29.0", "@algolia/client-common": "5.29.0", "@algolia/client-insights": "5.29.0", "@algolia/client-personalization": "5.29.0", "@algolia/client-query-suggestions": "5.29.0", "@algolia/client-search": "5.29.0", "@algolia/ingestion": "1.29.0", "@algolia/monitoring": "1.29.0", "@algolia/recommend": "5.29.0", "@algolia/requester-browser-xhr": "5.29.0", "@algolia/requester-fetch": "5.29.0", "@algolia/requester-node-http": "5.29.0" } }, "sha512-E2l6AlTWGznM2e7vEE6T6hzObvEyXukxMOlBmVlMyixZyK1umuO/CiVc6sDBbzVH0oEviCE5IfVY1oZBmccYPQ=="], - "algoliasearch-helper": ["algoliasearch-helper@3.24.1", "", { "dependencies": { "@algolia/events": "^4.0.1" }, "peerDependencies": { "algoliasearch": ">= 3.1 < 6" } }, "sha512-knYRACqLH9UpeR+WRUrBzBFR2ulGuOjI2b525k4PNeqZxeFMHJE7YcL7s6Jh12Qza0rtHqZdgHMfeuaaAkf4wA=="], + "algoliasearch-helper": ["algoliasearch-helper@3.26.0", "", { "dependencies": { "@algolia/events": "^4.0.1" }, "peerDependencies": { "algoliasearch": ">= 3.1 < 6" } }, "sha512-Rv2x3GXleQ3ygwhkhJubhhYGsICmShLAiqtUuJTUkr9uOCOXyF2E71LVT4XDnVffbknv8XgScP4U0Oxtgm+hIw=="], "ansi-align": ["ansi-align@3.0.1", "", { "dependencies": { "string-width": "^4.1.0" } }, "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w=="], @@ -1180,7 +1306,7 @@ "ansi-html-community": ["ansi-html-community@0.0.8", "", { "bin": { "ansi-html": "bin/ansi-html" } }, "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="], - "ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + "ansi-regex": ["ansi-regex@6.1.0", "", {}, "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="], "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], @@ -1188,43 +1314,29 @@ "anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="], - "aproba": ["aproba@2.0.0", "", {}, "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="], - - "are-we-there-yet": ["are-we-there-yet@2.0.0", "", { "dependencies": { "delegates": "^1.0.0", "readable-stream": "^3.6.0" } }, "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw=="], - "arg": ["arg@4.1.0", "", {}, "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg=="], "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], - "aria-hidden": ["aria-hidden@1.2.4", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A=="], - - "array-buffer-byte-length": ["array-buffer-byte-length@1.0.1", "", { "dependencies": { "call-bind": "^1.0.5", "is-array-buffer": "^3.0.4" } }, "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg=="], + "aria-hidden": ["aria-hidden@1.2.6", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA=="], "array-flatten": ["array-flatten@1.1.1", "", {}, "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="], - "array-includes": ["array-includes@3.1.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.4", "is-string": "^1.0.7" } }, "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ=="], - "array-union": ["array-union@2.1.0", "", {}, "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="], - "array.prototype.findlast": ["array.prototype.findlast@1.2.5", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-shim-unscopables": "^1.0.2" } }, "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ=="], - - "array.prototype.flat": ["array.prototype.flat@1.3.2", "", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" } }, "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA=="], - - "array.prototype.flatmap": ["array.prototype.flatmap@1.3.3", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-shim-unscopables": "^1.0.2" } }, "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg=="], - - "array.prototype.tosorted": ["array.prototype.tosorted@1.1.4", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.3", "es-errors": "^1.3.0", "es-shim-unscopables": "^1.0.2" } }, "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA=="], - - "arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.3", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.5", "define-properties": "^1.2.1", "es-abstract": "^1.22.3", "es-errors": "^1.2.1", "get-intrinsic": "^1.2.3", "is-array-buffer": "^3.0.4", "is-shared-array-buffer": "^1.0.2" } }, "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A=="], - - "astring": ["astring@1.8.6", "", { "bin": { "astring": "bin/astring" } }, "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg=="], + "astring": ["astring@1.9.0", "", { "bin": { "astring": "bin/astring" } }, "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg=="], "async-listen": ["async-listen@1.2.0", "", {}, "sha512-CcEtRh/oc9Jc4uWeUwdpG/+Mb2YUHKmdaTf0gUr7Wa+bfp4xx70HOb3RuSTJMvqKNB1TkdTfjLdrcz2X4rkkZA=="], + "async-retry": ["async-retry@1.3.3", "", { "dependencies": { "retry": "0.13.1" } }, "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw=="], + "async-sema": ["async-sema@3.1.1", "", {}, "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg=="], + "asynckit": ["asynckit@0.4.0", "", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="], + "autoprefixer": ["autoprefixer@10.4.21", "", { "dependencies": { "browserslist": "^4.24.4", "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ=="], - "available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="], + "axios": ["axios@1.10.0", "", { "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw=="], "babel-loader": ["babel-loader@9.2.1", "", { "dependencies": { "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" }, "peerDependencies": { "@babel/core": "^7.12.0", "webpack": ">=5" } }, "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA=="], @@ -1232,11 +1344,11 @@ "babel-plugin-macros": ["babel-plugin-macros@3.1.0", "", { "dependencies": { "@babel/runtime": "^7.12.5", "cosmiconfig": "^7.0.0", "resolve": "^1.19.0" } }, "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg=="], - "babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.11", "", { "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q=="], + "babel-plugin-polyfill-corejs2": ["babel-plugin-polyfill-corejs2@0.4.13", "", { "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.6.4", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g=="], - "babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.10.6", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.2", "core-js-compat": "^3.38.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA=="], + "babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.11.1", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3", "core-js-compat": "^3.40.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ=="], - "babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@0.6.2", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg=="], + "babel-plugin-polyfill-regenerator": ["babel-plugin-polyfill-regenerator@0.6.4", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.4" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw=="], "bail": ["bail@2.0.2", "", {}, "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="], @@ -1252,24 +1364,26 @@ "bindings": ["bindings@1.5.0", "", { "dependencies": { "file-uri-to-path": "1.0.0" } }, "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="], - "body-parser": ["body-parser@1.20.2", "", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" } }, "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA=="], + "body-parser": ["body-parser@1.20.3", "", { "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" } }, "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g=="], - "bonjour-service": ["bonjour-service@1.2.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw=="], + "bonjour-service": ["bonjour-service@1.3.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA=="], "boolbase": ["boolbase@1.0.0", "", {}, "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="], "boxen": ["boxen@6.2.1", "", { "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^6.2.0", "chalk": "^4.1.2", "cli-boxes": "^3.0.0", "string-width": "^5.0.1", "type-fest": "^2.5.0", "widest-line": "^4.0.1", "wrap-ansi": "^8.0.1" } }, "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw=="], - "brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + "brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], - "browserslist": ["browserslist@4.24.4", "", { "dependencies": { "caniuse-lite": "^1.0.30001688", "electron-to-chromium": "^1.5.73", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" } }, "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="], + "browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], "buffer-crc32": ["buffer-crc32@0.2.13", "", {}, "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="], "buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="], + "bufferutil": ["bufferutil@4.0.9", "", { "dependencies": { "node-gyp-build": "^4.3.0" } }, "sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw=="], + "built-in-math-eval": ["built-in-math-eval@0.3.0", "", { "dependencies": { "math-codegen": "^0.3.5" } }, "sha512-5XD5cujru60ooKJ4sGZqoH5v2Xvgw7ezV54gJX/OnPkgDKoH3BnlMEi8xW6hl8xaEjxKHebgrsawroeZnGwIMA=="], "bytes": ["bytes@3.0.0", "", {}, "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="], @@ -1278,7 +1392,7 @@ "cacheable-request": ["cacheable-request@10.2.14", "", { "dependencies": { "@types/http-cache-semantics": "^4.0.2", "get-stream": "^6.0.1", "http-cache-semantics": "^4.1.1", "keyv": "^4.5.3", "mimic-response": "^4.0.0", "normalize-url": "^8.0.0", "responselike": "^3.0.0" } }, "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ=="], - "call-bind": ["call-bind@1.0.7", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.1" } }, "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w=="], + "call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="], @@ -1304,7 +1418,7 @@ "caniuse-api": ["caniuse-api@3.0.0", "", { "dependencies": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" } }, "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="], - "caniuse-lite": ["caniuse-lite@1.0.30001700", "", {}, "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ=="], + "caniuse-lite": ["caniuse-lite@1.0.30001724", "", {}, "sha512-WqJo7p0TbHDOythNTqYujmaJTvtYRZrjpP8TCvH6Vb9CYJerJNKamKzIWOM4BkQatWj9H2lYulpdAQNBe7QhNA=="], "ccount": ["ccount@2.0.1", "", {}, "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="], @@ -1328,9 +1442,9 @@ "chevrotain-allstar": ["chevrotain-allstar@0.3.1", "", { "dependencies": { "lodash-es": "^4.17.21" }, "peerDependencies": { "chevrotain": "^11.0.0" } }, "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw=="], - "chokidar": ["chokidar@3.3.1", "", { "dependencies": { "anymatch": "~3.1.1", "braces": "~3.0.2", "glob-parent": "~5.1.0", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.3.0" }, "optionalDependencies": { "fsevents": "~2.1.2" } }, "sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg=="], + "chokidar": ["chokidar@4.0.0", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-mxIojEAQcuEvT/lyXq+jf/3cO/KoA6z4CeNDGGevTybECPOMFCnQy3OPahluUkbqgPNGw5Bi78UC7Po6Lhy+NA=="], - "chownr": ["chownr@1.1.4", "", {}, "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="], + "chownr": ["chownr@2.0.0", "", {}, "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="], "chrome-trace-event": ["chrome-trace-event@1.0.4", "", {}, "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ=="], @@ -1352,8 +1466,6 @@ "client-only": ["client-only@0.0.1", "", {}, "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="], - "cliui": ["cliui@8.0.1", "", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="], - "clone-deep": ["clone-deep@4.0.1", "", { "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", "shallow-clone": "^3.0.0" } }, "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ=="], "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], @@ -1368,8 +1480,6 @@ "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], - "color-support": ["color-support@1.1.3", "", { "bin": { "color-support": "bin.js" } }, "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="], - "color2k": ["color2k@2.0.3", "", {}, "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog=="], "colord": ["colord@2.9.3", "", {}, "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="], @@ -1378,11 +1488,13 @@ "combine-promises": ["combine-promises@1.2.0", "", {}, "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ=="], + "combined-stream": ["combined-stream@1.0.8", "", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="], + "comma-separated-tokens": ["comma-separated-tokens@2.0.3", "", {}, "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg=="], "command-exists": ["command-exists@1.2.9", "", {}, "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="], - "commander": ["commander@5.1.0", "", {}, "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="], + "commander": ["commander@14.0.0", "", {}, "sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA=="], "common-path-prefix": ["common-path-prefix@3.0.0", "", {}, "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="], @@ -1390,7 +1502,7 @@ "compressible": ["compressible@2.0.18", "", { "dependencies": { "mime-db": ">= 1.43.0 < 2" } }, "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="], - "compression": ["compression@1.7.4", "", { "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", "compressible": "~2.0.16", "debug": "2.6.9", "on-headers": "~1.0.2", "safe-buffer": "5.1.2", "vary": "~1.1.2" } }, "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="], + "compression": ["compression@1.8.0", "", { "dependencies": { "bytes": "3.1.2", "compressible": "~2.0.18", "debug": "2.6.9", "negotiator": "~0.6.4", "on-headers": "~1.0.2", "safe-buffer": "5.2.1", "vary": "~1.1.2" } }, "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA=="], "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], @@ -1404,9 +1516,7 @@ "connect-history-api-fallback": ["connect-history-api-fallback@2.0.0", "", {}, "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA=="], - "consola": ["consola@3.4.0", "", {}, "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA=="], - - "console-control-strings": ["console-control-strings@1.1.0", "", {}, "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="], + "consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], "content-disposition": ["content-disposition@0.5.2", "", {}, "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA=="], @@ -1416,7 +1526,7 @@ "convert-source-map": ["convert-source-map@1.9.0", "", {}, "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="], - "cookie": ["cookie@0.6.0", "", {}, "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw=="], + "cookie": ["cookie@0.7.1", "", {}, "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w=="], "cookie-signature": ["cookie-signature@1.0.6", "", {}, "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="], @@ -1424,11 +1534,11 @@ "copy-webpack-plugin": ["copy-webpack-plugin@11.0.0", "", { "dependencies": { "fast-glob": "^3.2.11", "glob-parent": "^6.0.1", "globby": "^13.1.1", "normalize-path": "^3.0.0", "schema-utils": "^4.0.0", "serialize-javascript": "^6.0.0" }, "peerDependencies": { "webpack": "^5.1.0" } }, "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ=="], - "core-js": ["core-js@3.42.0", "", {}, "sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g=="], + "core-js": ["core-js@3.43.0", "", {}, "sha512-N6wEbTTZSYOY2rYAn85CuvWWkCK6QweMn7/4Nr3w+gDBeBhk/x4EJeY6FPo4QzDoJZxVTv8U7CMvgWk6pOHHqA=="], - "core-js-compat": ["core-js-compat@3.40.0", "", { "dependencies": { "browserslist": "^4.24.3" } }, "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ=="], + "core-js-compat": ["core-js-compat@3.43.0", "", { "dependencies": { "browserslist": "^4.25.0" } }, "sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA=="], - "core-js-pure": ["core-js-pure@3.37.1", "", {}, "sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA=="], + "core-js-pure": ["core-js-pure@3.43.0", "", {}, "sha512-i/AgxU2+A+BbJdMxh3v7/vxi2SbFqxiFmg6VsDwYB4jkucrd1BZNA9a9gphC0fYMG5IBSgQcbQnk865VCLe7xA=="], "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="], @@ -1438,7 +1548,9 @@ "create-require": ["create-require@1.1.1", "", {}, "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="], - "cross-spawn": ["cross-spawn@7.0.3", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="], + "cross-inspect": ["cross-inspect@1.0.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A=="], + + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], "crypto-random-string": ["crypto-random-string@4.0.0", "", { "dependencies": { "type-fest": "^1.0.1" } }, "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="], @@ -1464,7 +1576,7 @@ "css-what": ["css-what@6.1.0", "", {}, "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="], - "cssdb": ["cssdb@8.3.0", "", {}, "sha512-c7bmItIg38DgGjSwDPZOYF/2o0QU/sSgkWOMyl8votOfgFuyiFKWPesmCGEsrGLxEA9uL540cp8LdaGEjUGsZQ=="], + "cssdb": ["cssdb@8.3.1", "", {}, "sha512-XnDRQMXucLueX92yDe0LPKupXetWoFOgawr4O4X41l5TltgK2NVbJJVDnnOywDYfW1sTJ28AcXGKOqdRKwCcmQ=="], "cssesc": ["cssesc@3.0.0", "", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], @@ -1480,7 +1592,7 @@ "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], - "cytoscape": ["cytoscape@3.30.0", "", {}, "sha512-l590mjTHT6/Cbxp13dGPC2Y7VXdgc+rUeF8AnF/JPzhjNevbDJfObnJgaSjlldOgBQZbue+X6IUZ7r5GAgvauQ=="], + "cytoscape": ["cytoscape@3.32.0", "", {}, "sha512-5JHBC9n75kz5851jeklCPmZWcg3hUe6sjqJvyk3+hVqFaKcHwHgxsjeN1yLmggoUc6STbtm9/NQyabQehfjvWQ=="], "cytoscape-cose-bilkent": ["cytoscape-cose-bilkent@4.1.0", "", { "dependencies": { "cose-base": "^1.0.0" }, "peerDependencies": { "cytoscape": "^3.2.0" } }, "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ=="], @@ -1552,21 +1664,19 @@ "dagre-d3-es": ["dagre-d3-es@7.0.11", "", { "dependencies": { "d3": "^7.9.0", "lodash-es": "^4.17.21" } }, "sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw=="], - "data-view-buffer": ["data-view-buffer@1.0.1", "", { "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA=="], + "data-uri-to-buffer": ["data-uri-to-buffer@4.0.1", "", {}, "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A=="], - "data-view-byte-length": ["data-view-byte-length@1.0.1", "", { "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ=="], - - "data-view-byte-offset": ["data-view-byte-offset@1.0.0", "", { "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA=="], + "dataloader": ["dataloader@2.2.3", "", {}, "sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA=="], "dayjs": ["dayjs@1.11.13", "", {}, "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="], "debounce": ["debounce@1.2.1", "", {}, "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug=="], - "debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="], "decimal.js-light": ["decimal.js-light@2.5.1", "", {}, "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="], - "decode-named-character-reference": ["decode-named-character-reference@1.0.2", "", { "dependencies": { "character-entities": "^2.0.0" } }, "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg=="], + "decode-named-character-reference": ["decode-named-character-reference@1.2.0", "", { "dependencies": { "character-entities": "^2.0.0" } }, "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q=="], "decompress-response": ["decompress-response@6.0.0", "", { "dependencies": { "mimic-response": "^3.1.0" } }, "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="], @@ -1588,7 +1698,7 @@ "delaunator": ["delaunator@5.0.1", "", { "dependencies": { "robust-predicates": "^3.0.2" } }, "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw=="], - "delegates": ["delegates@1.0.0", "", {}, "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="], + "delayed-stream": ["delayed-stream@1.0.0", "", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="], "depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="], @@ -1596,7 +1706,7 @@ "destroy": ["destroy@1.2.0", "", {}, "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="], - "detect-libc": ["detect-libc@2.0.3", "", {}, "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="], + "detect-libc": ["detect-libc@2.0.4", "", {}, "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="], "detect-node": ["detect-node@2.1.0", "", {}, "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="], @@ -1612,8 +1722,6 @@ "dns-packet": ["dns-packet@5.6.1", "", { "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" } }, "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw=="], - "doctrine": ["doctrine@3.0.0", "", { "dependencies": { "esutils": "^2.0.2" } }, "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="], - "docusaurus-theme-github-codeblock": ["docusaurus-theme-github-codeblock@2.0.2", "", { "dependencies": { "@docusaurus/types": "^3.0.0" } }, "sha512-H2WoQPWOLjGZO6KS58Gsd+eUVjTFJemkReiSSu9chqokyLc/3Ih3+zPRYfuEZ/HsDvSMIarf7CNcp+Vt+/G+ig=="], "dom-converter": ["dom-converter@0.2.0", "", { "dependencies": { "utila": "~0.4" } }, "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="], @@ -1628,7 +1736,7 @@ "dompurify": ["dompurify@3.2.6", "", { "optionalDependencies": { "@types/trusted-types": "^2.0.7" } }, "sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ=="], - "domutils": ["domutils@3.1.0", "", { "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3" } }, "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA=="], + "domutils": ["domutils@3.2.2", "", { "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3" } }, "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw=="], "dot-case": ["dot-case@3.0.4", "", { "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="], @@ -1636,6 +1744,8 @@ "double-bits": ["double-bits@1.1.1", "", {}, "sha512-BCLEIBq0O/DWoA7BsCu/R+RP0ZXiowP8BhtJT3qeuuQEBpnS8LK/Wo6UTJQv6v8mK1fj8n90YziHLwGdM5whSg=="], + "dset": ["dset@3.1.4", "", {}, "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA=="], + "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], "duplexer": ["duplexer@0.1.2", "", {}, "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="], @@ -1646,7 +1756,7 @@ "ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="], - "electron-to-chromium": ["electron-to-chromium@1.5.101", "", {}, "sha512-L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA=="], + "electron-to-chromium": ["electron-to-chromium@1.5.171", "", {}, "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ=="], "emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], @@ -1656,9 +1766,9 @@ "emojis-list": ["emojis-list@3.0.0", "", {}, "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="], - "emoticon": ["emoticon@4.0.1", "", {}, "sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw=="], + "emoticon": ["emoticon@4.1.0", "", {}, "sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ=="], - "encodeurl": ["encodeurl@1.0.2", "", {}, "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="], + "encodeurl": ["encodeurl@2.0.0", "", {}, "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="], "end-of-stream": ["end-of-stream@1.1.0", "", { "dependencies": { "once": "~1.3.0" } }, "sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ=="], @@ -1668,25 +1778,23 @@ "environment": ["environment@1.1.0", "", {}, "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q=="], - "error-ex": ["error-ex@1.3.2", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="], + "err-code": ["err-code@2.0.3", "", {}, "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="], - "es-abstract": ["es-abstract@1.23.3", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "arraybuffer.prototype.slice": "^1.0.3", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "data-view-buffer": "^1.0.1", "data-view-byte-length": "^1.0.1", "data-view-byte-offset": "^1.0.0", "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.6", "get-intrinsic": "^1.2.4", "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2", "has-proto": "^1.0.3", "has-symbols": "^1.0.3", "hasown": "^2.0.2", "internal-slot": "^1.0.7", "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", "is-data-view": "^1.0.1", "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", "object-inspect": "^1.13.1", "object-keys": "^1.1.1", "object.assign": "^4.1.5", "regexp.prototype.flags": "^1.5.2", "safe-array-concat": "^1.1.2", "safe-regex-test": "^1.0.3", "string.prototype.trim": "^1.2.9", "string.prototype.trimend": "^1.0.8", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.2", "typed-array-byte-length": "^1.0.1", "typed-array-byte-offset": "^1.0.2", "typed-array-length": "^1.0.6", "unbox-primitive": "^1.0.2", "which-typed-array": "^1.1.15" } }, "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A=="], + "error-ex": ["error-ex@1.3.2", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="], - "es-define-property": ["es-define-property@1.0.0", "", { "dependencies": { "get-intrinsic": "^1.2.4" } }, "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="], + "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="], - "es-iterator-helpers": ["es-iterator-helpers@1.2.1", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-set-tostringtag": "^2.0.3", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.6", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "iterator.prototype": "^1.1.4", "safe-array-concat": "^1.1.3" } }, "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w=="], - - "es-module-lexer": ["es-module-lexer@1.5.4", "", {}, "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw=="], + "es-module-lexer": ["es-module-lexer@1.4.1", "", {}, "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w=="], - "es-object-atoms": ["es-object-atoms@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw=="], + "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - "es-set-tostringtag": ["es-set-tostringtag@2.0.3", "", { "dependencies": { "get-intrinsic": "^1.2.4", "has-tostringtag": "^1.0.2", "hasown": "^2.0.1" } }, "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ=="], + "es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - "es-shim-unscopables": ["es-shim-unscopables@1.0.2", "", { "dependencies": { "hasown": "^2.0.0" } }, "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw=="], + "esast-util-from-estree": ["esast-util-from-estree@2.0.0", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "devlop": "^1.0.0", "estree-util-visit": "^2.0.0", "unist-util-position-from-estree": "^2.0.0" } }, "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ=="], - "es-to-primitive": ["es-to-primitive@1.2.1", "", { "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }, "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="], + "esast-util-from-js": ["esast-util-from-js@2.0.1", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "acorn": "^8.0.0", "esast-util-from-estree": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw=="], "esbuild": ["esbuild@0.14.47", "", { "optionalDependencies": { "esbuild-android-64": "0.14.47", "esbuild-android-arm64": "0.14.47", "esbuild-darwin-64": "0.14.47", "esbuild-darwin-arm64": "0.14.47", "esbuild-freebsd-64": "0.14.47", "esbuild-freebsd-arm64": "0.14.47", "esbuild-linux-32": "0.14.47", "esbuild-linux-64": "0.14.47", "esbuild-linux-arm": "0.14.47", "esbuild-linux-arm64": "0.14.47", "esbuild-linux-mips64le": "0.14.47", "esbuild-linux-ppc64le": "0.14.47", "esbuild-linux-riscv64": "0.14.47", "esbuild-linux-s390x": "0.14.47", "esbuild-netbsd-64": "0.14.47", "esbuild-openbsd-64": "0.14.47", "esbuild-sunos-64": "0.14.47", "esbuild-windows-32": "0.14.47", "esbuild-windows-64": "0.14.47", "esbuild-windows-arm64": "0.14.47" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA=="], @@ -1730,7 +1838,7 @@ "esbuild-windows-arm64": ["esbuild-windows-arm64@0.14.47", "", { "os": "win32", "cpu": "arm64" }, "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ=="], - "escalade": ["escalade@3.1.2", "", {}, "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA=="], + "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], "escape-goat": ["escape-goat@4.0.0", "", {}, "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg=="], @@ -1738,23 +1846,21 @@ "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], - "eslint": ["eslint@8.57.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", "@eslint/js": "8.57.1", "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.2", "eslint-visitor-keys": "^3.4.3", "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" } }, "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA=="], + "eslint": ["eslint@9.29.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.20.1", "@eslint/config-helpers": "^0.2.1", "@eslint/core": "^0.14.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.29.0", "@eslint/plugin-kit": "^0.3.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ=="], - "eslint-mdx": ["eslint-mdx@3.4.2", "", { "dependencies": { "acorn": "^8.14.1", "acorn-jsx": "^5.3.2", "espree": "^9.6.1 || ^10.3.0", "estree-util-visit": "^2.0.0", "remark-mdx": "^3.1.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "synckit": "^0.11.4", "tslib": "^2.8.1", "unified": "^11.0.5", "unified-engine": "^11.2.2", "unist-util-visit": "^5.0.0", "uvu": "^0.5.6", "vfile": "^6.0.3" }, "peerDependencies": { "eslint": ">=8.0.0", "remark-lint-file-extension": "*" }, "optionalPeers": ["remark-lint-file-extension"] }, "sha512-NYNGuBClNzYzTJWbPzeYSh/eCl5m4BrX1MayNuGuvxn+cItTdNirE+ykos9q1CkYhHj+ZgQz6W+6EIaHMp7/jQ=="], + "eslint-mdx": ["eslint-mdx@3.5.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "espree": "^9.6.1 || ^10.4.0", "estree-util-visit": "^2.0.0", "remark-mdx": "^3.1.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "synckit": "^0.11.8", "unified": "^11.0.5", "unified-engine": "^11.2.2", "unist-util-visit": "^5.0.0", "uvu": "^0.5.6", "vfile": "^6.0.3" }, "peerDependencies": { "eslint": ">=8.0.0", "remark-lint-file-extension": "*" }, "optionalPeers": ["remark-lint-file-extension"] }, "sha512-3iFgW201z26bnFJelrrG2D8YXx1jk9JzXBp2pN32EMIpg47ZBM20mkdneLXn2CBKp27ZMHTygEA1DJNpqMu4Pg=="], - "eslint-plugin-mdx": ["eslint-plugin-mdx@3.4.2", "", { "dependencies": { "eslint-mdx": "^3.4.2", "mdast-util-from-markdown": "^2.0.2", "mdast-util-mdx": "^3.0.0", "micromark-extension-mdxjs": "^3.0.0", "remark-mdx": "^3.1.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "synckit": "^0.11.4", "tslib": "^2.8.1", "unified": "^11.0.5", "vfile": "^6.0.3" }, "peerDependencies": { "eslint": ">=8.0.0" } }, "sha512-deXcJ4hTLkQ7F2JLto74UXeDkZYXu1Xtgvy0ZHlJ4CNwCYAZier3qNvTMBwE9VEnowxN+TgB18OhMLYyaR9hXA=="], + "eslint-plugin-mdx": ["eslint-plugin-mdx@3.5.0", "", { "dependencies": { "eslint-mdx": "^3.5.0", "mdast-util-from-markdown": "^2.0.2", "mdast-util-mdx": "^3.0.0", "micromark-extension-mdxjs": "^3.0.0", "remark-mdx": "^3.1.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "synckit": "^0.11.8", "unified": "^11.0.5", "vfile": "^6.0.3" }, "peerDependencies": { "eslint": ">=8.0.0" } }, "sha512-pxXH/a2eH3Pxkmp1LSTqFfizIF1ZEUJjEm99gy+k/c+rK+SITEHg04LbPZBqG0T3Z4x0tPtY7zm9miqypcPxuw=="], - "eslint-plugin-react": ["eslint-plugin-react@7.37.5", "", { "dependencies": { "array-includes": "^3.1.8", "array.prototype.findlast": "^1.2.5", "array.prototype.flatmap": "^1.3.3", "array.prototype.tosorted": "^1.1.4", "doctrine": "^2.1.0", "es-iterator-helpers": "^1.2.1", "estraverse": "^5.3.0", "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", "object.entries": "^1.1.9", "object.fromentries": "^2.0.8", "object.values": "^1.2.1", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.5", "semver": "^6.3.1", "string.prototype.matchall": "^4.0.12", "string.prototype.repeat": "^1.0.0" }, "peerDependencies": { "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA=="], + "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="], - "eslint-scope": ["eslint-scope@7.2.2", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg=="], + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="], - "eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], - - "espree": ["espree@9.6.1", "", { "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" } }, "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ=="], + "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="], "esprima": ["esprima@4.0.1", "", { "bin": { "esparse": "./bin/esparse.js", "esvalidate": "./bin/esvalidate.js" } }, "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="], - "esquery": ["esquery@1.5.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg=="], + "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], @@ -1766,9 +1872,11 @@ "estree-util-is-identifier-name": ["estree-util-is-identifier-name@3.0.0", "", {}, "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg=="], + "estree-util-scope": ["estree-util-scope@1.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0" } }, "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ=="], + "estree-util-to-js": ["estree-util-to-js@2.0.0", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "astring": "^1.8.0", "source-map": "^0.7.0" } }, "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg=="], - "estree-util-value-to-estree": ["estree-util-value-to-estree@3.1.2", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag=="], + "estree-util-value-to-estree": ["estree-util-value-to-estree@3.4.0", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-Zlp+gxis+gCfK12d3Srl2PdX2ybsEA8ZYy6vQGVQTNNYLEGRQQ56XB64bjemN8kxIKXP1nC9ip4Z+ILy9LGzvQ=="], "estree-util-visit": ["estree-util-visit@2.0.0", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/unist": "^3.0.0" } }, "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww=="], @@ -1788,11 +1896,11 @@ "events-intercept": ["events-intercept@2.0.0", "", {}, "sha512-blk1va0zol9QOrdZt0rFXo5KMkNPVSp92Eju/Qz8THwKWKRKeE0T8Br/1aW6+Edkyq9xHYgYxn2QtOnUKPUp+Q=="], - "execa": ["execa@8.0.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" } }, "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg=="], + "execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="], - "express": ["express@4.19.2", "", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }, "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q=="], + "express": ["express@4.21.2", "", { "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.7.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.12", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.19.0", "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }, "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA=="], - "exsolve": ["exsolve@1.0.5", "", {}, "sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg=="], + "exsolve": ["exsolve@1.0.7", "", {}, "sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw=="], "extend": ["extend@3.0.2", "", {}, "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="], @@ -1802,13 +1910,15 @@ "fast-equals": ["fast-equals@5.2.2", "", {}, "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw=="], - "fast-glob": ["fast-glob@3.3.2", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow=="], + "fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="], "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], - "fastq": ["fastq@1.17.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w=="], + "fast-uri": ["fast-uri@3.0.6", "", {}, "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="], + + "fastq": ["fastq@1.19.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="], "fault": ["fault@2.0.1", "", { "dependencies": { "format": "^0.2.0" } }, "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ=="], @@ -1818,11 +1928,13 @@ "feed": ["feed@4.2.2", "", { "dependencies": { "xml-js": "^1.6.11" } }, "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ=="], + "fetch-blob": ["fetch-blob@3.2.0", "", { "dependencies": { "node-domexception": "^1.0.0", "web-streams-polyfill": "^3.0.3" } }, "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ=="], + "fflate": ["fflate@0.8.2", "", {}, "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="], "figures": ["figures@3.2.0", "", { "dependencies": { "escape-string-regexp": "^1.0.5" } }, "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="], - "file-entry-cache": ["file-entry-cache@6.0.1", "", { "dependencies": { "flat-cache": "^3.0.4" } }, "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="], + "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], "file-loader": ["file-loader@6.2.0", "", { "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" }, "peerDependencies": { "webpack": "^4.0.0 || ^5.0.0" } }, "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw=="], @@ -1832,7 +1944,7 @@ "fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], - "finalhandler": ["finalhandler@1.2.0", "", { "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }, "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg=="], + "finalhandler": ["finalhandler@1.3.1", "", { "dependencies": { "debug": "2.6.9", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }, "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ=="], "find-cache-dir": ["find-cache-dir@4.0.0", "", { "dependencies": { "common-path-prefix": "^3.0.0", "pkg-dir": "^7.0.0" } }, "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg=="], @@ -1842,20 +1954,22 @@ "flat": ["flat@5.0.2", "", { "bin": { "flat": "cli.js" } }, "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="], - "flat-cache": ["flat-cache@3.2.0", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" } }, "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw=="], + "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], - "flatted": ["flatted@3.3.1", "", {}, "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw=="], + "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], - "follow-redirects": ["follow-redirects@1.15.6", "", {}, "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA=="], + "follow-redirects": ["follow-redirects@1.15.9", "", {}, "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="], - "for-each": ["for-each@0.3.3", "", { "dependencies": { "is-callable": "^1.1.3" } }, "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="], + "foreground-child": ["foreground-child@3.3.1", "", { "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" } }, "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="], - "foreground-child": ["foreground-child@3.2.1", "", { "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" } }, "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA=="], + "form-data": ["form-data@4.0.3", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "hasown": "^2.0.2", "mime-types": "^2.1.12" } }, "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA=="], "form-data-encoder": ["form-data-encoder@2.1.4", "", {}, "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="], "format": ["format@0.2.2", "", {}, "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww=="], + "formdata-polyfill": ["formdata-polyfill@4.0.10", "", { "dependencies": { "fetch-blob": "^3.1.2" } }, "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g=="], + "forwarded": ["forwarded@0.2.0", "", {}, "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="], "fraction.js": ["fraction.js@4.3.7", "", {}, "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="], @@ -1866,33 +1980,27 @@ "fresh": ["fresh@0.5.2", "", {}, "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="], - "fs-extra": ["fs-extra@11.2.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw=="], + "fs-extra": ["fs-extra@11.3.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew=="], - "fs-minipass": ["fs-minipass@1.2.7", "", { "dependencies": { "minipass": "^2.6.0" } }, "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA=="], + "fs-minipass": ["fs-minipass@2.1.0", "", { "dependencies": { "minipass": "^3.0.0" } }, "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="], "fs-monkey": ["fs-monkey@1.0.6", "", {}, "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg=="], "fs.realpath": ["fs.realpath@1.0.0", "", {}, "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="], - "fsevents": ["fsevents@2.1.3", "", { "os": "darwin" }, "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="], + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], "function-plot": ["function-plot@1.25.1", "", { "dependencies": { "built-in-math-eval": "^0.3.0", "d3-axis": "^3.0.0", "d3-color": "^3.1.0", "d3-format": "^3.1.0", "d3-interpolate": "^3.0.1", "d3-scale": "^4.0.2", "d3-selection": "^3.0.0", "d3-shape": "^3.1.0", "d3-zoom": "^3.0.0", "events": "^3.3.0", "interval-arithmetic-eval": "^0.5.1" } }, "sha512-KwofZ8of5SetEQwGDW6sb+Pz6Sn5/+pMs7kFIF6JtKZmgqJmxrPjFzUx1ZUQ48Y8wVu3AJ8UXH5D59+1H3SJ3A=="], - "function.prototype.name": ["function.prototype.name@1.1.6", "", { "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "functions-have-names": "^1.2.3" } }, "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg=="], - - "functions-have-names": ["functions-have-names@1.2.3", "", {}, "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="], - - "gauge": ["gauge@3.0.2", "", { "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.2", "console-control-strings": "^1.0.0", "has-unicode": "^2.0.1", "object-assign": "^4.1.1", "signal-exit": "^3.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1", "wide-align": "^1.1.2" } }, "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q=="], - "generic-pool": ["generic-pool@3.4.2", "", {}, "sha512-H7cUpwCQSiJmAHM4c/aFu6fUfrhWXW1ncyh8ftxEPMu6AiYkHw9K8br720TGPZJbk5eOH2bynjZD1yPvdDAmag=="], "gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="], "get-east-asian-width": ["get-east-asian-width@1.3.0", "", {}, "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ=="], - "get-intrinsic": ["get-intrinsic@1.2.4", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" } }, "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ=="], + "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], "get-nonce": ["get-nonce@1.0.1", "", {}, "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q=="], @@ -1900,13 +2008,11 @@ "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], - "get-stream": ["get-stream@8.0.1", "", {}, "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA=="], - - "get-symbol-description": ["get-symbol-description@1.0.2", "", { "dependencies": { "call-bind": "^1.0.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4" } }, "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg=="], + "get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], "github-slugger": ["github-slugger@1.5.0", "", {}, "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw=="], - "glob": ["glob@10.4.2", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w=="], + "glob": ["glob@10.4.5", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="], "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], @@ -1914,9 +2020,7 @@ "global-dirs": ["global-dirs@3.0.1", "", { "dependencies": { "ini": "2.0.0" } }, "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA=="], - "globals": ["globals@13.24.0", "", { "dependencies": { "type-fest": "^0.20.2" } }, "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ=="], - - "globalthis": ["globalthis@1.0.4", "", { "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" } }, "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ=="], + "globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], "globby": ["globby@11.1.0", "", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="], @@ -1926,7 +2030,11 @@ "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], - "graphemer": ["graphemer@1.4.0", "", {}, "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="], + "graphql": ["graphql@16.11.0", "", {}, "sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw=="], + + "graphql-config": ["graphql-config@5.1.5", "", { "dependencies": { "@graphql-tools/graphql-file-loader": "^8.0.0", "@graphql-tools/json-file-loader": "^8.0.0", "@graphql-tools/load": "^8.1.0", "@graphql-tools/merge": "^9.0.0", "@graphql-tools/url-loader": "^8.0.0", "@graphql-tools/utils": "^10.0.0", "cosmiconfig": "^8.1.0", "jiti": "^2.0.0", "minimatch": "^9.0.5", "string-env-interpolation": "^1.0.1", "tslib": "^2.4.0" }, "peerDependencies": { "cosmiconfig-toml-loader": "^1.0.0", "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, "optionalPeers": ["cosmiconfig-toml-loader"] }, "sha512-mG2LL1HccpU8qg5ajLROgdsBzx/o2M6kgI3uAmoaXiSH9PCUbtIyLomLqUtCFaAeG2YCFsl0M5cfQ9rKmDoMVA=="], + + "graphql-ws": ["graphql-ws@6.0.5", "", { "peerDependencies": { "@fastify/websocket": "^10 || ^11", "crossws": "~0.3", "graphql": "^15.10.1 || ^16", "uWebSockets.js": "^20", "ws": "^8" }, "optionalPeers": ["@fastify/websocket", "crossws", "uWebSockets.js", "ws"] }, "sha512-HzYw057ch0hx2gZjkbgk1pur4kAtgljlWRP+Gccudqm3BRrTpExjWCQ9OHdIsq47Y6lHL++1lTvuQHhgRRcevw=="], "gray-matter": ["gray-matter@4.0.3", "", { "dependencies": { "js-yaml": "^3.13.1", "kind-of": "^6.0.2", "section-matter": "^1.0.0", "strip-bom-string": "^1.0.0" } }, "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q=="], @@ -1936,45 +2044,39 @@ "handle-thing": ["handle-thing@2.0.1", "", {}, "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="], - "has-bigints": ["has-bigints@1.0.2", "", {}, "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="], - "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], "has-property-descriptors": ["has-property-descriptors@1.0.2", "", { "dependencies": { "es-define-property": "^1.0.0" } }, "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="], - "has-proto": ["has-proto@1.2.0", "", { "dependencies": { "dunder-proto": "^1.0.0" } }, "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ=="], - "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="], "has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="], - "has-unicode": ["has-unicode@2.0.1", "", {}, "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="], - "has-yarn": ["has-yarn@3.0.0", "", {}, "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA=="], "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], "hast-to-hyperscript": ["hast-to-hyperscript@9.0.1", "", { "dependencies": { "@types/unist": "^2.0.3", "comma-separated-tokens": "^1.0.0", "property-information": "^5.3.0", "space-separated-tokens": "^1.0.0", "style-to-object": "^0.3.0", "unist-util-is": "^4.0.0", "web-namespaces": "^1.0.0" } }, "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA=="], - "hast-util-from-dom": ["hast-util-from-dom@5.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "hastscript": "^8.0.0", "web-namespaces": "^2.0.0" } }, "sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg=="], + "hast-util-from-dom": ["hast-util-from-dom@5.0.1", "", { "dependencies": { "@types/hast": "^3.0.0", "hastscript": "^9.0.0", "web-namespaces": "^2.0.0" } }, "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q=="], - "hast-util-from-html": ["hast-util-from-html@2.0.1", "", { "dependencies": { "@types/hast": "^3.0.0", "devlop": "^1.1.0", "hast-util-from-parse5": "^8.0.0", "parse5": "^7.0.0", "vfile": "^6.0.0", "vfile-message": "^4.0.0" } }, "sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g=="], + "hast-util-from-html": ["hast-util-from-html@2.0.3", "", { "dependencies": { "@types/hast": "^3.0.0", "devlop": "^1.1.0", "hast-util-from-parse5": "^8.0.0", "parse5": "^7.0.0", "vfile": "^6.0.0", "vfile-message": "^4.0.0" } }, "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw=="], "hast-util-from-html-isomorphic": ["hast-util-from-html-isomorphic@2.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "hast-util-from-dom": "^5.0.0", "hast-util-from-html": "^2.0.0", "unist-util-remove-position": "^5.0.0" } }, "sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw=="], - "hast-util-from-parse5": ["hast-util-from-parse5@8.0.1", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", "hastscript": "^8.0.0", "property-information": "^6.0.0", "vfile": "^6.0.0", "vfile-location": "^5.0.0", "web-namespaces": "^2.0.0" } }, "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ=="], + "hast-util-from-parse5": ["hast-util-from-parse5@8.0.3", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", "hastscript": "^9.0.0", "property-information": "^7.0.0", "vfile": "^6.0.0", "vfile-location": "^5.0.0", "web-namespaces": "^2.0.0" } }, "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg=="], "hast-util-is-element": ["hast-util-is-element@3.0.0", "", { "dependencies": { "@types/hast": "^3.0.0" } }, "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g=="], "hast-util-parse-selector": ["hast-util-parse-selector@4.0.0", "", { "dependencies": { "@types/hast": "^3.0.0" } }, "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A=="], - "hast-util-raw": ["hast-util-raw@9.0.4", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "@ungap/structured-clone": "^1.0.0", "hast-util-from-parse5": "^8.0.0", "hast-util-to-parse5": "^8.0.0", "html-void-elements": "^3.0.0", "mdast-util-to-hast": "^13.0.0", "parse5": "^7.0.0", "unist-util-position": "^5.0.0", "unist-util-visit": "^5.0.0", "vfile": "^6.0.0", "web-namespaces": "^2.0.0", "zwitch": "^2.0.0" } }, "sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA=="], + "hast-util-raw": ["hast-util-raw@9.1.0", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "@ungap/structured-clone": "^1.0.0", "hast-util-from-parse5": "^8.0.0", "hast-util-to-parse5": "^8.0.0", "html-void-elements": "^3.0.0", "mdast-util-to-hast": "^13.0.0", "parse5": "^7.0.0", "unist-util-position": "^5.0.0", "unist-util-visit": "^5.0.0", "vfile": "^6.0.0", "web-namespaces": "^2.0.0", "zwitch": "^2.0.0" } }, "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw=="], - "hast-util-to-estree": ["hast-util-to-estree@3.1.0", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "comma-separated-tokens": "^2.0.0", "devlop": "^1.0.0", "estree-util-attach-comments": "^3.0.0", "estree-util-is-identifier-name": "^3.0.0", "hast-util-whitespace": "^3.0.0", "mdast-util-mdx-expression": "^2.0.0", "mdast-util-mdx-jsx": "^3.0.0", "mdast-util-mdxjs-esm": "^2.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0", "style-to-object": "^0.4.0", "unist-util-position": "^5.0.0", "zwitch": "^2.0.0" } }, "sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw=="], + "hast-util-to-estree": ["hast-util-to-estree@3.1.3", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "comma-separated-tokens": "^2.0.0", "devlop": "^1.0.0", "estree-util-attach-comments": "^3.0.0", "estree-util-is-identifier-name": "^3.0.0", "hast-util-whitespace": "^3.0.0", "mdast-util-mdx-expression": "^2.0.0", "mdast-util-mdx-jsx": "^3.0.0", "mdast-util-mdxjs-esm": "^2.0.0", "property-information": "^7.0.0", "space-separated-tokens": "^2.0.0", "style-to-js": "^1.0.0", "unist-util-position": "^5.0.0", "zwitch": "^2.0.0" } }, "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w=="], "hast-util-to-html": ["hast-util-to-html@9.0.5", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "ccount": "^2.0.0", "comma-separated-tokens": "^2.0.0", "hast-util-whitespace": "^3.0.0", "html-void-elements": "^3.0.0", "mdast-util-to-hast": "^13.0.0", "property-information": "^7.0.0", "space-separated-tokens": "^2.0.0", "stringify-entities": "^4.0.0", "zwitch": "^2.0.4" } }, "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw=="], - "hast-util-to-jsx-runtime": ["hast-util-to-jsx-runtime@2.3.0", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "comma-separated-tokens": "^2.0.0", "devlop": "^1.0.0", "estree-util-is-identifier-name": "^3.0.0", "hast-util-whitespace": "^3.0.0", "mdast-util-mdx-expression": "^2.0.0", "mdast-util-mdx-jsx": "^3.0.0", "mdast-util-mdxjs-esm": "^2.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0", "style-to-object": "^1.0.0", "unist-util-position": "^5.0.0", "vfile-message": "^4.0.0" } }, "sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ=="], + "hast-util-to-jsx-runtime": ["hast-util-to-jsx-runtime@2.3.6", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", "comma-separated-tokens": "^2.0.0", "devlop": "^1.0.0", "estree-util-is-identifier-name": "^3.0.0", "hast-util-whitespace": "^3.0.0", "mdast-util-mdx-expression": "^2.0.0", "mdast-util-mdx-jsx": "^3.0.0", "mdast-util-mdxjs-esm": "^2.0.0", "property-information": "^7.0.0", "space-separated-tokens": "^2.0.0", "style-to-js": "^1.0.0", "unist-util-position": "^5.0.0", "vfile-message": "^4.0.0" } }, "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg=="], "hast-util-to-parse5": ["hast-util-to-parse5@8.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "comma-separated-tokens": "^2.0.0", "devlop": "^1.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0", "web-namespaces": "^2.0.0", "zwitch": "^2.0.0" } }, "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw=="], @@ -1984,7 +2086,7 @@ "hast-util-whitespace": ["hast-util-whitespace@3.0.0", "", { "dependencies": { "@types/hast": "^3.0.0" } }, "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw=="], - "hastscript": ["hastscript@8.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "comma-separated-tokens": "^2.0.0", "hast-util-parse-selector": "^4.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0" } }, "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw=="], + "hastscript": ["hastscript@9.0.1", "", { "dependencies": { "@types/hast": "^3.0.0", "comma-separated-tokens": "^2.0.0", "hast-util-parse-selector": "^4.0.0", "property-information": "^7.0.0", "space-separated-tokens": "^2.0.0" } }, "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w=="], "he": ["he@1.2.0", "", { "bin": { "he": "bin/he" } }, "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="], @@ -1994,9 +2096,11 @@ "hoist-non-react-statics": ["hoist-non-react-statics@3.3.2", "", { "dependencies": { "react-is": "^16.7.0" } }, "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="], + "hosted-git-info": ["hosted-git-info@7.0.2", "", { "dependencies": { "lru-cache": "^10.0.1" } }, "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w=="], + "hpack.js": ["hpack.js@2.1.6", "", { "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" } }, "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ=="], - "html-entities": ["html-entities@2.5.2", "", {}, "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA=="], + "html-entities": ["html-entities@2.6.0", "", {}, "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ=="], "html-escaper": ["html-escaper@2.0.2", "", {}, "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="], @@ -2006,27 +2110,27 @@ "html-void-elements": ["html-void-elements@3.0.0", "", {}, "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg=="], - "html-webpack-plugin": ["html-webpack-plugin@5.6.0", "", { "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", "lodash": "^4.17.21", "pretty-error": "^4.0.0", "tapable": "^2.0.0" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.20.0" }, "optionalPeers": ["@rspack/core", "webpack"] }, "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw=="], + "html-webpack-plugin": ["html-webpack-plugin@5.6.3", "", { "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", "lodash": "^4.17.21", "pretty-error": "^4.0.0", "tapable": "^2.0.0" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.20.0" }, "optionalPeers": ["@rspack/core", "webpack"] }, "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg=="], "htmlparser2": ["htmlparser2@8.0.2", "", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1", "entities": "^4.4.0" } }, "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA=="], - "http-cache-semantics": ["http-cache-semantics@4.1.1", "", {}, "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="], + "http-cache-semantics": ["http-cache-semantics@4.2.0", "", {}, "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ=="], "http-deceiver": ["http-deceiver@1.2.7", "", {}, "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw=="], "http-errors": ["http-errors@1.4.0", "", { "dependencies": { "inherits": "2.0.1", "statuses": ">= 1.2.1 < 2" } }, "sha512-oLjPqve1tuOl5aRhv8GK5eHpqP1C9fb+Ol+XTLjKfLltE44zdDbEdjPSbU7Ch5rSNsVFqZn97SrMmZLdu1/YMw=="], - "http-parser-js": ["http-parser-js@0.5.8", "", {}, "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="], + "http-parser-js": ["http-parser-js@0.5.10", "", {}, "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA=="], "http-proxy": ["http-proxy@1.18.1", "", { "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" } }, "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="], - "http-proxy-middleware": ["http-proxy-middleware@2.0.6", "", { "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" }, "peerDependencies": { "@types/express": "^4.17.13" }, "optionalPeers": ["@types/express"] }, "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw=="], + "http-proxy-middleware": ["http-proxy-middleware@2.0.9", "", { "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" }, "peerDependencies": { "@types/express": "^4.17.13" }, "optionalPeers": ["@types/express"] }, "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q=="], "http2-wrapper": ["http2-wrapper@2.2.1", "", { "dependencies": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.2.0" } }, "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="], - "https-proxy-agent": ["https-proxy-agent@5.0.1", "", { "dependencies": { "agent-base": "6", "debug": "4" } }, "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="], + "https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="], - "human-signals": ["human-signals@5.0.0", "", {}, "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="], + "human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="], "husky": ["husky@9.1.7", "", { "bin": { "husky": "bin.js" } }, "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA=="], @@ -2036,13 +2140,13 @@ "idb": ["idb@8.0.3", "", {}, "sha512-LtwtVyVYO5BqRvcsKuB2iUMnHwPVByPCXFXOpuU96IZPPoPN6xjOGxZQ74pgSVVLQWtUOYgyeL4GE98BY5D3wg=="], - "ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], "image-size": ["image-size@2.0.2", "", { "bin": { "image-size": "bin/image-size.js" } }, "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w=="], "immediate": ["immediate@3.0.6", "", {}, "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="], - "import-fresh": ["import-fresh@3.3.0", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="], + "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], "import-lazy": ["import-lazy@4.0.0", "", {}, "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw=="], @@ -2060,9 +2164,7 @@ "ini": ["ini@2.0.0", "", {}, "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="], - "inline-style-parser": ["inline-style-parser@0.1.1", "", {}, "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="], - - "internal-slot": ["internal-slot@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.2", "side-channel": "^1.1.0" } }, "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw=="], + "inline-style-parser": ["inline-style-parser@0.2.4", "", {}, "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q=="], "internmap": ["internmap@2.0.3", "", {}, "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="], @@ -2074,33 +2176,21 @@ "ipaddr.js": ["ipaddr.js@2.2.0", "", {}, "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA=="], + "is-absolute-url": ["is-absolute-url@4.0.1", "", {}, "sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A=="], + "is-alphabetical": ["is-alphabetical@2.0.1", "", {}, "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ=="], "is-alphanumerical": ["is-alphanumerical@2.0.1", "", { "dependencies": { "is-alphabetical": "^2.0.0", "is-decimal": "^2.0.0" } }, "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw=="], - "is-array-buffer": ["is-array-buffer@3.0.4", "", { "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.1" } }, "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw=="], - "is-arrayish": ["is-arrayish@0.2.1", "", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="], - "is-async-function": ["is-async-function@2.0.0", "", { "dependencies": { "has-tostringtag": "^1.0.0" } }, "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA=="], - - "is-bigint": ["is-bigint@1.0.4", "", { "dependencies": { "has-bigints": "^1.0.1" } }, "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="], - "is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="], - "is-boolean-object": ["is-boolean-object@1.1.2", "", { "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="], - "is-buffer": ["is-buffer@2.0.5", "", {}, "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="], - "is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="], - "is-ci": ["is-ci@3.0.1", "", { "dependencies": { "ci-info": "^3.2.0" }, "bin": { "is-ci": "bin.js" } }, "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ=="], - "is-core-module": ["is-core-module@2.14.0", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A=="], - - "is-data-view": ["is-data-view@1.0.1", "", { "dependencies": { "is-typed-array": "^1.1.13" } }, "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w=="], - - "is-date-object": ["is-date-object@1.0.5", "", { "dependencies": { "has-tostringtag": "^1.0.0" } }, "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="], + "is-core-module": ["is-core-module@2.16.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="], "is-decimal": ["is-decimal@2.0.1", "", {}, "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A=="], @@ -2112,28 +2202,20 @@ "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], - "is-finalizationregistry": ["is-finalizationregistry@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg=="], - "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], - "is-generator-function": ["is-generator-function@1.0.10", "", { "dependencies": { "has-tostringtag": "^1.0.0" } }, "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A=="], - "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], "is-hexadecimal": ["is-hexadecimal@2.0.1", "", {}, "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg=="], "is-installed-globally": ["is-installed-globally@0.4.0", "", { "dependencies": { "global-dirs": "^3.0.0", "is-path-inside": "^3.0.2" } }, "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ=="], - "is-map": ["is-map@2.0.3", "", {}, "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="], - - "is-negative-zero": ["is-negative-zero@2.0.3", "", {}, "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="], + "is-node-process": ["is-node-process@1.2.0", "", {}, "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw=="], "is-npm": ["is-npm@6.0.0", "", {}, "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ=="], "is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], - "is-number-object": ["is-number-object@1.0.7", "", { "dependencies": { "has-tostringtag": "^1.0.0" } }, "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="], - "is-obj": ["is-obj@1.0.1", "", {}, "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="], "is-path-inside": ["is-path-inside@3.0.3", "", {}, "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="], @@ -2142,37 +2224,17 @@ "is-plain-object": ["is-plain-object@2.0.4", "", { "dependencies": { "isobject": "^3.0.1" } }, "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="], - "is-reference": ["is-reference@3.0.2", "", { "dependencies": { "@types/estree": "*" } }, "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg=="], - - "is-regex": ["is-regex@1.1.4", "", { "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="], - "is-regexp": ["is-regexp@1.0.0", "", {}, "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA=="], - "is-set": ["is-set@2.0.3", "", {}, "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="], - - "is-shared-array-buffer": ["is-shared-array-buffer@1.0.3", "", { "dependencies": { "call-bind": "^1.0.7" } }, "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg=="], - - "is-stream": ["is-stream@3.0.0", "", {}, "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA=="], - - "is-string": ["is-string@1.0.7", "", { "dependencies": { "has-tostringtag": "^1.0.0" } }, "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="], - - "is-symbol": ["is-symbol@1.0.4", "", { "dependencies": { "has-symbols": "^1.0.2" } }, "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="], - - "is-typed-array": ["is-typed-array@1.1.13", "", { "dependencies": { "which-typed-array": "^1.1.14" } }, "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw=="], + "is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], "is-typedarray": ["is-typedarray@1.0.0", "", {}, "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="], - "is-weakmap": ["is-weakmap@2.0.2", "", {}, "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="], - - "is-weakref": ["is-weakref@1.0.2", "", { "dependencies": { "call-bind": "^1.0.2" } }, "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="], - - "is-weakset": ["is-weakset@2.0.3", "", { "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4" } }, "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ=="], - "is-wsl": ["is-wsl@2.2.0", "", { "dependencies": { "is-docker": "^2.0.0" } }, "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="], "is-yarn-global": ["is-yarn-global@0.4.1", "", {}, "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ=="], - "isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="], + "isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="], "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], @@ -2180,13 +2242,11 @@ "isobject": ["isobject@3.0.1", "", {}, "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="], - "isows": ["isows@1.0.3", "", { "peerDependencies": { "ws": "*" } }, "sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg=="], - - "iterator.prototype": ["iterator.prototype@1.1.5", "", { "dependencies": { "define-data-property": "^1.1.4", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "get-proto": "^1.0.0", "has-symbols": "^1.1.0", "set-function-name": "^2.0.2" } }, "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g=="], + "isomorphic-ws": ["isomorphic-ws@5.0.0", "", { "peerDependencies": { "ws": "*" } }, "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw=="], - "jackspeak": ["jackspeak@2.1.1", "", { "dependencies": { "cliui": "^8.0.1" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw=="], + "isows": ["isows@1.0.3", "", { "peerDependencies": { "ws": "*" } }, "sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg=="], - "javascript-natural-sort": ["javascript-natural-sort@0.7.1", "", {}, "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw=="], + "jackspeak": ["jackspeak@3.4.3", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="], "jest-get-type": ["jest-get-type@29.6.3", "", {}, "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw=="], @@ -2196,10 +2256,12 @@ "jest-worker": ["jest-worker@27.5.1", "", { "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" } }, "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="], - "jiti": ["jiti@1.21.6", "", { "bin": { "jiti": "bin/jiti.js" } }, "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w=="], + "jiti": ["jiti@1.21.7", "", { "bin": { "jiti": "bin/jiti.js" } }, "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A=="], "joi": ["joi@17.13.3", "", { "dependencies": { "@hapi/hoek": "^9.3.0", "@hapi/topo": "^5.1.0", "@sideway/address": "^4.1.5", "@sideway/formula": "^3.0.1", "@sideway/pinpoint": "^2.0.0" } }, "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA=="], + "jose": ["jose@5.9.6", "", {}, "sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ=="], + "js-sha256": ["js-sha256@0.10.1", "", {}, "sha512-5obBtsz9301ULlsgggLg542s/jqtddfOpV5KJc4hajc9JV8GeY2gZHSVpYBn4nWqAUTJ9v+xwtbJ1mIBgIH5Vw=="], "js-sha3": ["js-sha3@0.8.0", "", {}, "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="], @@ -2208,7 +2270,7 @@ "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], - "jsesc": ["jsesc@2.5.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="], + "jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], @@ -2224,11 +2286,9 @@ "jsonfile": ["jsonfile@6.1.0", "", { "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="], - "jsx-ast-utils": ["jsx-ast-utils@3.3.5", "", { "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", "object.assign": "^4.1.4", "object.values": "^1.1.6" } }, "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ=="], - "jszip": ["jszip@3.10.1", "", { "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", "setimmediate": "^1.0.5" } }, "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="], - "katex": ["katex@0.16.10", "", { "dependencies": { "commander": "^8.3.0" }, "bin": { "katex": "cli.js" } }, "sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA=="], + "katex": ["katex@0.16.22", "", { "dependencies": { "commander": "^8.3.0" }, "bin": { "katex": "cli.js" } }, "sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg=="], "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], @@ -2244,7 +2304,7 @@ "latest-version": ["latest-version@7.0.0", "", { "dependencies": { "package-json": "^8.1.0" } }, "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg=="], - "launch-editor": ["launch-editor@2.8.0", "", { "dependencies": { "picocolors": "^1.0.0", "shell-quote": "^1.8.1" } }, "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA=="], + "launch-editor": ["launch-editor@2.10.0", "", { "dependencies": { "picocolors": "^1.0.0", "shell-quote": "^1.8.1" } }, "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA=="], "layout-base": ["layout-base@1.0.2", "", {}, "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg=="], @@ -2254,13 +2314,35 @@ "lie": ["lie@3.3.0", "", { "dependencies": { "immediate": "~3.0.5" } }, "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ=="], + "lightningcss": ["lightningcss@1.30.1", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-darwin-arm64": "1.30.1", "lightningcss-darwin-x64": "1.30.1", "lightningcss-freebsd-x64": "1.30.1", "lightningcss-linux-arm-gnueabihf": "1.30.1", "lightningcss-linux-arm64-gnu": "1.30.1", "lightningcss-linux-arm64-musl": "1.30.1", "lightningcss-linux-x64-gnu": "1.30.1", "lightningcss-linux-x64-musl": "1.30.1", "lightningcss-win32-arm64-msvc": "1.30.1", "lightningcss-win32-x64-msvc": "1.30.1" } }, "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg=="], + + "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ=="], + + "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA=="], + + "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig=="], + + "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.1", "", { "os": "linux", "cpu": "arm" }, "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q=="], + + "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw=="], + + "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ=="], + + "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw=="], + + "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ=="], + + "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA=="], + + "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.1", "", { "os": "win32", "cpu": "x64" }, "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="], + "lilconfig": ["lilconfig@3.1.3", "", {}, "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="], "lines-and-columns": ["lines-and-columns@2.0.4", "", {}, "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A=="], - "lint-staged": ["lint-staged@15.5.2", "", { "dependencies": { "chalk": "^5.4.1", "commander": "^13.1.0", "debug": "^4.4.0", "execa": "^8.0.1", "lilconfig": "^3.1.3", "listr2": "^8.2.5", "micromatch": "^4.0.8", "pidtree": "^0.6.0", "string-argv": "^0.3.2", "yaml": "^2.7.0" }, "bin": { "lint-staged": "bin/lint-staged.js" } }, "sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w=="], + "lint-staged": ["lint-staged@16.1.2", "", { "dependencies": { "chalk": "^5.4.1", "commander": "^14.0.0", "debug": "^4.4.1", "lilconfig": "^3.1.3", "listr2": "^8.3.3", "micromatch": "^4.0.8", "nano-spawn": "^1.0.2", "pidtree": "^0.6.0", "string-argv": "^0.3.2", "yaml": "^2.8.0" }, "bin": { "lint-staged": "bin/lint-staged.js" } }, "sha512-sQKw2Si2g9KUZNY3XNvRuDq4UJqpHwF0/FQzZR2M7I5MvtpWvibikCjUVJzZdGE0ByurEl3KQNvsGetd1ty1/Q=="], - "listr2": ["listr2@8.2.5", "", { "dependencies": { "cli-truncate": "^4.0.0", "colorette": "^2.0.20", "eventemitter3": "^5.0.1", "log-update": "^6.1.0", "rfdc": "^1.4.1", "wrap-ansi": "^9.0.0" } }, "sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ=="], + "listr2": ["listr2@8.3.3", "", { "dependencies": { "cli-truncate": "^4.0.0", "colorette": "^2.0.20", "eventemitter3": "^5.0.1", "log-update": "^6.1.0", "rfdc": "^1.4.1", "wrap-ansi": "^9.0.0" } }, "sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ=="], "load-plugin": ["load-plugin@6.0.3", "", { "dependencies": { "@npmcli/config": "^8.0.0", "import-meta-resolve": "^4.0.0" } }, "sha512-kc0X2FEUZr145odl68frm+lMJuQ23+rTXYmR6TImqPtbpmXC4vVXbWKDQ9IzndA0HfyQamWfKLhzsqGSTxE63w=="], @@ -2298,8 +2380,6 @@ "lru-cache": ["lru-cache@6.0.0", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="], - "make-dir": ["make-dir@3.1.0", "", { "dependencies": { "semver": "^6.0.0" } }, "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="], - "make-error": ["make-error@1.3.6", "", {}, "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="], "markdown-extensions": ["markdown-extensions@2.0.0", "", {}, "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q=="], @@ -2314,19 +2394,19 @@ "mdast-util-definitions": ["mdast-util-definitions@4.0.0", "", { "dependencies": { "unist-util-visit": "^2.0.0" } }, "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ=="], - "mdast-util-directive": ["mdast-util-directive@3.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "parse-entities": "^4.0.0", "stringify-entities": "^4.0.0", "unist-util-visit-parents": "^6.0.0" } }, "sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q=="], + "mdast-util-directive": ["mdast-util-directive@3.1.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "ccount": "^2.0.0", "devlop": "^1.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "parse-entities": "^4.0.0", "stringify-entities": "^4.0.0", "unist-util-visit-parents": "^6.0.0" } }, "sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q=="], - "mdast-util-find-and-replace": ["mdast-util-find-and-replace@3.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "escape-string-regexp": "^5.0.0", "unist-util-is": "^6.0.0", "unist-util-visit-parents": "^6.0.0" } }, "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA=="], + "mdast-util-find-and-replace": ["mdast-util-find-and-replace@3.0.2", "", { "dependencies": { "@types/mdast": "^4.0.0", "escape-string-regexp": "^5.0.0", "unist-util-is": "^6.0.0", "unist-util-visit-parents": "^6.0.0" } }, "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg=="], "mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.2", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA=="], "mdast-util-frontmatter": ["mdast-util-frontmatter@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "devlop": "^1.0.0", "escape-string-regexp": "^5.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "micromark-extension-frontmatter": "^2.0.0" } }, "sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA=="], - "mdast-util-gfm": ["mdast-util-gfm@3.0.0", "", { "dependencies": { "mdast-util-from-markdown": "^2.0.0", "mdast-util-gfm-autolink-literal": "^2.0.0", "mdast-util-gfm-footnote": "^2.0.0", "mdast-util-gfm-strikethrough": "^2.0.0", "mdast-util-gfm-table": "^2.0.0", "mdast-util-gfm-task-list-item": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw=="], + "mdast-util-gfm": ["mdast-util-gfm@3.1.0", "", { "dependencies": { "mdast-util-from-markdown": "^2.0.0", "mdast-util-gfm-autolink-literal": "^2.0.0", "mdast-util-gfm-footnote": "^2.0.0", "mdast-util-gfm-strikethrough": "^2.0.0", "mdast-util-gfm-table": "^2.0.0", "mdast-util-gfm-task-list-item": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ=="], - "mdast-util-gfm-autolink-literal": ["mdast-util-gfm-autolink-literal@2.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "ccount": "^2.0.0", "devlop": "^1.0.0", "mdast-util-find-and-replace": "^3.0.0", "micromark-util-character": "^2.0.0" } }, "sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg=="], + "mdast-util-gfm-autolink-literal": ["mdast-util-gfm-autolink-literal@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "ccount": "^2.0.0", "devlop": "^1.0.0", "mdast-util-find-and-replace": "^3.0.0", "micromark-util-character": "^2.0.0" } }, "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ=="], - "mdast-util-gfm-footnote": ["mdast-util-gfm-footnote@2.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "devlop": "^1.1.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0" } }, "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ=="], + "mdast-util-gfm-footnote": ["mdast-util-gfm-footnote@2.1.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "devlop": "^1.1.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0" } }, "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ=="], "mdast-util-gfm-strikethrough": ["mdast-util-gfm-strikethrough@2.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg=="], @@ -2338,9 +2418,9 @@ "mdast-util-mdx": ["mdast-util-mdx@3.0.0", "", { "dependencies": { "mdast-util-from-markdown": "^2.0.0", "mdast-util-mdx-expression": "^2.0.0", "mdast-util-mdx-jsx": "^3.0.0", "mdast-util-mdxjs-esm": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w=="], - "mdast-util-mdx-expression": ["mdast-util-mdx-expression@2.0.0", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "devlop": "^1.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw=="], + "mdast-util-mdx-expression": ["mdast-util-mdx-expression@2.0.1", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "devlop": "^1.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ=="], - "mdast-util-mdx-jsx": ["mdast-util-mdx-jsx@3.1.2", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "ccount": "^2.0.0", "devlop": "^1.1.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "parse-entities": "^4.0.0", "stringify-entities": "^4.0.0", "unist-util-remove-position": "^5.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA=="], + "mdast-util-mdx-jsx": ["mdast-util-mdx-jsx@3.2.0", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "ccount": "^2.0.0", "devlop": "^1.1.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0", "parse-entities": "^4.0.0", "stringify-entities": "^4.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q=="], "mdast-util-mdxjs-esm": ["mdast-util-mdxjs-esm@2.0.1", "", { "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "devlop": "^1.0.0", "mdast-util-from-markdown": "^2.0.0", "mdast-util-to-markdown": "^2.0.0" } }, "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg=="], @@ -2348,7 +2428,7 @@ "mdast-util-to-hast": ["mdast-util-to-hast@13.2.0", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "@ungap/structured-clone": "^1.0.0", "devlop": "^1.0.0", "micromark-util-sanitize-uri": "^2.0.0", "trim-lines": "^3.0.0", "unist-util-position": "^5.0.0", "unist-util-visit": "^5.0.0", "vfile": "^6.0.0" } }, "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA=="], - "mdast-util-to-markdown": ["mdast-util-to-markdown@2.1.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "longest-streak": "^3.0.0", "mdast-util-phrasing": "^4.0.0", "mdast-util-to-string": "^4.0.0", "micromark-util-decode-string": "^2.0.0", "unist-util-visit": "^5.0.0", "zwitch": "^2.0.0" } }, "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ=="], + "mdast-util-to-markdown": ["mdast-util-to-markdown@2.1.2", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "longest-streak": "^3.0.0", "mdast-util-phrasing": "^4.0.0", "mdast-util-to-string": "^4.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "unist-util-visit": "^5.0.0", "zwitch": "^2.0.0" } }, "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA=="], "mdast-util-to-string": ["mdast-util-to-string@4.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0" } }, "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg=="], @@ -2362,13 +2442,15 @@ "memorystream": ["memorystream@0.3.1", "", {}, "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw=="], - "merge-descriptors": ["merge-descriptors@1.0.1", "", {}, "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="], + "merge-descriptors": ["merge-descriptors@1.0.3", "", {}, "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ=="], "merge-stream": ["merge-stream@2.0.0", "", {}, "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="], "merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], - "mermaid": ["mermaid@11.6.0", "", { "dependencies": { "@braintree/sanitize-url": "^7.0.4", "@iconify/utils": "^2.1.33", "@mermaid-js/parser": "^0.4.0", "@types/d3": "^7.4.3", "cytoscape": "^3.29.3", "cytoscape-cose-bilkent": "^4.1.0", "cytoscape-fcose": "^2.2.0", "d3": "^7.9.0", "d3-sankey": "^0.12.3", "dagre-d3-es": "7.0.11", "dayjs": "^1.11.13", "dompurify": "^3.2.4", "katex": "^0.16.9", "khroma": "^2.1.0", "lodash-es": "^4.17.21", "marked": "^15.0.7", "roughjs": "^4.6.6", "stylis": "^4.3.6", "ts-dedent": "^2.2.0", "uuid": "^11.1.0" } }, "sha512-PE8hGUy1LDlWIHWBP05SFdqUHGmRcCcK4IzpOKPE35eOw+G9zZgcnMpyunJVUEOgb//KBORPjysKndw8bFLuRg=="], + "mermaid": ["mermaid@11.7.0", "", { "dependencies": { "@braintree/sanitize-url": "^7.0.4", "@iconify/utils": "^2.1.33", "@mermaid-js/parser": "^0.5.0", "@types/d3": "^7.4.3", "cytoscape": "^3.29.3", "cytoscape-cose-bilkent": "^4.1.0", "cytoscape-fcose": "^2.2.0", "d3": "^7.9.0", "d3-sankey": "^0.12.3", "dagre-d3-es": "7.0.11", "dayjs": "^1.11.13", "dompurify": "^3.2.5", "katex": "^0.16.9", "khroma": "^2.1.0", "lodash-es": "^4.17.21", "marked": "^15.0.7", "roughjs": "^4.6.6", "stylis": "^4.3.6", "ts-dedent": "^2.2.0", "uuid": "^11.1.0" } }, "sha512-/1/5R0rt0Z1Ak0CuznAnCF3HtQgayRXUz6SguzOwN4L+DuCobz0UxnQ+ZdTSZ3AugKVVh78tiVmsHpHWV25TCw=="], + + "meros": ["meros@1.3.1", "", { "peerDependencies": { "@types/node": ">=13" }, "optionalPeers": ["@types/node"] }, "sha512-eV7dRObfTrckdmAz4/n7pT1njIsIJXRIZkgCiX43xEsPNy4gjXQzOYYxmGcolAMtF7HyfqRuDBh3Lgs4hmhVEw=="], "messageformat-parser": ["messageformat-parser@4.1.3", "", {}, "sha512-2fU3XDCanRqeOCkn7R5zW5VQHWf+T3hH65SzuqRvjatBK7r4uyFa5mEX+k6F9Bd04LVM5G4/BHBTUJsOdW7uyg=="], @@ -2376,33 +2458,33 @@ "micro": ["micro@9.3.5-canary.3", "", { "dependencies": { "arg": "4.1.0", "content-type": "1.0.4", "raw-body": "2.4.1" }, "bin": { "micro": "./bin/micro.js" } }, "sha512-viYIo9PefV+w9dvoIBh1gI44Mvx1BOk67B4BpC2QK77qdY0xZF0Q+vWLt/BII6cLkIc8rLmSIcJaB/OrXXKe1g=="], - "micromark": ["micromark@4.0.0", "", { "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-combine-extensions": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ=="], + "micromark": ["micromark@4.0.2", "", { "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-combine-extensions": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA=="], - "micromark-core-commonmark": ["micromark-core-commonmark@2.0.1", "", { "dependencies": { "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-destination": "^2.0.0", "micromark-factory-label": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-factory-title": "^2.0.0", "micromark-factory-whitespace": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-html-tag-name": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA=="], + "micromark-core-commonmark": ["micromark-core-commonmark@2.0.3", "", { "dependencies": { "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-destination": "^2.0.0", "micromark-factory-label": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-factory-title": "^2.0.0", "micromark-factory-whitespace": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-html-tag-name": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-subtokenize": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg=="], - "micromark-extension-directive": ["micromark-extension-directive@3.0.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-factory-whitespace": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "parse-entities": "^4.0.0" } }, "sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg=="], + "micromark-extension-directive": ["micromark-extension-directive@3.0.2", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-factory-whitespace": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "parse-entities": "^4.0.0" } }, "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA=="], "micromark-extension-frontmatter": ["micromark-extension-frontmatter@2.0.0", "", { "dependencies": { "fault": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg=="], "micromark-extension-gfm": ["micromark-extension-gfm@3.0.0", "", { "dependencies": { "micromark-extension-gfm-autolink-literal": "^2.0.0", "micromark-extension-gfm-footnote": "^2.0.0", "micromark-extension-gfm-strikethrough": "^2.0.0", "micromark-extension-gfm-table": "^2.0.0", "micromark-extension-gfm-tagfilter": "^2.0.0", "micromark-extension-gfm-task-list-item": "^2.0.0", "micromark-util-combine-extensions": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w=="], - "micromark-extension-gfm-autolink-literal": ["micromark-extension-gfm-autolink-literal@2.0.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg=="], + "micromark-extension-gfm-autolink-literal": ["micromark-extension-gfm-autolink-literal@2.1.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw=="], - "micromark-extension-gfm-footnote": ["micromark-extension-gfm-footnote@2.0.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg=="], + "micromark-extension-gfm-footnote": ["micromark-extension-gfm-footnote@2.1.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-sanitize-uri": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw=="], - "micromark-extension-gfm-strikethrough": ["micromark-extension-gfm-strikethrough@2.0.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw=="], + "micromark-extension-gfm-strikethrough": ["micromark-extension-gfm-strikethrough@2.1.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-classify-character": "^2.0.0", "micromark-util-resolve-all": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw=="], - "micromark-extension-gfm-table": ["micromark-extension-gfm-table@2.0.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw=="], + "micromark-extension-gfm-table": ["micromark-extension-gfm-table@2.1.1", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg=="], "micromark-extension-gfm-tagfilter": ["micromark-extension-gfm-tagfilter@2.0.0", "", { "dependencies": { "micromark-util-types": "^2.0.0" } }, "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg=="], - "micromark-extension-gfm-task-list-item": ["micromark-extension-gfm-task-list-item@2.0.1", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw=="], + "micromark-extension-gfm-task-list-item": ["micromark-extension-gfm-task-list-item@2.1.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw=="], - "micromark-extension-math": ["micromark-extension-math@3.0.0", "", { "dependencies": { "@types/katex": "^0.16.0", "devlop": "^1.0.0", "katex": "^0.16.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-iJ2Q28vBoEovLN5o3GO12CpqorQRYDPT+p4zW50tGwTfJB+iv/VnB6Ini+gqa24K97DwptMBBIvVX6Bjk49oyQ=="], + "micromark-extension-math": ["micromark-extension-math@3.1.0", "", { "dependencies": { "@types/katex": "^0.16.0", "devlop": "^1.0.0", "katex": "^0.16.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg=="], - "micromark-extension-mdx-expression": ["micromark-extension-mdx-expression@3.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-mdx-expression": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ=="], + "micromark-extension-mdx-expression": ["micromark-extension-mdx-expression@3.0.1", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-mdx-expression": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q=="], - "micromark-extension-mdx-jsx": ["micromark-extension-mdx-jsx@3.0.0", "", { "dependencies": { "@types/acorn": "^4.0.0", "@types/estree": "^1.0.0", "devlop": "^1.0.0", "estree-util-is-identifier-name": "^3.0.0", "micromark-factory-mdx-expression": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w=="], + "micromark-extension-mdx-jsx": ["micromark-extension-mdx-jsx@3.0.2", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "estree-util-is-identifier-name": "^3.0.0", "micromark-factory-mdx-expression": "^2.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ=="], "micromark-extension-mdx-md": ["micromark-extension-mdx-md@2.0.0", "", { "dependencies": { "micromark-util-types": "^2.0.0" } }, "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ=="], @@ -2410,47 +2492,47 @@ "micromark-extension-mdxjs-esm": ["micromark-extension-mdxjs-esm@3.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "micromark-core-commonmark": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-position-from-estree": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A=="], - "micromark-factory-destination": ["micromark-factory-destination@2.0.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA=="], + "micromark-factory-destination": ["micromark-factory-destination@2.0.1", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA=="], - "micromark-factory-label": ["micromark-factory-label@2.0.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw=="], + "micromark-factory-label": ["micromark-factory-label@2.0.1", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg=="], - "micromark-factory-mdx-expression": ["micromark-factory-mdx-expression@2.0.1", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-position-from-estree": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg=="], + "micromark-factory-mdx-expression": ["micromark-factory-mdx-expression@2.0.3", "", { "dependencies": { "@types/estree": "^1.0.0", "devlop": "^1.0.0", "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-events-to-acorn": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-position-from-estree": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ=="], - "micromark-factory-space": ["micromark-factory-space@2.0.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg=="], + "micromark-factory-space": ["micromark-factory-space@2.0.1", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg=="], - "micromark-factory-title": ["micromark-factory-title@2.0.0", "", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A=="], + "micromark-factory-title": ["micromark-factory-title@2.0.1", "", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw=="], - "micromark-factory-whitespace": ["micromark-factory-whitespace@2.0.0", "", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA=="], + "micromark-factory-whitespace": ["micromark-factory-whitespace@2.0.1", "", { "dependencies": { "micromark-factory-space": "^2.0.0", "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ=="], - "micromark-util-character": ["micromark-util-character@2.1.0", "", { "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ=="], + "micromark-util-character": ["micromark-util-character@2.1.1", "", { "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q=="], - "micromark-util-chunked": ["micromark-util-chunked@2.0.0", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg=="], + "micromark-util-chunked": ["micromark-util-chunked@2.0.1", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA=="], - "micromark-util-classify-character": ["micromark-util-classify-character@2.0.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw=="], + "micromark-util-classify-character": ["micromark-util-classify-character@2.0.1", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q=="], - "micromark-util-combine-extensions": ["micromark-util-combine-extensions@2.0.0", "", { "dependencies": { "micromark-util-chunked": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ=="], + "micromark-util-combine-extensions": ["micromark-util-combine-extensions@2.0.1", "", { "dependencies": { "micromark-util-chunked": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg=="], - "micromark-util-decode-numeric-character-reference": ["micromark-util-decode-numeric-character-reference@2.0.1", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ=="], + "micromark-util-decode-numeric-character-reference": ["micromark-util-decode-numeric-character-reference@2.0.2", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw=="], - "micromark-util-decode-string": ["micromark-util-decode-string@2.0.0", "", { "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA=="], + "micromark-util-decode-string": ["micromark-util-decode-string@2.0.1", "", { "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^2.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ=="], - "micromark-util-encode": ["micromark-util-encode@2.0.0", "", {}, "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA=="], + "micromark-util-encode": ["micromark-util-encode@2.0.1", "", {}, "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw=="], - "micromark-util-events-to-acorn": ["micromark-util-events-to-acorn@2.0.2", "", { "dependencies": { "@types/acorn": "^4.0.0", "@types/estree": "^1.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", "estree-util-visit": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA=="], + "micromark-util-events-to-acorn": ["micromark-util-events-to-acorn@2.0.3", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/unist": "^3.0.0", "devlop": "^1.0.0", "estree-util-visit": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "vfile-message": "^4.0.0" } }, "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg=="], - "micromark-util-html-tag-name": ["micromark-util-html-tag-name@2.0.0", "", {}, "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw=="], + "micromark-util-html-tag-name": ["micromark-util-html-tag-name@2.0.1", "", {}, "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA=="], - "micromark-util-normalize-identifier": ["micromark-util-normalize-identifier@2.0.0", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w=="], + "micromark-util-normalize-identifier": ["micromark-util-normalize-identifier@2.0.1", "", { "dependencies": { "micromark-util-symbol": "^2.0.0" } }, "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q=="], - "micromark-util-resolve-all": ["micromark-util-resolve-all@2.0.0", "", { "dependencies": { "micromark-util-types": "^2.0.0" } }, "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA=="], + "micromark-util-resolve-all": ["micromark-util-resolve-all@2.0.1", "", { "dependencies": { "micromark-util-types": "^2.0.0" } }, "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg=="], - "micromark-util-sanitize-uri": ["micromark-util-sanitize-uri@2.0.0", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw=="], + "micromark-util-sanitize-uri": ["micromark-util-sanitize-uri@2.0.1", "", { "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", "micromark-util-symbol": "^2.0.0" } }, "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ=="], - "micromark-util-subtokenize": ["micromark-util-subtokenize@2.0.1", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q=="], + "micromark-util-subtokenize": ["micromark-util-subtokenize@2.1.0", "", { "dependencies": { "devlop": "^1.0.0", "micromark-util-chunked": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA=="], - "micromark-util-symbol": ["micromark-util-symbol@2.0.0", "", {}, "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw=="], + "micromark-util-symbol": ["micromark-util-symbol@2.0.1", "", {}, "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q=="], - "micromark-util-types": ["micromark-util-types@2.0.0", "", {}, "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w=="], + "micromark-util-types": ["micromark-util-types@2.0.2", "", {}, "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA=="], "micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], @@ -2460,7 +2542,7 @@ "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], - "mimic-fn": ["mimic-fn@4.0.0", "", {}, "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw=="], + "mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], "mimic-function": ["mimic-function@5.0.1", "", {}, "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="], @@ -2474,11 +2556,11 @@ "minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="], - "minipass": ["minipass@2.9.0", "", { "dependencies": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="], + "minipass": ["minipass@5.0.0", "", {}, "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="], - "minizlib": ["minizlib@1.3.3", "", { "dependencies": { "minipass": "^2.9.0" } }, "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q=="], + "minizlib": ["minizlib@2.1.2", "", { "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" } }, "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="], - "mkdirp": ["mkdirp@0.5.6", "", { "dependencies": { "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" } }, "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="], + "mkdirp": ["mkdirp@1.0.4", "", { "bin": { "mkdirp": "bin/cmd.js" } }, "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="], "mlly": ["mlly@1.7.4", "", { "dependencies": { "acorn": "^8.14.0", "pathe": "^2.0.1", "pkg-types": "^1.3.0", "ufo": "^1.5.4" } }, "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw=="], @@ -2490,17 +2572,19 @@ "mri": ["mri@1.2.0", "", {}, "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="], - "mrmime": ["mrmime@2.0.0", "", {}, "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw=="], + "mrmime": ["mrmime@2.0.1", "", {}, "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ=="], "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], "multicast-dns": ["multicast-dns@7.2.5", "", { "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" }, "bin": { "multicast-dns": "cli.js" } }, "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg=="], + "nano-spawn": ["nano-spawn@1.0.2", "", {}, "sha512-21t+ozMQDAL/UGgQVBbZ/xXvNO10++ZPuTmKRO8k9V3AClVRht49ahtDjfY8l1q6nSHOrE5ASfthzH3ol6R/hg=="], + "nanoid": ["nanoid@3.3.7", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="], "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], - "negotiator": ["negotiator@0.6.3", "", {}, "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="], + "negotiator": ["negotiator@0.6.4", "", {}, "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w=="], "neo-async": ["neo-async@2.6.2", "", {}, "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="], @@ -2508,29 +2592,37 @@ "no-case": ["no-case@3.0.4", "", { "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="], - "node-emoji": ["node-emoji@2.1.3", "", { "dependencies": { "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" } }, "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA=="], + "node-domexception": ["node-domexception@1.0.0", "", {}, "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="], - "node-fetch": ["node-fetch@2.6.7", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="], + "node-emoji": ["node-emoji@2.2.0", "", { "dependencies": { "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" } }, "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw=="], + + "node-fetch": ["node-fetch@3.3.2", "", { "dependencies": { "data-uri-to-buffer": "^4.0.0", "fetch-blob": "^3.1.4", "formdata-polyfill": "^4.0.10" } }, "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA=="], "node-forge": ["node-forge@1.3.1", "", {}, "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="], - "node-gyp-build": ["node-gyp-build@4.8.1", "", { "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", "node-gyp-build-test": "build-test.js" } }, "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw=="], + "node-gyp-build": ["node-gyp-build@4.8.4", "", { "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", "node-gyp-build-test": "build-test.js" } }, "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ=="], "node-releases": ["node-releases@2.0.19", "", {}, "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="], - "nopt": ["nopt@5.0.0", "", { "dependencies": { "abbrev": "1" }, "bin": { "nopt": "bin/nopt.js" } }, "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ=="], + "nopt": ["nopt@8.1.0", "", { "dependencies": { "abbrev": "^3.0.0" }, "bin": { "nopt": "bin/nopt.js" } }, "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A=="], + + "normalize-package-data": ["normalize-package-data@6.0.2", "", { "dependencies": { "hosted-git-info": "^7.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" } }, "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g=="], "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], "normalize-range": ["normalize-range@0.1.2", "", {}, "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="], - "normalize-url": ["normalize-url@8.0.1", "", {}, "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w=="], + "normalize-url": ["normalize-url@8.0.2", "", {}, "sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw=="], + + "npm-install-checks": ["npm-install-checks@6.3.0", "", { "dependencies": { "semver": "^7.1.1" } }, "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw=="], "npm-normalize-package-bin": ["npm-normalize-package-bin@3.0.1", "", {}, "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ=="], - "npm-run-path": ["npm-run-path@5.3.0", "", { "dependencies": { "path-key": "^4.0.0" } }, "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ=="], + "npm-package-arg": ["npm-package-arg@11.0.3", "", { "dependencies": { "hosted-git-info": "^7.0.0", "proc-log": "^4.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" } }, "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw=="], + + "npm-pick-manifest": ["npm-pick-manifest@9.1.0", "", { "dependencies": { "npm-install-checks": "^6.0.0", "npm-normalize-package-bin": "^3.0.0", "npm-package-arg": "^11.0.0", "semver": "^7.3.5" } }, "sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA=="], - "npmlog": ["npmlog@5.0.1", "", { "dependencies": { "are-we-there-yet": "^2.0.0", "console-control-strings": "^1.1.0", "gauge": "^3.0.0", "set-blocking": "^2.0.0" } }, "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw=="], + "npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], "nprogress": ["nprogress@0.2.0", "", {}, "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="], @@ -2540,17 +2632,11 @@ "object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="], - "object-inspect": ["object-inspect@1.13.2", "", {}, "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g=="], + "object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], "object-keys": ["object-keys@1.1.1", "", {}, "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="], - "object.assign": ["object.assign@4.1.5", "", { "dependencies": { "call-bind": "^1.0.5", "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ=="], - - "object.entries": ["object.entries@1.1.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.4", "define-properties": "^1.2.1", "es-object-atoms": "^1.1.1" } }, "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw=="], - - "object.fromentries": ["object.fromentries@2.0.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.2", "es-object-atoms": "^1.0.0" } }, "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ=="], - - "object.values": ["object.values@1.2.1", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA=="], + "object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], "obuf": ["obuf@1.1.2", "", {}, "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="], @@ -2560,7 +2646,7 @@ "once": ["once@1.3.3", "", { "dependencies": { "wrappy": "1" } }, "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w=="], - "onetime": ["onetime@6.0.0", "", { "dependencies": { "mimic-fn": "^4.0.0" } }, "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ=="], + "onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], "oniguruma-to-es": ["oniguruma-to-es@2.3.0", "", { "dependencies": { "emoji-regex-xs": "^1.0.0", "regex": "^5.1.1", "regex-recursion": "^5.1.1" } }, "sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g=="], @@ -2574,11 +2660,11 @@ "os-tmpdir": ["os-tmpdir@1.0.2", "", {}, "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="], - "own-keys": ["own-keys@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.2.6", "object-keys": "^1.1.1", "safe-push-apply": "^1.0.0" } }, "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg=="], + "ox": ["ox@0.8.1", "", { "dependencies": { "@adraffy/ens-normalize": "^1.11.0", "@noble/ciphers": "^1.3.0", "@noble/curves": "^1.9.1", "@noble/hashes": "^1.8.0", "@scure/bip32": "^1.7.0", "@scure/bip39": "^1.6.0", "abitype": "^1.0.8", "eventemitter3": "5.0.1" }, "peerDependencies": { "typescript": ">=5.4.0" }, "optionalPeers": ["typescript"] }, "sha512-e+z5epnzV+Zuz91YYujecW8cF01mzmrUtWotJ0oEPym/G82uccs7q0WDHTYL3eiONbTUEvcZrptAKLgTBD3u2A=="], "p-cancelable": ["p-cancelable@3.0.0", "", {}, "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="], - "p-finally": ["p-finally@2.0.1", "", {}, "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="], + "p-finally": ["p-finally@1.0.0", "", {}, "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="], "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], @@ -2594,7 +2680,7 @@ "package-json": ["package-json@8.1.1", "", { "dependencies": { "got": "^12.1.0", "registry-auth-token": "^5.0.1", "registry-url": "^6.0.0", "semver": "^7.3.7" } }, "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA=="], - "package-json-from-dist": ["package-json-from-dist@1.0.0", "", {}, "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw=="], + "package-json-from-dist": ["package-json-from-dist@1.0.1", "", {}, "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="], "package-manager-detector": ["package-manager-detector@1.3.0", "", {}, "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ=="], @@ -2604,7 +2690,7 @@ "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], - "parse-entities": ["parse-entities@4.0.1", "", { "dependencies": { "@types/unist": "^2.0.0", "character-entities": "^2.0.0", "character-entities-legacy": "^3.0.0", "character-reference-invalid": "^2.0.0", "decode-named-character-reference": "^1.0.0", "is-alphanumerical": "^2.0.0", "is-decimal": "^2.0.0", "is-hexadecimal": "^2.0.0" } }, "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w=="], + "parse-entities": ["parse-entities@4.0.2", "", { "dependencies": { "@types/unist": "^2.0.0", "character-entities-legacy": "^3.0.0", "character-reference-invalid": "^2.0.0", "decode-named-character-reference": "^1.0.0", "is-alphanumerical": "^2.0.0", "is-decimal": "^2.0.0", "is-hexadecimal": "^2.0.0" } }, "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw=="], "parse-json": ["parse-json@7.1.1", "", { "dependencies": { "@babel/code-frame": "^7.21.4", "error-ex": "^1.3.2", "json-parse-even-better-errors": "^3.0.0", "lines-and-columns": "^2.0.3", "type-fest": "^3.8.0" } }, "sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw=="], @@ -2612,9 +2698,9 @@ "parse-numeric-range": ["parse-numeric-range@1.3.0", "", {}, "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ=="], - "parse5": ["parse5@7.1.2", "", { "dependencies": { "entities": "^4.4.0" } }, "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw=="], + "parse5": ["parse5@7.3.0", "", { "dependencies": { "entities": "^6.0.0" } }, "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw=="], - "parse5-htmlparser2-tree-adapter": ["parse5-htmlparser2-tree-adapter@7.0.0", "", { "dependencies": { "domhandler": "^5.0.2", "parse5": "^7.0.0" } }, "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g=="], + "parse5-htmlparser2-tree-adapter": ["parse5-htmlparser2-tree-adapter@7.1.0", "", { "dependencies": { "domhandler": "^5.0.3", "parse5": "^7.0.0" } }, "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g=="], "parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="], @@ -2638,7 +2724,9 @@ "path-scurry": ["path-scurry@1.11.1", "", { "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="], - "path-to-regexp": ["path-to-regexp@6.2.1", "", {}, "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw=="], + "path-to-regexp": ["path-to-regexp@6.1.0", "", {}, "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw=="], + + "path-to-regexp-updated": ["path-to-regexp@6.3.0", "", {}, "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ=="], "path-type": ["path-type@4.0.0", "", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="], @@ -2646,9 +2734,7 @@ "pend": ["pend@1.2.0", "", {}, "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="], - "periscopic": ["periscopic@3.1.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^3.0.0", "is-reference": "^3.0.0" } }, "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw=="], - - "picocolors": ["picocolors@1.0.1", "", {}, "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew=="], + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], "picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], @@ -2664,9 +2750,7 @@ "popmotion": ["popmotion@11.0.3", "", { "dependencies": { "framesync": "6.0.1", "hey-listen": "^1.0.8", "style-value-types": "5.0.0", "tslib": "^2.1.0" } }, "sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA=="], - "possible-typed-array-names": ["possible-typed-array-names@1.0.0", "", {}, "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q=="], - - "postcss": ["postcss@8.5.4", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w=="], + "postcss": ["postcss@8.4.49", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA=="], "postcss-attribute-case-insensitive": ["postcss-attribute-case-insensitive@7.0.1", "", { "dependencies": { "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw=="], @@ -2736,13 +2820,13 @@ "postcss-modules-extract-imports": ["postcss-modules-extract-imports@3.1.0", "", { "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q=="], - "postcss-modules-local-by-default": ["postcss-modules-local-by-default@4.0.5", "", { "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", "postcss-value-parser": "^4.1.0" }, "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw=="], + "postcss-modules-local-by-default": ["postcss-modules-local-by-default@4.2.0", "", { "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" }, "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw=="], - "postcss-modules-scope": ["postcss-modules-scope@3.2.0", "", { "dependencies": { "postcss-selector-parser": "^6.0.4" }, "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ=="], + "postcss-modules-scope": ["postcss-modules-scope@3.2.1", "", { "dependencies": { "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA=="], "postcss-modules-values": ["postcss-modules-values@4.0.0", "", { "dependencies": { "icss-utils": "^5.0.0" }, "peerDependencies": { "postcss": "^8.1.0" } }, "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="], - "postcss-nesting": ["postcss-nesting@13.0.1", "", { "dependencies": { "@csstools/selector-resolve-nested": "^3.0.0", "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ=="], + "postcss-nesting": ["postcss-nesting@13.0.2", "", { "dependencies": { "@csstools/selector-resolve-nested": "^3.1.0", "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ=="], "postcss-normalize-charset": ["postcss-normalize-charset@6.0.2", "", { "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ=="], @@ -2772,7 +2856,7 @@ "postcss-place": ["postcss-place@10.0.0", "", { "dependencies": { "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw=="], - "postcss-preset-env": ["postcss-preset-env@10.2.1", "", { "dependencies": { "@csstools/postcss-cascade-layers": "^5.0.1", "@csstools/postcss-color-function": "^4.0.10", "@csstools/postcss-color-mix-function": "^3.0.10", "@csstools/postcss-color-mix-variadic-function-arguments": "^1.0.0", "@csstools/postcss-content-alt-text": "^2.0.6", "@csstools/postcss-exponential-functions": "^2.0.9", "@csstools/postcss-font-format-keywords": "^4.0.0", "@csstools/postcss-gamut-mapping": "^2.0.10", "@csstools/postcss-gradients-interpolation-method": "^5.0.10", "@csstools/postcss-hwb-function": "^4.0.10", "@csstools/postcss-ic-unit": "^4.0.2", "@csstools/postcss-initial": "^2.0.1", "@csstools/postcss-is-pseudo-class": "^5.0.1", "@csstools/postcss-light-dark-function": "^2.0.9", "@csstools/postcss-logical-float-and-clear": "^3.0.0", "@csstools/postcss-logical-overflow": "^2.0.0", "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", "@csstools/postcss-logical-resize": "^3.0.0", "@csstools/postcss-logical-viewport-units": "^3.0.4", "@csstools/postcss-media-minmax": "^2.0.9", "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.5", "@csstools/postcss-nested-calc": "^4.0.0", "@csstools/postcss-normalize-display-values": "^4.0.0", "@csstools/postcss-oklab-function": "^4.0.10", "@csstools/postcss-progressive-custom-properties": "^4.1.0", "@csstools/postcss-random-function": "^2.0.1", "@csstools/postcss-relative-color-syntax": "^3.0.10", "@csstools/postcss-scope-pseudo-class": "^4.0.1", "@csstools/postcss-sign-functions": "^1.1.4", "@csstools/postcss-stepped-value-functions": "^4.0.9", "@csstools/postcss-text-decoration-shorthand": "^4.0.2", "@csstools/postcss-trigonometric-functions": "^4.0.9", "@csstools/postcss-unset-value": "^4.0.0", "autoprefixer": "^10.4.21", "browserslist": "^4.25.0", "css-blank-pseudo": "^7.0.1", "css-has-pseudo": "^7.0.2", "css-prefers-color-scheme": "^10.0.0", "cssdb": "^8.3.0", "postcss-attribute-case-insensitive": "^7.0.1", "postcss-clamp": "^4.1.0", "postcss-color-functional-notation": "^7.0.10", "postcss-color-hex-alpha": "^10.0.0", "postcss-color-rebeccapurple": "^10.0.0", "postcss-custom-media": "^11.0.6", "postcss-custom-properties": "^14.0.6", "postcss-custom-selectors": "^8.0.5", "postcss-dir-pseudo-class": "^9.0.1", "postcss-double-position-gradients": "^6.0.2", "postcss-focus-visible": "^10.0.1", "postcss-focus-within": "^9.0.1", "postcss-font-variant": "^5.0.0", "postcss-gap-properties": "^6.0.0", "postcss-image-set-function": "^7.0.0", "postcss-lab-function": "^7.0.10", "postcss-logical": "^8.1.0", "postcss-nesting": "^13.0.1", "postcss-opacity-percentage": "^3.0.0", "postcss-overflow-shorthand": "^6.0.0", "postcss-page-break": "^3.0.4", "postcss-place": "^10.0.0", "postcss-pseudo-class-any-link": "^10.0.1", "postcss-replace-overflow-wrap": "^4.0.0", "postcss-selector-not": "^8.0.1" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-mDInnlm4mYhmR0S79hNLzseW9nx4Ihd8s15K99iu6u6QhoSQgqWX9Oj6nTd/8Dz3b0T7v2JSrfnXsDfv9TFvDg=="], + "postcss-preset-env": ["postcss-preset-env@10.2.3", "", { "dependencies": { "@csstools/postcss-cascade-layers": "^5.0.1", "@csstools/postcss-color-function": "^4.0.10", "@csstools/postcss-color-mix-function": "^3.0.10", "@csstools/postcss-color-mix-variadic-function-arguments": "^1.0.0", "@csstools/postcss-content-alt-text": "^2.0.6", "@csstools/postcss-exponential-functions": "^2.0.9", "@csstools/postcss-font-format-keywords": "^4.0.0", "@csstools/postcss-gamut-mapping": "^2.0.10", "@csstools/postcss-gradients-interpolation-method": "^5.0.10", "@csstools/postcss-hwb-function": "^4.0.10", "@csstools/postcss-ic-unit": "^4.0.2", "@csstools/postcss-initial": "^2.0.1", "@csstools/postcss-is-pseudo-class": "^5.0.3", "@csstools/postcss-light-dark-function": "^2.0.9", "@csstools/postcss-logical-float-and-clear": "^3.0.0", "@csstools/postcss-logical-overflow": "^2.0.0", "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", "@csstools/postcss-logical-resize": "^3.0.0", "@csstools/postcss-logical-viewport-units": "^3.0.4", "@csstools/postcss-media-minmax": "^2.0.9", "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.5", "@csstools/postcss-nested-calc": "^4.0.0", "@csstools/postcss-normalize-display-values": "^4.0.0", "@csstools/postcss-oklab-function": "^4.0.10", "@csstools/postcss-progressive-custom-properties": "^4.1.0", "@csstools/postcss-random-function": "^2.0.1", "@csstools/postcss-relative-color-syntax": "^3.0.10", "@csstools/postcss-scope-pseudo-class": "^4.0.1", "@csstools/postcss-sign-functions": "^1.1.4", "@csstools/postcss-stepped-value-functions": "^4.0.9", "@csstools/postcss-text-decoration-shorthand": "^4.0.2", "@csstools/postcss-trigonometric-functions": "^4.0.9", "@csstools/postcss-unset-value": "^4.0.0", "autoprefixer": "^10.4.21", "browserslist": "^4.25.0", "css-blank-pseudo": "^7.0.1", "css-has-pseudo": "^7.0.2", "css-prefers-color-scheme": "^10.0.0", "cssdb": "^8.3.0", "postcss-attribute-case-insensitive": "^7.0.1", "postcss-clamp": "^4.1.0", "postcss-color-functional-notation": "^7.0.10", "postcss-color-hex-alpha": "^10.0.0", "postcss-color-rebeccapurple": "^10.0.0", "postcss-custom-media": "^11.0.6", "postcss-custom-properties": "^14.0.6", "postcss-custom-selectors": "^8.0.5", "postcss-dir-pseudo-class": "^9.0.1", "postcss-double-position-gradients": "^6.0.2", "postcss-focus-visible": "^10.0.1", "postcss-focus-within": "^9.0.1", "postcss-font-variant": "^5.0.0", "postcss-gap-properties": "^6.0.0", "postcss-image-set-function": "^7.0.0", "postcss-lab-function": "^7.0.10", "postcss-logical": "^8.1.0", "postcss-nesting": "^13.0.2", "postcss-opacity-percentage": "^3.0.0", "postcss-overflow-shorthand": "^6.0.0", "postcss-page-break": "^3.0.4", "postcss-place": "^10.0.0", "postcss-pseudo-class-any-link": "^10.0.1", "postcss-replace-overflow-wrap": "^4.0.0", "postcss-selector-not": "^8.0.1" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-zlQN1yYmA7lFeM1wzQI14z97mKoM8qGng+198w1+h6sCud/XxOjcKtApY9jWr7pXNS3yHDEafPlClSsWnkY8ow=="], "postcss-pseudo-class-any-link": ["postcss-pseudo-class-any-link@10.0.1", "", { "dependencies": { "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q=="], @@ -2786,7 +2870,7 @@ "postcss-selector-not": ["postcss-selector-not@8.0.1", "", { "dependencies": { "postcss-selector-parser": "^7.0.0" }, "peerDependencies": { "postcss": "^8.4" } }, "sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA=="], - "postcss-selector-parser": ["postcss-selector-parser@6.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ=="], + "postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], "postcss-sort-media-queries": ["postcss-sort-media-queries@5.2.0", "", { "dependencies": { "sort-css-media-queries": "2.2.0" }, "peerDependencies": { "postcss": "^8.4.23" } }, "sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA=="], @@ -2798,13 +2882,13 @@ "postcss-zindex": ["postcss-zindex@6.0.2", "", { "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg=="], - "posthog-js": ["posthog-js@1.242.2", "", { "dependencies": { "core-js": "^3.38.1", "fflate": "^0.4.8", "preact": "^10.19.3", "web-vitals": "^4.2.4" }, "peerDependencies": { "@rrweb/types": "2.0.0-alpha.17", "rrweb-snapshot": "2.0.0-alpha.17" }, "optionalPeers": ["@rrweb/types", "rrweb-snapshot"] }, "sha512-bj5Bq9Z/TE24k0fbt/VoD13xsqCybuoLp7KkWmfknEiO63+1Ln/PnX/1CjppikE9yM7toQIWY3vY7hT/RTT57Q=="], + "posthog-js": ["posthog-js@1.255.1", "", { "dependencies": { "core-js": "^3.38.1", "fflate": "^0.4.8", "preact": "^10.19.3", "web-vitals": "^4.2.4" }, "peerDependencies": { "@rrweb/types": "2.0.0-alpha.17", "rrweb-snapshot": "2.0.0-alpha.17" }, "optionalPeers": ["@rrweb/types", "rrweb-snapshot"] }, "sha512-KMh0o9MhORhEZVjXpktXB5rJ8PfDk+poqBoTSoLzWgNjhJf6D8jcyB9jUMA6vVPfn4YeepVX5NuclDRqOwr5Mw=="], - "preact": ["preact@10.26.6", "", {}, "sha512-5SRRBinwpwkaD+OqlBDeITlRgvd8I8QlxHJw9AxSdMNV6O+LodN9nUyYGpSF7sadHjs6RzeFShMexC6DbtWr9g=="], + "preact": ["preact@10.26.9", "", {}, "sha512-SSjF9vcnF27mJK1XyFMNJzFd5u3pQiATFqoaDy03XuN00u4ziveVVEGt5RKJrDR8MHE/wJo9Nnad56RLzS2RMA=="], "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], - "prettier": ["prettier@3.5.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="], + "prettier": ["prettier@3.6.0", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-ujSB9uXHJKzM/2GBuE0hBOUgC77CN3Bnpqa+g80bkv3T3A93wL/xlzDATHhnhkzifz/UE2SNOvmbTz5hSkDlHw=="], "pretty-error": ["pretty-error@4.0.0", "", { "dependencies": { "lodash": "^4.17.20", "renderkid": "^3.0.0" } }, "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw=="], @@ -2816,31 +2900,35 @@ "prism-react-renderer": ["prism-react-renderer@2.4.1", "", { "dependencies": { "@types/prismjs": "^1.26.0", "clsx": "^2.0.0" }, "peerDependencies": { "react": ">=16.0.0" } }, "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig=="], - "prismjs": ["prismjs@1.29.0", "", {}, "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q=="], + "prismjs": ["prismjs@1.30.0", "", {}, "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw=="], "proc-log": ["proc-log@4.2.0", "", {}, "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA=="], "process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="], + "promise-inflight": ["promise-inflight@1.0.1", "", {}, "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="], + + "promise-retry": ["promise-retry@2.0.1", "", { "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" } }, "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g=="], + "promisepipe": ["promisepipe@3.0.0", "", {}, "sha512-V6TbZDJ/ZswevgkDNpGt/YqNCiZP9ASfgU+p83uJE6NrGtvSGoOcHLiDCqkMs2+yg7F5qHdLV8d0aS8O26G/KA=="], "prompts": ["prompts@2.4.2", "", { "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }, "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="], "prop-types": ["prop-types@15.8.1", "", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="], - "property-information": ["property-information@6.5.0", "", {}, "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig=="], + "property-information": ["property-information@7.1.0", "", {}, "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ=="], "proto-list": ["proto-list@1.2.4", "", {}, "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="], "proxy-addr": ["proxy-addr@2.0.7", "", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="], - "pump": ["pump@3.0.0", "", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="], + "proxy-from-env": ["proxy-from-env@1.1.0", "", {}, "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="], "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], "pupa": ["pupa@3.1.0", "", { "dependencies": { "escape-goat": "^4.0.0" } }, "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug=="], - "qs": ["qs@6.11.0", "", { "dependencies": { "side-channel": "^1.0.4" } }, "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="], + "qs": ["qs@6.13.0", "", { "dependencies": { "side-channel": "^1.0.6" } }, "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg=="], "quansync": ["quansync@0.2.10", "", {}, "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A=="], @@ -2872,13 +2960,13 @@ "react-json-view-lite": ["react-json-view-lite@2.4.1", "", { "peerDependencies": { "react": "^18.0.0 || ^19.0.0" } }, "sha512-fwFYknRIBxjbFm0kBDrzgBy1xa5tDg2LyXXBepC5f1b+MY3BUClMCsvanMPn089JbV1Eg3nZcrp0VCuH43aXnA=="], - "react-loadable": ["react-loadable@5.5.0", "", { "dependencies": { "prop-types": "^15.5.0" }, "peerDependencies": { "react": "*" } }, "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg=="], + "react-loadable": ["@docusaurus/react-loadable@6.0.0", "", { "dependencies": { "@types/react": "*" }, "peerDependencies": { "react": "*" } }, "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ=="], "react-loadable-ssr-addon-v5-slorber": ["react-loadable-ssr-addon-v5-slorber@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.10.3" }, "peerDependencies": { "react-loadable": "*", "webpack": ">=4.41.1 || 5.x" } }, "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A=="], "react-remark": ["react-remark@2.1.0", "", { "dependencies": { "rehype-react": "^6.0.0", "remark-parse": "^9.0.0", "remark-rehype": "^8.0.0", "unified": "^9.0.0" }, "peerDependencies": { "react": ">=16.8" } }, "sha512-7dEPxRGQ23sOdvteuRGaQAs9cEOH/BOeCN4CqsJdk3laUDIDYRCWnM6a3z92PzXHUuxIRLXQNZx7SiO0ijUcbw=="], - "react-remove-scroll": ["react-remove-scroll@2.6.3", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.7", "react-style-singleton": "^2.2.3", "tslib": "^2.1.0", "use-callback-ref": "^1.3.3", "use-sidecar": "^1.1.3" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ=="], + "react-remove-scroll": ["react-remove-scroll@2.7.1", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.7", "react-style-singleton": "^2.2.3", "tslib": "^2.1.0", "use-callback-ref": "^1.3.3", "use-sidecar": "^1.1.3" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA=="], "react-remove-scroll-bar": ["react-remove-scroll-bar@2.3.8", "", { "dependencies": { "react-style-singleton": "^2.2.2", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q=="], @@ -2900,21 +2988,23 @@ "readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="], - "readdirp": ["readdirp@3.3.0", "", { "dependencies": { "picomatch": "^2.0.7" } }, "sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ=="], + "readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="], - "recharts": ["recharts@2.15.3", "", { "dependencies": { "clsx": "^2.0.0", "eventemitter3": "^4.0.1", "lodash": "^4.17.21", "react-is": "^18.3.1", "react-smooth": "^4.0.4", "recharts-scale": "^0.4.4", "tiny-invariant": "^1.3.1", "victory-vendor": "^36.6.8" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-EdOPzTwcFSuqtvkDoaM5ws/Km1+WTAO2eizL7rqiG0V2UVhTnz0m7J2i0CjVPUCdEkZImaWvXLbZDS2H5t6GFQ=="], + "recharts": ["recharts@2.15.4", "", { "dependencies": { "clsx": "^2.0.0", "eventemitter3": "^4.0.1", "lodash": "^4.17.21", "react-is": "^18.3.1", "react-smooth": "^4.0.4", "recharts-scale": "^0.4.4", "tiny-invariant": "^1.3.1", "victory-vendor": "^36.6.8" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw=="], "recharts-scale": ["recharts-scale@0.4.5", "", { "dependencies": { "decimal.js-light": "^2.4.1" } }, "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w=="], - "reflect.getprototypeof": ["reflect.getprototypeof@1.0.10", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.9", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.7", "get-proto": "^1.0.1", "which-builtin-type": "^1.2.1" } }, "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw=="], + "recma-build-jsx": ["recma-build-jsx@1.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-util-build-jsx": "^3.0.0", "vfile": "^6.0.0" } }, "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew=="], - "regenerate": ["regenerate@1.4.2", "", {}, "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="], + "recma-jsx": ["recma-jsx@1.0.0", "", { "dependencies": { "acorn-jsx": "^5.0.0", "estree-util-to-js": "^2.0.0", "recma-parse": "^1.0.0", "recma-stringify": "^1.0.0", "unified": "^11.0.0" } }, "sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q=="], + + "recma-parse": ["recma-parse@1.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "esast-util-from-js": "^2.0.0", "unified": "^11.0.0", "vfile": "^6.0.0" } }, "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ=="], - "regenerate-unicode-properties": ["regenerate-unicode-properties@10.1.1", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q=="], + "recma-stringify": ["recma-stringify@1.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-util-to-js": "^2.0.0", "unified": "^11.0.0", "vfile": "^6.0.0" } }, "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g=="], - "regenerator-runtime": ["regenerator-runtime@0.14.1", "", {}, "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="], + "regenerate": ["regenerate@1.4.2", "", {}, "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="], - "regenerator-transform": ["regenerator-transform@0.15.2", "", { "dependencies": { "@babel/runtime": "^7.8.4" } }, "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="], + "regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], "regex": ["regex@5.1.1", "", { "dependencies": { "regex-utilities": "^2.3.0" } }, "sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw=="], @@ -2922,33 +3012,35 @@ "regex-utilities": ["regex-utilities@2.3.0", "", {}, "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng=="], - "regexp.prototype.flags": ["regexp.prototype.flags@1.5.4", "", { "dependencies": { "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "get-proto": "^1.0.1", "gopd": "^1.2.0", "set-function-name": "^2.0.2" } }, "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA=="], - - "regexpu-core": ["regexpu-core@5.3.2", "", { "dependencies": { "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.1.0", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ=="], + "regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - "registry-auth-token": ["registry-auth-token@5.0.2", "", { "dependencies": { "@pnpm/npm-conf": "^2.1.0" } }, "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ=="], + "registry-auth-token": ["registry-auth-token@5.1.0", "", { "dependencies": { "@pnpm/npm-conf": "^2.1.0" } }, "sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw=="], "registry-url": ["registry-url@6.0.1", "", { "dependencies": { "rc": "1.2.8" } }, "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q=="], "regjsgen": ["regjsgen@0.8.0", "", {}, "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q=="], - "regjsparser": ["regjsparser@0.9.1", "", { "dependencies": { "jsesc": "~0.5.0" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ=="], + "regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - "rehype-katex": ["rehype-katex@7.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/katex": "^0.16.0", "hast-util-from-html-isomorphic": "^2.0.0", "hast-util-to-text": "^4.0.0", "katex": "^0.16.0", "unist-util-visit-parents": "^6.0.0", "vfile": "^6.0.0" } }, "sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q=="], + "rehype-external-links": ["rehype-external-links@3.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "@ungap/structured-clone": "^1.0.0", "hast-util-is-element": "^3.0.0", "is-absolute-url": "^4.0.0", "space-separated-tokens": "^2.0.0", "unist-util-visit": "^5.0.0" } }, "sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw=="], + + "rehype-katex": ["rehype-katex@7.0.1", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/katex": "^0.16.0", "hast-util-from-html-isomorphic": "^2.0.0", "hast-util-to-text": "^4.0.0", "katex": "^0.16.0", "unist-util-visit-parents": "^6.0.0", "vfile": "^6.0.0" } }, "sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA=="], "rehype-raw": ["rehype-raw@7.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "hast-util-raw": "^9.0.0", "vfile": "^6.0.0" } }, "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww=="], "rehype-react": ["rehype-react@8.0.0", "", { "dependencies": { "@types/hast": "^3.0.0", "hast-util-to-jsx-runtime": "^2.0.0", "unified": "^11.0.0" } }, "sha512-vzo0YxYbB2HE+36+9HWXVdxNoNDubx63r5LBzpxBGVWM8s9mdnMdbmuJBAX6TTyuGdZjZix6qU3GcSuKCIWivw=="], + "rehype-recma": ["rehype-recma@1.0.0", "", { "dependencies": { "@types/estree": "^1.0.0", "@types/hast": "^3.0.0", "hast-util-to-estree": "^3.0.0" } }, "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw=="], + "relateurl": ["relateurl@0.2.7", "", {}, "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog=="], - "remark-directive": ["remark-directive@3.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-directive": "^3.0.0", "micromark-extension-directive": "^3.0.0", "unified": "^11.0.0" } }, "sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA=="], + "remark-directive": ["remark-directive@3.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-directive": "^3.0.0", "micromark-extension-directive": "^3.0.0", "unified": "^11.0.0" } }, "sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A=="], "remark-emoji": ["remark-emoji@4.0.1", "", { "dependencies": { "@types/mdast": "^4.0.2", "emoticon": "^4.0.1", "mdast-util-find-and-replace": "^3.0.1", "node-emoji": "^2.1.0", "unified": "^11.0.4" } }, "sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg=="], "remark-frontmatter": ["remark-frontmatter@5.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-frontmatter": "^2.0.0", "micromark-extension-frontmatter": "^2.0.0", "unified": "^11.0.0" } }, "sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ=="], - "remark-gfm": ["remark-gfm@4.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-gfm": "^3.0.0", "micromark-extension-gfm": "^3.0.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "unified": "^11.0.0" } }, "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA=="], + "remark-gfm": ["remark-gfm@4.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-gfm": "^3.0.0", "micromark-extension-gfm": "^3.0.0", "remark-parse": "^11.0.0", "remark-stringify": "^11.0.0", "unified": "^11.0.0" } }, "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg=="], "remark-math": ["remark-math@6.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-math": "^3.0.0", "micromark-extension-math": "^3.0.0", "unified": "^11.0.0" } }, "sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA=="], @@ -2956,10 +3048,12 @@ "remark-parse": ["remark-parse@11.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-from-markdown": "^2.0.0", "micromark-util-types": "^2.0.0", "unified": "^11.0.0" } }, "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA=="], - "remark-rehype": ["remark-rehype@11.1.0", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "mdast-util-to-hast": "^13.0.0", "unified": "^11.0.0", "vfile": "^6.0.0" } }, "sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g=="], + "remark-rehype": ["remark-rehype@11.1.2", "", { "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", "mdast-util-to-hast": "^13.0.0", "unified": "^11.0.0", "vfile": "^6.0.0" } }, "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw=="], "remark-stringify": ["remark-stringify@11.0.0", "", { "dependencies": { "@types/mdast": "^4.0.0", "mdast-util-to-markdown": "^2.0.0", "unified": "^11.0.0" } }, "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw=="], + "remove-trailing-separator": ["remove-trailing-separator@1.1.0", "", {}, "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw=="], + "renderkid": ["renderkid@3.0.0", "", { "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", "htmlparser2": "^6.1.0", "lodash": "^4.17.21", "strip-ansi": "^6.0.1" } }, "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg=="], "repeat-string": ["repeat-string@1.6.1", "", {}, "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w=="], @@ -2970,11 +3064,11 @@ "requires-port": ["requires-port@1.0.0", "", {}, "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="], - "resolve": ["resolve@2.0.0-next.5", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA=="], + "resolve": ["resolve@1.22.10", "", { "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w=="], "resolve-alpn": ["resolve-alpn@1.2.1", "", {}, "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="], - "resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + "resolve-from": ["resolve-from@5.0.0", "", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="], "resolve-pathname": ["resolve-pathname@3.0.0", "", {}, "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng=="], @@ -2984,7 +3078,7 @@ "retry": ["retry@0.13.1", "", {}, "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="], - "reusify": ["reusify@1.0.4", "", {}, "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="], + "reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="], "rfdc": ["rfdc@1.4.1", "", {}, "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="], @@ -2994,21 +3088,17 @@ "roughjs": ["roughjs@4.6.6", "", { "dependencies": { "hachure-fill": "^0.5.2", "path-data-parser": "^0.1.0", "points-on-curve": "^0.2.0", "points-on-path": "^0.2.1" } }, "sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ=="], - "rtlcss": ["rtlcss@4.1.1", "", { "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0", "postcss": "^8.4.21", "strip-json-comments": "^3.1.1" }, "bin": { "rtlcss": "bin/rtlcss.js" } }, "sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ=="], + "rtlcss": ["rtlcss@4.3.0", "", { "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0", "postcss": "^8.4.21", "strip-json-comments": "^3.1.1" }, "bin": { "rtlcss": "bin/rtlcss.js" } }, "sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig=="], "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], "rw": ["rw@1.3.3", "", {}, "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ=="], - "sade": ["sade@1.8.1", "", { "dependencies": { "mri": "^1.1.0" } }, "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A=="], - - "safe-array-concat": ["safe-array-concat@1.1.3", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "has-symbols": "^1.1.0", "isarray": "^2.0.5" } }, "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q=="], - - "safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], + "sablier": ["sablier@1.0.0-beta.8", "", { "dependencies": { "lodash": "^4.17.21", "viem": "^2.31.7" } }, "sha512-wROqC/vwe4mOMrSe24Ya01UBJCo/Ct8jJn7w4+D7+A24HwpM1sjtLkIAorVekxGO661WzxmDix6oTeDYqYGYcA=="], - "safe-push-apply": ["safe-push-apply@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "isarray": "^2.0.5" } }, "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA=="], + "sade": ["sade@1.8.1", "", { "dependencies": { "mri": "^1.1.0" } }, "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A=="], - "safe-regex-test": ["safe-regex-test@1.0.3", "", { "dependencies": { "call-bind": "^1.0.6", "es-errors": "^1.3.0", "is-regex": "^1.1.4" } }, "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw=="], + "safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="], @@ -3018,9 +3108,9 @@ "schema-dts": ["schema-dts@1.1.5", "", {}, "sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg=="], - "schema-utils": ["schema-utils@4.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g=="], + "schema-utils": ["schema-utils@4.3.2", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ=="], - "search-insights": ["search-insights@2.14.0", "", {}, "sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw=="], + "search-insights": ["search-insights@2.17.3", "", {}, "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ=="], "section-matter": ["section-matter@1.0.0", "", { "dependencies": { "extend-shallow": "^2.0.1", "kind-of": "^6.0.0" } }, "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA=="], @@ -3028,11 +3118,11 @@ "selfsigned": ["selfsigned@2.4.1", "", { "dependencies": { "@types/node-forge": "^1.3.0", "node-forge": "^1" } }, "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q=="], - "semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + "semver": ["semver@7.5.4", "", { "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" } }, "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA=="], "semver-diff": ["semver-diff@4.0.0", "", { "dependencies": { "semver": "^7.3.5" } }, "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA=="], - "send": ["send@0.18.0", "", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }, "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="], + "send": ["send@0.19.0", "", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }, "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw=="], "serialize-javascript": ["serialize-javascript@6.0.2", "", { "dependencies": { "randombytes": "^2.1.0" } }, "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g=="], @@ -3040,16 +3130,10 @@ "serve-index": ["serve-index@1.9.1", "", { "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", "http-errors": "~1.6.2", "mime-types": "~2.1.17", "parseurl": "~1.3.2" } }, "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw=="], - "serve-static": ["serve-static@1.15.0", "", { "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }, "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g=="], - - "set-blocking": ["set-blocking@2.0.0", "", {}, "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="], + "serve-static": ["serve-static@1.16.2", "", { "dependencies": { "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.19.0" } }, "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw=="], "set-function-length": ["set-function-length@1.2.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="], - "set-function-name": ["set-function-name@2.0.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.2" } }, "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ=="], - - "set-proto": ["set-proto@1.0.0", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0" } }, "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw=="], - "setimmediate": ["setimmediate@1.0.5", "", {}, "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="], "setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="], @@ -3062,7 +3146,7 @@ "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], - "shell-quote": ["shell-quote@1.8.1", "", {}, "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA=="], + "shell-quote": ["shell-quote@1.8.3", "", {}, "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw=="], "shiki": ["shiki@1.29.2", "", { "dependencies": { "@shikijs/core": "1.29.2", "@shikijs/engine-javascript": "1.29.2", "@shikijs/engine-oniguruma": "1.29.2", "@shikijs/langs": "1.29.2", "@shikijs/themes": "1.29.2", "@shikijs/types": "1.29.2", "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4" } }, "sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg=="], @@ -3074,7 +3158,7 @@ "side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="], - "signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + "signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], "sirv": ["sirv@2.0.4", "", { "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", "totalist": "^3.0.0" } }, "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ=="], @@ -3104,6 +3188,14 @@ "space-separated-tokens": ["space-separated-tokens@2.0.2", "", {}, "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q=="], + "spdx-correct": ["spdx-correct@3.2.0", "", { "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA=="], + + "spdx-exceptions": ["spdx-exceptions@2.5.0", "", {}, "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="], + + "spdx-expression-parse": ["spdx-expression-parse@3.0.1", "", { "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="], + + "spdx-license-ids": ["spdx-license-ids@3.0.21", "", {}, "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg=="], + "spdy": ["spdy@4.0.2", "", { "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" } }, "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA=="], "spdy-transport": ["spdy-transport@3.0.0", "", { "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" } }, "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw=="], @@ -3118,9 +3210,7 @@ "statuses": ["statuses@2.0.1", "", {}, "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="], - "std-env": ["std-env@3.7.0", "", {}, "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg=="], - - "stop-iteration-iterator": ["stop-iteration-iterator@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "internal-slot": "^1.1.0" } }, "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ=="], + "std-env": ["std-env@3.9.0", "", {}, "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw=="], "stream-to-array": ["stream-to-array@2.3.0", "", { "dependencies": { "any-promise": "^1.1.0" } }, "sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA=="], @@ -3128,17 +3218,11 @@ "string-argv": ["string-argv@0.3.2", "", {}, "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q=="], - "string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], - - "string.prototype.matchall": ["string.prototype.matchall@4.0.12", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "regexp.prototype.flags": "^1.5.3", "set-function-name": "^2.0.2", "side-channel": "^1.1.0" } }, "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA=="], - - "string.prototype.repeat": ["string.prototype.repeat@1.0.0", "", { "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w=="], + "string-env-interpolation": ["string-env-interpolation@1.0.1", "", {}, "sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg=="], - "string.prototype.trim": ["string.prototype.trim@1.2.9", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.0", "es-object-atoms": "^1.0.0" } }, "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw=="], - - "string.prototype.trimend": ["string.prototype.trimend@1.0.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ=="], + "string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], - "string.prototype.trimstart": ["string.prototype.trimstart@1.0.8", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg=="], + "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], "string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="], @@ -3146,19 +3230,23 @@ "stringify-object": ["stringify-object@3.3.0", "", { "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" } }, "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="], - "strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + "strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], + + "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], "strip-bom-string": ["strip-bom-string@1.0.0", "", {}, "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g=="], - "strip-final-newline": ["strip-final-newline@3.0.0", "", {}, "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw=="], + "strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], - "style-to-object": ["style-to-object@0.4.4", "", { "dependencies": { "inline-style-parser": "0.1.1" } }, "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg=="], + "style-to-js": ["style-to-js@1.1.17", "", { "dependencies": { "style-to-object": "1.0.9" } }, "sha512-xQcBGDxJb6jjFCTzvQtfiPn6YvvP2O8U1MDIPNfJQlWMYfktPy+iGsHE7cssjs7y84d9fQaK4UF3RIJaAHSoYA=="], + + "style-to-object": ["style-to-object@1.0.9", "", { "dependencies": { "inline-style-parser": "0.2.4" } }, "sha512-G4qppLgKu/k6FwRpHiGiKPaPTFcG3g4wNVX/Qsfu+RqQM30E7Tyu/TEgxcL9PNLF5pdRLwQdE3YKKf+KF2Dzlw=="], "style-value-types": ["style-value-types@5.0.0", "", { "dependencies": { "hey-listen": "^1.0.8", "tslib": "^2.1.0" } }, "sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA=="], - "styled-components": ["styled-components@6.1.18", "", { "dependencies": { "@emotion/is-prop-valid": "1.2.2", "@emotion/unitless": "0.8.1", "@types/stylis": "4.2.5", "css-to-react-native": "3.2.0", "csstype": "3.1.3", "postcss": "8.4.49", "shallowequal": "1.1.0", "stylis": "4.3.2", "tslib": "2.6.2" }, "peerDependencies": { "react": ">= 16.8.0", "react-dom": ">= 16.8.0" } }, "sha512-Mvf3gJFzZCkhjY2Y/Fx9z1m3dxbza0uI9H1CbNZm/jSHCojzJhQ0R7bByrlFJINnMzz/gPulpoFFGymNwrsMcw=="], + "styled-components": ["styled-components@6.1.19", "", { "dependencies": { "@emotion/is-prop-valid": "1.2.2", "@emotion/unitless": "0.8.1", "@types/stylis": "4.2.5", "css-to-react-native": "3.2.0", "csstype": "3.1.3", "postcss": "8.4.49", "shallowequal": "1.1.0", "stylis": "4.3.2", "tslib": "2.6.2" }, "peerDependencies": { "react": ">= 16.8.0", "react-dom": ">= 16.8.0" } }, "sha512-1v/e3Dl1BknC37cXMhwGomhO8AkYmN41CqyX9xhUDxry1ns3BFQy2lLDRQXJRdVVWB9OHemv/53xaStimvWyuA=="], "stylehacks": ["stylehacks@6.1.1", "", { "dependencies": { "browserslist": "^4.23.0", "postcss-selector-parser": "^6.0.16" }, "peerDependencies": { "postcss": "^8.4.31" } }, "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg=="], @@ -3172,42 +3260,46 @@ "svgo": ["svgo@3.3.2", "", { "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", "css-tree": "^2.3.1", "css-what": "^6.1.0", "csso": "^5.0.5", "picocolors": "^1.0.0" }, "bin": "./bin/svgo" }, "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw=="], + "swc-loader": ["swc-loader@0.2.6", "", { "dependencies": { "@swc/counter": "^0.1.3" }, "peerDependencies": { "@swc/core": "^1.2.147", "webpack": ">=2" } }, "sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg=="], + "swr": ["swr@2.3.3", "", { "dependencies": { "dequal": "^2.0.3", "use-sync-external-store": "^1.4.0" }, "peerDependencies": { "react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A=="], + "sync-fetch": ["sync-fetch@0.6.0-2", "", { "dependencies": { "node-fetch": "^3.3.2", "timeout-signal": "^2.0.0", "whatwg-mimetype": "^4.0.0" } }, "sha512-c7AfkZ9udatCuAy9RSfiGPpeOKKUAUK5e1cXadLOGUjasdxqYqAK0jTNkM/FSEyJ3a5Ra27j/tw/PS0qLmaF/A=="], + "synckit": ["synckit@0.11.8", "", { "dependencies": { "@pkgr/core": "^0.2.4" } }, "sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A=="], "tailwind-merge": ["tailwind-merge@2.6.0", "", {}, "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA=="], - "tailwindcss": ["tailwindcss@4.1.7", "", {}, "sha512-kr1o/ErIdNhTz8uzAYL7TpaUuzKIE6QPQ4qmSdxnoX/lo+5wmUHQA6h3L5yIqEImSRnAAURDirLu/BgiXGPAhg=="], + "tailwindcss": ["tailwindcss@4.1.10", "", {}, "sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA=="], "tailwindcss-animate": ["tailwindcss-animate@1.0.7", "", { "peerDependencies": { "tailwindcss": ">=3.0.0 || insiders" } }, "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA=="], - "tapable": ["tapable@2.2.1", "", {}, "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="], + "tapable": ["tapable@2.2.2", "", {}, "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg=="], - "tar": ["tar@4.4.18", "", { "dependencies": { "chownr": "^1.1.4", "fs-minipass": "^1.2.7", "minipass": "^2.9.0", "minizlib": "^1.3.3", "mkdirp": "^0.5.5", "safe-buffer": "^5.2.1", "yallist": "^3.1.1" } }, "sha512-ZuOtqqmkV9RE1+4odd+MhBpibmCxNP6PJhH/h2OqNuotTX7/XHPZQJv2pKvWMplFH9SIZZhitehh6vBH6LO8Pg=="], + "tar": ["tar@6.2.1", "", { "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" } }, "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A=="], - "terser": ["terser@5.31.1", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg=="], + "terser": ["terser@5.43.1", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg=="], - "terser-webpack-plugin": ["terser-webpack-plugin@5.3.11", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", "schema-utils": "^4.3.0", "serialize-javascript": "^6.0.2", "terser": "^5.31.1" }, "peerDependencies": { "webpack": "^5.1.0" } }, "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ=="], + "terser-webpack-plugin": ["terser-webpack-plugin@5.3.14", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", "schema-utils": "^4.3.0", "serialize-javascript": "^6.0.2", "terser": "^5.31.1" }, "peerDependencies": { "webpack": "^5.1.0" } }, "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw=="], - "text-table": ["text-table@0.2.0", "", {}, "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="], + "throttleit": ["throttleit@2.1.0", "", {}, "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw=="], "thunky": ["thunky@1.1.0", "", {}, "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="], "time-span": ["time-span@4.0.0", "", { "dependencies": { "convert-hrtime": "^3.0.0" } }, "sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g=="], + "timeout-signal": ["timeout-signal@2.0.0", "", {}, "sha512-YBGpG4bWsHoPvofT6y/5iqulfXIiIErl5B0LdtHT1mGXDFTAhhRrbUpTvBgYbovr+3cKblya2WAOcpoy90XguA=="], + "tiny-invariant": ["tiny-invariant@1.3.3", "", {}, "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="], "tiny-warning": ["tiny-warning@1.0.3", "", {}, "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="], - "tinyexec": ["tinyexec@1.0.1", "", {}, "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw=="], + "tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="], - "tinypool": ["tinypool@1.1.0", "", {}, "sha512-7CotroY9a8DKsKprEy/a14aCCm8jYVmR7aFy4fpkZM8sdpNJbKkixuNjgM50yCmip2ezc8z4N7k3oe2+rfRJCQ=="], + "tinypool": ["tinypool@1.1.1", "", {}, "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg=="], "tmp": ["tmp@0.0.33", "", { "dependencies": { "os-tmpdir": "~1.0.2" } }, "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="], - "to-fast-properties": ["to-fast-properties@2.0.0", "", {}, "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="], - "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], "toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="], @@ -3222,37 +3314,25 @@ "trough": ["trough@2.2.0", "", {}, "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw=="], - "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], - "ts-dedent": ["ts-dedent@2.2.0", "", {}, "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ=="], "ts-morph": ["ts-morph@12.0.0", "", { "dependencies": { "@ts-morph/common": "~0.11.0", "code-block-writer": "^10.1.1" } }, "sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA=="], - "ts-node": ["ts-node@10.9.1", "", { "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "optionalPeers": ["@swc/core", "@swc/wasm"], "bin": { "ts-node": "dist/bin.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js", "ts-script": "dist/bin-script-deprecated.js" } }, "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw=="], + "ts-node": ["ts-node@10.9.1", "", { "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "optionalPeers": ["@swc/core", "@swc/wasm"], "bin": { "ts-node": "dist/bin.js", "ts-script": "dist/bin-script-deprecated.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js" } }, "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw=="], "ts-toolbelt": ["ts-toolbelt@6.15.5", "", {}, "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A=="], - "tslib": ["tslib@2.6.3", "", {}, "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="], - - "tsutils": ["tsutils@3.21.0", "", { "dependencies": { "tslib": "^1.8.1" }, "peerDependencies": { "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="], + "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], - "type-fest": ["type-fest@0.20.2", "", {}, "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="], + "type-fest": ["type-fest@2.19.0", "", {}, "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="], "type-is": ["type-is@1.6.18", "", { "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }, "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="], - "typed-array-buffer": ["typed-array-buffer@1.0.2", "", { "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "is-typed-array": "^1.1.13" } }, "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ=="], + "typedarray": ["typedarray@0.0.6", "", {}, "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="], - "typed-array-byte-length": ["typed-array-byte-length@1.0.1", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" } }, "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw=="], - - "typed-array-byte-offset": ["typed-array-byte-offset@1.0.2", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13" } }, "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA=="], - - "typed-array-length": ["typed-array-length@1.0.6", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0" } }, "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g=="], - - "typedarray": ["typedarray@0.0.6", "", {}, "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="], - - "typedarray-to-buffer": ["typedarray-to-buffer@3.1.5", "", { "dependencies": { "is-typedarray": "^1.0.0" } }, "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="], + "typedarray-to-buffer": ["typedarray-to-buffer@3.1.5", "", { "dependencies": { "is-typedarray": "^1.0.0" } }, "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="], "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], @@ -3260,19 +3340,17 @@ "uid-promise": ["uid-promise@1.0.0", "", {}, "sha512-R8375j0qwXyIu/7R0tjdF06/sElHqbmdmWC9M2qQHpEVbvE4I5+38KJI7LUUmQMp7NVq4tKHiBMkT0NFM453Ig=="], - "unbox-primitive": ["unbox-primitive@1.0.2", "", { "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" } }, "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="], - "undici": ["undici@5.28.4", "", { "dependencies": { "@fastify/busboy": "^2.0.0" } }, "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g=="], - "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + "undici-types": ["undici-types@7.8.0", "", {}, "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw=="], - "unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@2.0.0", "", {}, "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="], + "unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@2.0.1", "", {}, "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg=="], "unicode-emoji-modifier-base": ["unicode-emoji-modifier-base@1.0.0", "", {}, "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g=="], "unicode-match-property-ecmascript": ["unicode-match-property-ecmascript@2.0.0", "", { "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" } }, "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="], - "unicode-match-property-value-ecmascript": ["unicode-match-property-value-ecmascript@2.1.0", "", {}, "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA=="], + "unicode-match-property-value-ecmascript": ["unicode-match-property-value-ecmascript@2.2.0", "", {}, "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg=="], "unicode-property-aliases-ecmascript": ["unicode-property-aliases-ecmascript@2.1.0", "", {}, "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="], @@ -3288,7 +3366,7 @@ "unist-util-generated": ["unist-util-generated@1.1.6", "", {}, "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg=="], - "unist-util-inspect": ["unist-util-inspect@8.0.0", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-/3Wn/wU6/H6UEo4FoYUeo8KUePN8ERiZpQYFWYoihOsr1DoDuv80PeB0hobVZyYSvALa2e556bG1A1/AbwU4yg=="], + "unist-util-inspect": ["unist-util-inspect@8.1.0", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-mOlg8Mp33pR0eeFpo5d2902ojqFFOKMMG2hF8bmH7ZlhnmjFgh0NI3/ZDwdaBJNbvrS7LZFVrBVtIE9KZ9s7vQ=="], "unist-util-is": ["unist-util-is@6.0.0", "", { "dependencies": { "@types/unist": "^3.0.0" } }, "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw=="], @@ -3306,11 +3384,13 @@ "universalify": ["universalify@2.0.1", "", {}, "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw=="], + "unixify": ["unixify@1.0.0", "", { "dependencies": { "normalize-path": "^2.1.1" } }, "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg=="], + "unpipe": ["unpipe@1.0.0", "", {}, "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="], "unraw": ["unraw@3.0.0", "", {}, "sha512-08/DA66UF65OlpUDIQtbJyrqTR0jTAlJ+jsnkQ4jxR7+K5g5YG1APZKQSMCE1vqqmD+2pv6+IdEjmopFatacvg=="], - "update-browserslist-db": ["update-browserslist-db@1.1.2", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="], + "update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], "update-notifier": ["update-notifier@6.0.2", "", { "dependencies": { "boxen": "^7.0.0", "chalk": "^5.0.1", "configstore": "^6.0.0", "has-yarn": "^3.0.0", "import-lazy": "^4.0.0", "is-ci": "^3.0.1", "is-installed-globally": "^0.4.0", "is-npm": "^6.0.0", "is-yarn-global": "^0.4.0", "latest-version": "^7.0.0", "pupa": "^3.1.0", "semver": "^7.3.7", "semver-diff": "^4.0.0", "xdg-basedir": "^5.1.0" } }, "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og=="], @@ -3318,12 +3398,16 @@ "url-loader": ["url-loader@4.1.1", "", { "dependencies": { "loader-utils": "^2.0.0", "mime-types": "^2.1.27", "schema-utils": "^3.0.0" }, "peerDependencies": { "file-loader": "*", "webpack": "^4.0.0 || ^5.0.0" }, "optionalPeers": ["file-loader"] }, "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA=="], + "urlpattern-polyfill": ["urlpattern-polyfill@10.1.0", "", {}, "sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw=="], + "use-callback-ref": ["use-callback-ref@1.3.3", "", { "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg=="], "use-sidecar": ["use-sidecar@1.1.3", "", { "dependencies": { "detect-node-es": "^1.1.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ=="], "use-sync-external-store": ["use-sync-external-store@1.5.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A=="], + "utf-8-validate": ["utf-8-validate@6.0.5", "", { "dependencies": { "node-gyp-build": "^4.3.0" } }, "sha512-EYZR+OpIXp9Y1eG1iueg8KRsY8TuT8VNgnanZ0uA3STqhHQTLwbl+WX76/9X5OY12yQubymBpaBSmMPkSTQcKA=="], + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], "utila": ["utila@0.4.0", "", {}, "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA=="], @@ -3332,21 +3416,25 @@ "utils-merge": ["utils-merge@1.0.1", "", {}, "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="], - "uuid": ["uuid@3.3.2", "", { "bin": { "uuid": "./bin/uuid" } }, "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="], + "uuid": ["uuid@11.1.0", "", { "bin": { "uuid": "dist/esm/bin/uuid" } }, "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A=="], "uvu": ["uvu@0.5.6", "", { "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", "sade": "^1.7.3" }, "bin": { "uvu": "bin.js" } }, "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA=="], "v8-compile-cache-lib": ["v8-compile-cache-lib@3.0.1", "", {}, "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg=="], + "validate-npm-package-license": ["validate-npm-package-license@3.0.4", "", { "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="], + + "validate-npm-package-name": ["validate-npm-package-name@5.0.1", "", {}, "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ=="], + "value-equal": ["value-equal@1.0.1", "", {}, "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw=="], "vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="], - "vercel": ["vercel@34.4.0", "", { "dependencies": { "@vercel/build-utils": "8.3.2", "@vercel/fun": "1.1.0", "@vercel/go": "3.1.1", "@vercel/hydrogen": "1.0.2", "@vercel/next": "4.3.2", "@vercel/node": "3.2.3", "@vercel/python": "4.3.0", "@vercel/redwood": "2.1.0", "@vercel/remix-builder": "2.1.10", "@vercel/ruby": "2.1.0", "@vercel/static-build": "2.5.14", "chokidar": "3.3.1" }, "bin": { "vc": "dist/index.js", "vercel": "dist/index.js" } }, "sha512-QOErHTqWRfR9zz11uRB/CJgmeYtnia1CTBC1rk0hWU1QXMohqCXB6qjmFC87cNKBlMb5sNE5c7YvXBCVBuKRAQ=="], + "vercel": ["vercel@43.3.0", "", { "dependencies": { "@vercel/blob": "1.0.2", "@vercel/build-utils": "10.6.1", "@vercel/fun": "1.1.6", "@vercel/go": "3.2.1", "@vercel/hydrogen": "1.2.2", "@vercel/next": "4.9.0", "@vercel/node": "5.3.0", "@vercel/python": "4.7.2", "@vercel/redwood": "2.3.3", "@vercel/remix-builder": "5.4.9", "@vercel/ruby": "2.2.0", "@vercel/static-build": "2.7.10", "chokidar": "4.0.0", "jose": "5.9.6" }, "bin": { "vc": "dist/vc.js", "vercel": "dist/vc.js" } }, "sha512-EID1ooEAp8F6JxR9WEckDX91qBuLhNvEltHbdKVmYwAbaPyB8q/G/51DJgDoT4ZALdbDujsVxGXDUp0nU26ouQ=="], "vfile": ["vfile@6.0.3", "", { "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" } }, "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q=="], - "vfile-location": ["vfile-location@5.0.2", "", { "dependencies": { "@types/unist": "^3.0.0", "vfile": "^6.0.0" } }, "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg=="], + "vfile-location": ["vfile-location@5.0.3", "", { "dependencies": { "@types/unist": "^3.0.0", "vfile": "^6.0.0" } }, "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg=="], "vfile-message": ["vfile-message@4.0.2", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw=="], @@ -3374,17 +3462,19 @@ "walk-up-path": ["walk-up-path@3.0.1", "", {}, "sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA=="], - "watchpack": ["watchpack@2.4.1", "", { "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" } }, "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg=="], + "watchpack": ["watchpack@2.4.4", "", { "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" } }, "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA=="], "wbuf": ["wbuf@1.7.3", "", { "dependencies": { "minimalistic-assert": "^1.0.0" } }, "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="], "web-namespaces": ["web-namespaces@2.0.1", "", {}, "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ=="], + "web-streams-polyfill": ["web-streams-polyfill@3.3.3", "", {}, "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw=="], + "web-vitals": ["web-vitals@4.2.4", "", {}, "sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw=="], "webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="], - "webpack": ["webpack@5.98.0", "", { "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.6", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.14.0", "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^4.3.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.11", "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" } }, "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA=="], + "webpack": ["webpack@5.99.9", "", { "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.14.0", "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^4.3.2", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.11", "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" } }, "sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg=="], "webpack-bundle-analyzer": ["webpack-bundle-analyzer@4.10.2", "", { "dependencies": { "@discoveryjs/json-ext": "0.5.7", "acorn": "^8.0.4", "acorn-walk": "^8.0.0", "commander": "^7.2.0", "debounce": "^1.2.1", "escape-string-regexp": "^4.0.0", "gzip-size": "^6.0.0", "html-escaper": "^2.0.2", "opener": "^1.5.2", "picocolors": "^1.0.0", "sirv": "^2.0.3", "ws": "^7.3.1" }, "bin": { "webpack-bundle-analyzer": "lib/bin/analyzer.js" } }, "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw=="], @@ -3394,7 +3484,7 @@ "webpack-merge": ["webpack-merge@5.10.0", "", { "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", "wildcard": "^2.0.0" } }, "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA=="], - "webpack-sources": ["webpack-sources@3.2.3", "", {}, "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="], + "webpack-sources": ["webpack-sources@3.3.3", "", {}, "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg=="], "webpackbar": ["webpackbar@6.0.1", "", { "dependencies": { "ansi-escapes": "^4.3.2", "chalk": "^4.1.2", "consola": "^3.2.3", "figures": "^3.2.0", "markdown-table": "^2.0.0", "pretty-time": "^1.1.0", "std-env": "^3.7.0", "wrap-ansi": "^7.0.0" }, "peerDependencies": { "webpack": "3 || 4 || 5" } }, "sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q=="], @@ -3402,20 +3492,12 @@ "websocket-extensions": ["websocket-extensions@0.1.4", "", {}, "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="], + "whatwg-mimetype": ["whatwg-mimetype@4.0.0", "", {}, "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg=="], + "whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="], "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], - "which-boxed-primitive": ["which-boxed-primitive@1.0.2", "", { "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" } }, "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="], - - "which-builtin-type": ["which-builtin-type@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", "is-date-object": "^1.1.0", "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", "is-regex": "^1.2.1", "is-weakref": "^1.0.2", "isarray": "^2.0.5", "which-boxed-primitive": "^1.1.0", "which-collection": "^1.0.2", "which-typed-array": "^1.1.16" } }, "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q=="], - - "which-collection": ["which-collection@1.0.2", "", { "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", "is-weakmap": "^2.0.2", "is-weakset": "^2.0.3" } }, "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw=="], - - "which-typed-array": ["which-typed-array@1.1.15", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "has-tostringtag": "^1.0.2" } }, "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA=="], - - "wide-align": ["wide-align@1.1.5", "", { "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" } }, "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="], - "widest-line": ["widest-line@4.0.1", "", { "dependencies": { "string-width": "^5.0.1" } }, "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig=="], "wildcard": ["wildcard@2.0.1", "", {}, "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ=="], @@ -3424,11 +3506,13 @@ "wrap-ansi": ["wrap-ansi@9.0.0", "", { "dependencies": { "ansi-styles": "^6.2.1", "string-width": "^7.0.0", "strip-ansi": "^7.1.0" } }, "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q=="], + "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + "wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="], "write-file-atomic": ["write-file-atomic@3.0.3", "", { "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="], - "ws": ["ws@8.13.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA=="], + "ws": ["ws@8.18.2", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ=="], "xdg-app-paths": ["xdg-app-paths@5.1.0", "", { "dependencies": { "xdg-portable": "^7.0.0" } }, "sha512-RAQ3WkPf4KTU1A8RtFx3gWywzVKe00tfOPFfl2NDGqbIFENQO4kqAJp7mhQjNj/33W5x5hiWWUdyfPq/5SU3QA=="], @@ -3440,9 +3524,9 @@ "xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="], - "yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], + "yallist": ["yallist@4.0.0", "", {}, "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="], - "yaml": ["yaml@2.7.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA=="], + "yaml": ["yaml@2.8.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ=="], "yauzl": ["yauzl@2.10.0", "", { "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="], @@ -3456,3642 +3540,872 @@ "zwitch": ["zwitch@2.0.4", "", {}, "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A=="], - "@algolia/client-abtesting/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@antfu/install-pkg/tinyexec": ["tinyexec@1.0.1", "", {}, "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw=="], - "@algolia/client-analytics/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - "@algolia/client-insights/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/core/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/client-personalization/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - "@algolia/client-query-suggestions/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/ingestion/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/monitoring/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/helper-create-regexp-features-plugin/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/recommend/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/plugin-transform-classes/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - "@algolia/requester-browser-xhr/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/plugin-transform-runtime/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/requester-fetch/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/preset-env/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@algolia/requester-node-http/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - "@babel/code-frame/picocolors": ["picocolors@1.0.0", "", {}, "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="], + "@cspotcode/source-map-support/@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.9", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="], - "@babel/core/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], + "@docusaurus/bundler/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@babel/core/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], + "@docusaurus/core/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], - "@babel/core/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], + "@docusaurus/core/commander": ["commander@5.1.0", "", {}, "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="], - "@babel/core/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], + "@docusaurus/core/webpack-merge": ["webpack-merge@6.0.1", "", { "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", "wildcard": "^2.0.1" } }, "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg=="], - "@babel/core/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@docusaurus/cssnano-preset/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@babel/core/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@docusaurus/theme-classic/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], + "@docusaurus/types/commander": ["commander@5.1.0", "", {}, "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="], - "@babel/core/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "@emotion/babel-plugin/source-map": ["source-map@0.5.7", "", {}, "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="], - "@babel/generator/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@emotion/babel-plugin/stylis": ["stylis@4.2.0", "", {}, "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="], - "@babel/generator/source-map": ["source-map@0.5.7", "", {}, "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="], + "@emotion/cache/stylis": ["stylis@4.2.0", "", {}, "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="], - "@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@emotion/serialize/@emotion/unitless": ["@emotion/unitless@0.10.0", "", {}, "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg=="], - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@eslint/plugin-kit/@eslint/core": ["@eslint/core@0.15.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw=="], - "@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], + "@graphql-markdown/cli/commander": ["commander@5.1.0", "", {}, "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="], - "@babel/helper-create-class-features-plugin/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], - "@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], + "@iconify/utils/globals": ["globals@15.15.0", "", {}, "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg=="], - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg=="], + "@isaacs/cliui/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], - "@babel/helper-define-polyfill-provider/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "@isaacs/fs-minipass/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - "@babel/helper-define-polyfill-provider/resolve": ["resolve@1.22.8", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="], + "@jest/schemas/@sinclair/typebox": ["@sinclair/typebox@0.27.8", "", {}, "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="], - "@babel/helper-environment-visitor/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@lingui/conf/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - "@babel/helper-function-name/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@mapbox/hast-util-table-cell-style/unist-util-visit": ["unist-util-visit@1.4.1", "", { "dependencies": { "unist-util-visit-parents": "^2.0.0" } }, "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw=="], - "@babel/helper-hoist-variables/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@mapbox/node-pre-gyp/node-fetch": ["node-fetch@2.6.9", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg=="], - "@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@mapbox/node-pre-gyp/tar": ["tar@7.4.3", "", { "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" } }, "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="], - "@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@npmcli/config/ci-info": ["ci-info@4.2.0", "", {}, "sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg=="], - "@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@npmcli/config/ini": ["ini@4.1.3", "", {}, "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg=="], - "@babel/helper-module-imports/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@npmcli/config/nopt": ["nopt@7.2.1", "", { "dependencies": { "abbrev": "^2.0.0" }, "bin": { "nopt": "bin/nopt.js" } }, "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w=="], - "@babel/helper-module-transforms/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], + "@npmcli/git/ini": ["ini@4.1.3", "", {}, "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg=="], - "@babel/helper-module-transforms/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@npmcli/git/lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="], - "@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@npmcli/git/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], - "@babel/helper-remap-async-to-generator/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@npmcli/map-workspaces/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], - "@babel/helper-replace-supers/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@npmcli/package-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.2", "", {}, "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ=="], - "@babel/helper-simple-access/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "@npmcli/promise-spawn/which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], - "@babel/helper-simple-access/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@pnpm/network.ca-file/graceful-fs": ["graceful-fs@4.2.10", "", {}, "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="], - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@rollup/pluginutils/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], - "@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@rollup/pluginutils/picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], - "@babel/helper-split-export-declaration/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@slorber/remark-comment/micromark-factory-space": ["micromark-factory-space@1.1.0", "", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" } }, "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ=="], - "@babel/helper-wrap-function/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], + "@slorber/remark-comment/micromark-util-character": ["micromark-util-character@1.2.0", "", { "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }, "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg=="], - "@babel/helper-wrap-function/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@slorber/remark-comment/micromark-util-symbol": ["micromark-util-symbol@1.1.0", "", {}, "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag=="], - "@babel/helper-wrap-function/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@svgr/core/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - "@babel/helpers/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], + "@svgr/plugin-svgo/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - "@babel/helpers/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "@vercel/fun/debug": ["debug@4.3.4", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="], - "@babel/highlight/chalk": ["chalk@2.4.2", "", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="], + "@vercel/fun/ms": ["ms@2.1.1", "", {}, "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="], - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/fun/node-fetch": ["node-fetch@2.6.7", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="], - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@vercel/gatsby-plugin-vercel-analytics/web-vitals": ["web-vitals@0.2.4", "", {}, "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg=="], - "@babel/plugin-bugfix-safari-class-field-initializer-scope/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/gatsby-plugin-vercel-builder/fs-extra": ["fs-extra@11.1.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw=="], - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/nft/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/nft/picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/node/@types/node": ["@types/node@16.18.11", "", {}, "sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA=="], - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "@vercel/node/async-listen": ["async-listen@3.0.0", "", {}, "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg=="], - "@babel/plugin-syntax-import-assertions/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/node/node-fetch": ["node-fetch@2.6.9", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg=="], - "@babel/plugin-syntax-import-attributes/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/node/typescript": ["typescript@4.9.5", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g=="], - "@babel/plugin-syntax-jsx/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/redwood/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@babel/plugin-syntax-typescript/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@vercel/static-config/ajv": ["ajv@8.6.3", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }, "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw=="], - "@babel/plugin-transform-arrow-functions/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "accepts/negotiator": ["negotiator@0.6.3", "", {}, "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="], - "@babel/plugin-transform-async-generator-functions/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "ajv-formats/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="], - "@babel/plugin-transform-async-generator-functions/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "ajv-keywords/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="], - "@babel/plugin-transform-async-to-generator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "ansi-align/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - "@babel/plugin-transform-block-scoped-functions/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "babel-plugin-polyfill-corejs2/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], - "@babel/plugin-transform-block-scoping/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "body-parser/bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="], - "@babel/plugin-transform-class-properties/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "body-parser/content-type": ["content-type@1.0.5", "", {}, "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="], - "@babel/plugin-transform-class-static-block/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "body-parser/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@babel/plugin-transform-classes/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "body-parser/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], - "@babel/plugin-transform-classes/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "body-parser/raw-body": ["raw-body@2.5.2", "", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }, "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA=="], - "@babel/plugin-transform-classes/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "boxen/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], - "@babel/plugin-transform-computed-properties/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "cheerio-select/css-select": ["css-select@5.1.0", "", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="], - "@babel/plugin-transform-computed-properties/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], + "clean-css/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], - "@babel/plugin-transform-destructuring/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "cli-table3/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - "@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "cli-truncate/string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="], - "@babel/plugin-transform-dotall-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "cmdk-react17/@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.0.5", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-dismissable-layer": "1.0.5", "@radix-ui/react-focus-guards": "1.0.1", "@radix-ui/react-focus-scope": "1.0.4", "@radix-ui/react-id": "1.0.1", "@radix-ui/react-portal": "1.0.4", "@radix-ui/react-presence": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-slot": "1.0.2", "@radix-ui/react-use-controllable-state": "1.0.1", "aria-hidden": "^1.1.1", "react-remove-scroll": "2.5.5" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q=="], - "@babel/plugin-transform-duplicate-keys/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "cmdk-react17/@radix-ui/react-primitive": ["@radix-ui/react-primitive@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-slot": "1.0.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g=="], - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "compression/bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="], - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "compression/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@babel/plugin-transform-dynamic-import/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "compression/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@babel/plugin-transform-exponentiation-operator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "concat-stream/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], - "@babel/plugin-transform-export-namespace-from/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "config-chain/ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], - "@babel/plugin-transform-for-of/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "copy-webpack-plugin/globby": ["globby@13.2.2", "", { "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.3.0", "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" } }, "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w=="], - "@babel/plugin-transform-function-name/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "@babel/plugin-transform-function-name/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "cosmiconfig/yaml": ["yaml@1.10.2", "", {}, "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="], - "@babel/plugin-transform-json-strings/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "crypto-random-string/type-fest": ["type-fest@1.4.0", "", {}, "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="], - "@babel/plugin-transform-literals/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "css-loader/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@babel/plugin-transform-logical-assignment-operators/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "css-minimizer-webpack-plugin/jest-worker": ["jest-worker@29.7.0", "", { "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" } }, "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw=="], - "@babel/plugin-transform-member-expression-literals/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "css-minimizer-webpack-plugin/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@babel/plugin-transform-modules-amd/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "css-select/domhandler": ["domhandler@4.3.1", "", { "dependencies": { "domelementtype": "^2.2.0" } }, "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="], - "@babel/plugin-transform-modules-commonjs/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "css-select/domutils": ["domutils@2.8.0", "", { "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="], - "@babel/plugin-transform-modules-systemjs/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "csso/css-tree": ["css-tree@2.2.1", "", { "dependencies": { "mdn-data": "2.0.28", "source-map-js": "^1.0.1" } }, "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA=="], - "@babel/plugin-transform-modules-systemjs/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], + "cytoscape-fcose/cose-base": ["cose-base@2.2.0", "", { "dependencies": { "layout-base": "^2.0.0" } }, "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g=="], - "@babel/plugin-transform-modules-systemjs/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "d3-dsv/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - "@babel/plugin-transform-modules-umd/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "d3-dsv/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="], - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "d3-sankey/d3-array": ["d3-array@2.12.1", "", { "dependencies": { "internmap": "^1.0.0" } }, "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="], - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "d3-sankey/d3-shape": ["d3-shape@1.3.7", "", { "dependencies": { "d3-path": "1" } }, "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw=="], - "@babel/plugin-transform-new-target/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "decompress-response/mimic-response": ["mimic-response@3.1.0", "", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="], - "@babel/plugin-transform-nullish-coalescing-operator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "dot-prop/is-obj": ["is-obj@2.0.0", "", {}, "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="], - "@babel/plugin-transform-numeric-separator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "edge-runtime/async-listen": ["async-listen@3.0.1", "", {}, "sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA=="], - "@babel/plugin-transform-object-rest-spread/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "edge-runtime/picocolors": ["picocolors@1.0.0", "", {}, "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="], - "@babel/plugin-transform-object-super/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "edge-runtime/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], - "@babel/plugin-transform-optional-catch-binding/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/content-disposition": ["content-disposition@0.5.4", "", { "dependencies": { "safe-buffer": "5.2.1" } }, "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="], - "@babel/plugin-transform-optional-chaining/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@babel/plugin-transform-parameters/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], - "@babel/plugin-transform-private-methods/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/path-to-regexp": ["path-to-regexp@0.1.12", "", {}, "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="], - "@babel/plugin-transform-private-property-in-object/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - "@babel/plugin-transform-property-literals/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "express/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@babel/plugin-transform-react-display-name/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - "@babel/plugin-transform-react-jsx/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "figures/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="], - "@babel/plugin-transform-react-jsx/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "file-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - "@babel/plugin-transform-react-pure-annotations/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "finalhandler/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@babel/plugin-transform-regenerator/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "foreground-child/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], - "@babel/plugin-transform-regexp-modifiers/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "framer-motion/@emotion/is-prop-valid": ["@emotion/is-prop-valid@0.8.8", "", { "dependencies": { "@emotion/memoize": "0.7.4" } }, "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="], - "@babel/plugin-transform-regexp-modifiers/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "fs-minipass/minipass": ["minipass@3.3.6", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="], - "@babel/plugin-transform-reserved-words/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], - "@babel/plugin-transform-runtime/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "glob/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - "@babel/plugin-transform-shorthand-properties/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "got/@sindresorhus/is": ["@sindresorhus/is@5.6.0", "", {}, "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="], - "@babel/plugin-transform-spread/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "graphql-config/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - "@babel/plugin-transform-sticky-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "graphql-config/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], - "@babel/plugin-transform-template-literals/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "graphql-config/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], - "@babel/plugin-transform-typeof-symbol/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "gray-matter/js-yaml": ["js-yaml@3.14.1", "", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="], - "@babel/plugin-transform-typescript/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hast-to-hyperscript/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "@babel/plugin-transform-unicode-escapes/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hast-to-hyperscript/comma-separated-tokens": ["comma-separated-tokens@1.0.8", "", {}, "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="], - "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "hast-to-hyperscript/property-information": ["property-information@5.6.0", "", { "dependencies": { "xtend": "^4.0.0" } }, "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA=="], - "@babel/plugin-transform-unicode-property-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hast-to-hyperscript/space-separated-tokens": ["space-separated-tokens@1.1.5", "", {}, "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="], - "@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "hast-to-hyperscript/style-to-object": ["style-to-object@0.3.0", "", { "dependencies": { "inline-style-parser": "0.1.1" } }, "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA=="], - "@babel/plugin-transform-unicode-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hast-to-hyperscript/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.26.3", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="], + "hast-to-hyperscript/web-namespaces": ["web-namespaces@1.1.4", "", {}, "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw=="], - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hast-util-to-parse5/property-information": ["property-information@6.5.0", "", {}, "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig=="], - "@babel/preset-env/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "hosted-git-info/lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="], - "@babel/preset-env/babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.11.1", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3", "core-js-compat": "^3.40.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ=="], + "html-minifier-terser/commander": ["commander@10.0.1", "", {}, "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="], - "@babel/preset-modules/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "html-webpack-plugin/html-minifier-terser": ["html-minifier-terser@6.1.0", "", { "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", "commander": "^8.3.0", "he": "^1.2.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.10.0" }, "bin": { "html-minifier-terser": "cli.js" } }, "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw=="], - "@babel/preset-react/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "http-errors/inherits": ["inherits@2.0.1", "", {}, "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA=="], - "@babel/preset-typescript/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - "@babel/template/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "http-proxy/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - "@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "http-proxy-middleware/is-plain-obj": ["is-plain-obj@3.0.0", "", {}, "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="], - "@babel/traverse/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "import-fresh/resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], - "@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "interval-arithmetic-eval/math-codegen": ["math-codegen@0.4.1", "", { "dependencies": { "extend": "^3.0.2", "mr-parser": "^0.2.1" } }, "sha512-Nb/gZIGfexUlCYfzWC9W9SkoShvOlRTrFLajLQjSNoAvLhiZQH4TzTKRh/3lZdezFcPfCl+SHEcsrYf3bJQTNg=="], - "@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], - "@cspotcode/source-map-support/@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.9", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="], + "katex/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - "@csstools/postcss-cascade-layers/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "lint-staged/chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], - "@csstools/postcss-is-pseudo-class/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "log-update/slice-ansi": ["slice-ansi@7.1.0", "", { "dependencies": { "ansi-styles": "^6.2.1", "is-fullwidth-code-point": "^5.0.0" } }, "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg=="], - "@csstools/postcss-scope-pseudo-class/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "mdast-util-definitions/unist-util-visit": ["unist-util-visit@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" } }, "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q=="], - "@csstools/selector-resolve-nested/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "mdast-util-find-and-replace/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], - "@csstools/selector-specificity/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + "mdast-util-frontmatter/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], - "@docusaurus/babel/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], + "mdast-util-gfm-table/markdown-table": ["markdown-table@3.0.4", "", {}, "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw=="], - "@docusaurus/babel/@babel/traverse": ["@babel/traverse@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.9", "@babel/parser": "^7.26.9", "@babel/template": "^7.26.9", "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="], + "mermaid/stylis": ["stylis@4.3.6", "", {}, "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ=="], - "@docusaurus/babel/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "minizlib/minipass": ["minipass@3.3.6", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="], - "@docusaurus/bundler/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "mlly/pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], - "@docusaurus/core/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], + "null-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - "@docusaurus/core/execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="], + "ox/@adraffy/ens-normalize": ["@adraffy/ens-normalize@1.11.0", "", {}, "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg=="], - "@docusaurus/core/react-loadable": ["@docusaurus/react-loadable@6.0.0", "", { "dependencies": { "@types/react": "*" }, "peerDependencies": { "react": "*" } }, "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ=="], + "ox/@noble/curves": ["@noble/curves@1.9.2", "", { "dependencies": { "@noble/hashes": "1.8.0" } }, "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g=="], - "@docusaurus/core/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], + "ox/@noble/hashes": ["@noble/hashes@1.8.0", "", {}, "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A=="], - "@docusaurus/core/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "ox/@scure/bip32": ["@scure/bip32@1.7.0", "", { "dependencies": { "@noble/curves": "~1.9.0", "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }, "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw=="], - "@docusaurus/core/webpack-merge": ["webpack-merge@6.0.1", "", { "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", "wildcard": "^2.0.1" } }, "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg=="], + "ox/@scure/bip39": ["@scure/bip39@1.6.0", "", { "dependencies": { "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }, "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A=="], - "@docusaurus/cssnano-preset/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "ox/abitype": ["abitype@1.0.8", "", { "peerDependencies": { "typescript": ">=5.0.4", "zod": "^3 >=3.22.0" }, "optionalPeers": ["typescript", "zod"] }, "sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg=="], - "@docusaurus/logger/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "p-queue/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - "@docusaurus/mdx-loader/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "parse-entities/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "@docusaurus/module-type-aliases/react-loadable": ["@docusaurus/react-loadable@6.0.0", "", { "dependencies": { "@types/react": "*" }, "peerDependencies": { "react": "*" } }, "sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ=="], + "parse-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.2", "", {}, "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ=="], - "@docusaurus/plugin-client-redirects/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "parse-json/type-fest": ["type-fest@3.13.1", "", {}, "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="], - "@docusaurus/plugin-content-blog/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "parse5/entities": ["entities@6.0.1", "", {}, "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g=="], - "@docusaurus/plugin-content-docs/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "path-match/path-to-regexp": ["path-to-regexp@1.9.0", "", { "dependencies": { "isarray": "0.0.1" } }, "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g=="], - "@docusaurus/plugin-content-pages/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "path-scurry/lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="], - "@docusaurus/plugin-css-cascade-layers/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "path-scurry/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - "@docusaurus/plugin-debug/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "pkg-dir/find-up": ["find-up@6.3.0", "", { "dependencies": { "locate-path": "^7.1.0", "path-exists": "^5.0.0" } }, "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw=="], - "@docusaurus/plugin-google-analytics/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "@docusaurus/plugin-google-gtag/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-calc/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@docusaurus/plugin-google-tag-manager/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-discard-unused/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@docusaurus/plugin-sitemap/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-loader/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - "@docusaurus/plugin-svgr/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-merge-rules/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@docusaurus/plugin-vercel-analytics/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-minify-selectors/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@docusaurus/theme-classic/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "postcss-unique-selectors/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@docusaurus/theme-common/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "posthog-js/fflate": ["fflate@0.4.8", "", {}, "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA=="], - "@docusaurus/theme-mermaid/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "pretty-format/ansi-styles": ["ansi-styles@5.2.0", "", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="], - "@docusaurus/theme-search-algolia/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "pretty-format/react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], - "@docusaurus/theme-translations/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "promise-retry/retry": ["retry@0.12.0", "", {}, "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="], - "@docusaurus/utils/execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="], + "proxy-addr/ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="], - "@docusaurus/utils/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "randombytes/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@docusaurus/utils-common/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "raw-body/bytes": ["bytes@3.1.0", "", {}, "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="], - "@docusaurus/utils-validation/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + "raw-body/http-errors": ["http-errors@1.7.3", "", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.4", "setprototypeof": "1.1.1", "statuses": ">= 1.5.0 < 2", "toidentifier": "1.0.0" } }, "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="], - "@emotion/babel-plugin/source-map": ["source-map@0.5.7", "", {}, "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="], + "rc/ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], - "@emotion/babel-plugin/stylis": ["stylis@4.2.0", "", {}, "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="], + "rc/strip-json-comments": ["strip-json-comments@2.0.1", "", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="], - "@emotion/cache/stylis": ["stylis@4.2.0", "", {}, "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="], + "react-remark/rehype-react": ["rehype-react@6.2.1", "", { "dependencies": { "@mapbox/hast-util-table-cell-style": "^0.2.0", "hast-to-hyperscript": "^9.0.0" } }, "sha512-f9KIrjktvLvmbGc7si25HepocOg4z0MuNOtweigKzBcDjiGSTGhyz6VSgaV5K421Cq1O+z4/oxRJ5G9owo0KVg=="], - "@emotion/serialize/@emotion/unitless": ["@emotion/unitless@0.10.0", "", {}, "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg=="], + "react-remark/remark-parse": ["remark-parse@9.0.0", "", { "dependencies": { "mdast-util-from-markdown": "^0.8.0" } }, "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw=="], - "@eslint/eslintrc/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "react-remark/remark-rehype": ["remark-rehype@8.1.0", "", { "dependencies": { "mdast-util-to-hast": "^10.2.0" } }, "sha512-EbCu9kHgAxKmW1yEYjx3QafMyGY3q8noUbNUI5xyKbaFP89wbhDrKxyIQNukNYthzjNHZu6J7hwFg7hRm1svYA=="], - "@eslint/eslintrc/ignore": ["ignore@5.3.1", "", {}, "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw=="], + "react-remark/unified": ["unified@9.2.2", "", { "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", "is-buffer": "^2.0.0", "is-plain-obj": "^2.0.0", "trough": "^1.0.0", "vfile": "^4.0.0" } }, "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ=="], - "@iconify/utils/globals": ["globals@15.15.0", "", {}, "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg=="], + "react-router/path-to-regexp": ["path-to-regexp@1.9.0", "", { "dependencies": { "isarray": "0.0.1" } }, "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g=="], - "@jest/schemas/@sinclair/typebox": ["@sinclair/typebox@0.27.8", "", {}, "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA=="], + "read-package-json-fast/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.2", "", {}, "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ=="], - "@jest/types/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "recharts/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - "@lingui/conf/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], + "recharts/react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], - "@lingui/macro/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - "@lingui/remote-loader/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], + "renderkid/htmlparser2": ["htmlparser2@6.1.0", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="], - "@lingui/remote-loader/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], + "renderkid/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "@mapbox/hast-util-table-cell-style/unist-util-visit": ["unist-util-visit@1.4.1", "", { "dependencies": { "unist-util-visit-parents": "^2.0.0" } }, "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw=="], + "restore-cursor/onetime": ["onetime@7.0.0", "", { "dependencies": { "mimic-function": "^5.0.0" } }, "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="], - "@mapbox/node-pre-gyp/node-fetch": ["node-fetch@2.6.9", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg=="], + "restore-cursor/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], - "@mapbox/node-pre-gyp/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], + "rimraf/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="], - "@mapbox/node-pre-gyp/tar": ["tar@6.2.1", "", { "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" } }, "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A=="], + "rtlcss/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], - "@mdx-js/mdx/remark-mdx": ["remark-mdx@3.0.1", "", { "dependencies": { "mdast-util-mdx": "^3.0.0", "micromark-extension-mdxjs": "^3.0.0" } }, "sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA=="], + "sablier/viem": ["viem@2.31.7", "", { "dependencies": { "@noble/curves": "1.9.2", "@noble/hashes": "1.8.0", "@scure/bip32": "1.7.0", "@scure/bip39": "1.6.0", "abitype": "1.0.8", "isows": "1.0.7", "ox": "0.8.1", "ws": "8.18.2" }, "peerDependencies": { "typescript": ">=5.0.4" }, "optionalPeers": ["typescript"] }, "sha512-mpB8Hp6xK77E/b/yJmpAIQcxcOfpbrwWNItjnXaIA8lxZYt4JS433Pge2gg6Hp3PwyFtaUMh01j5L8EXnLTjQQ=="], - "@mdx-js/mdx/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], + "schema-utils/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="], - "@npmcli/config/ci-info": ["ci-info@4.0.0", "", {}, "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg=="], + "send/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@npmcli/config/ini": ["ini@4.1.3", "", {}, "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg=="], + "send/encodeurl": ["encodeurl@1.0.2", "", {}, "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="], - "@npmcli/config/nopt": ["nopt@7.2.1", "", { "dependencies": { "abbrev": "^2.0.0" }, "bin": { "nopt": "bin/nopt.js" } }, "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w=="], + "send/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], - "@npmcli/config/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], + "send/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - "@npmcli/map-workspaces/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "serve-handler/mime-types": ["mime-types@2.1.18", "", { "dependencies": { "mime-db": "~1.33.0" } }, "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="], - "@pnpm/network.ca-file/graceful-fs": ["graceful-fs@4.2.10", "", {}, "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="], + "serve-handler/path-to-regexp": ["path-to-regexp@3.3.0", "", {}, "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw=="], - "@rollup/pluginutils/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + "serve-index/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - "@slorber/remark-comment/micromark-factory-space": ["micromark-factory-space@1.1.0", "", { "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" } }, "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ=="], + "serve-index/http-errors": ["http-errors@1.6.3", "", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" } }, "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A=="], - "@slorber/remark-comment/micromark-util-character": ["micromark-util-character@1.2.0", "", { "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" } }, "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg=="], + "sitemap/@types/node": ["@types/node@17.0.45", "", {}, "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw=="], - "@slorber/remark-comment/micromark-util-symbol": ["micromark-util-symbol@1.1.0", "", {}, "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag=="], + "sitemap/arg": ["arg@5.0.2", "", {}, "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="], - "@svgr/core/@babel/core": ["@babel/core@7.24.7", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-module-transforms": "^7.24.7", "@babel/helpers": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/template": "^7.24.7", "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g=="], + "slice-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "@svgr/core/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], + "slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@4.0.0", "", {}, "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ=="], - "@svgr/hast-util-to-babel-ast/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "sockjs/uuid": ["uuid@8.3.2", "", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="], - "@svgr/plugin-jsx/@babel/core": ["@babel/core@7.24.7", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-module-transforms": "^7.24.7", "@babel/helpers": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/template": "^7.24.7", "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g=="], + "solc/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - "@svgr/plugin-svgo/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], + "solc/semver": ["semver@5.7.2", "", { "bin": { "semver": "bin/semver" } }, "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="], - "@svgr/webpack/@babel/core": ["@babel/core@7.24.7", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-module-transforms": "^7.24.7", "@babel/helpers": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/template": "^7.24.7", "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g=="], + "source-map-support/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], - "@svgr/webpack/@babel/preset-env": ["@babel/preset-env@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-import-assertions": "^7.24.7", "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.24.7", "@babel/plugin-transform-async-generator-functions": "^7.24.7", "@babel/plugin-transform-async-to-generator": "^7.24.7", "@babel/plugin-transform-block-scoped-functions": "^7.24.7", "@babel/plugin-transform-block-scoping": "^7.24.7", "@babel/plugin-transform-class-properties": "^7.24.7", "@babel/plugin-transform-class-static-block": "^7.24.7", "@babel/plugin-transform-classes": "^7.24.7", "@babel/plugin-transform-computed-properties": "^7.24.7", "@babel/plugin-transform-destructuring": "^7.24.7", "@babel/plugin-transform-dotall-regex": "^7.24.7", "@babel/plugin-transform-duplicate-keys": "^7.24.7", "@babel/plugin-transform-dynamic-import": "^7.24.7", "@babel/plugin-transform-exponentiation-operator": "^7.24.7", "@babel/plugin-transform-export-namespace-from": "^7.24.7", "@babel/plugin-transform-for-of": "^7.24.7", "@babel/plugin-transform-function-name": "^7.24.7", "@babel/plugin-transform-json-strings": "^7.24.7", "@babel/plugin-transform-literals": "^7.24.7", "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", "@babel/plugin-transform-member-expression-literals": "^7.24.7", "@babel/plugin-transform-modules-amd": "^7.24.7", "@babel/plugin-transform-modules-commonjs": "^7.24.7", "@babel/plugin-transform-modules-systemjs": "^7.24.7", "@babel/plugin-transform-modules-umd": "^7.24.7", "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", "@babel/plugin-transform-new-target": "^7.24.7", "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", "@babel/plugin-transform-numeric-separator": "^7.24.7", "@babel/plugin-transform-object-rest-spread": "^7.24.7", "@babel/plugin-transform-object-super": "^7.24.7", "@babel/plugin-transform-optional-catch-binding": "^7.24.7", "@babel/plugin-transform-optional-chaining": "^7.24.7", "@babel/plugin-transform-parameters": "^7.24.7", "@babel/plugin-transform-private-methods": "^7.24.7", "@babel/plugin-transform-private-property-in-object": "^7.24.7", "@babel/plugin-transform-property-literals": "^7.24.7", "@babel/plugin-transform-regenerator": "^7.24.7", "@babel/plugin-transform-reserved-words": "^7.24.7", "@babel/plugin-transform-shorthand-properties": "^7.24.7", "@babel/plugin-transform-spread": "^7.24.7", "@babel/plugin-transform-sticky-regex": "^7.24.7", "@babel/plugin-transform-template-literals": "^7.24.7", "@babel/plugin-transform-typeof-symbol": "^7.24.7", "@babel/plugin-transform-unicode-escapes": "^7.24.7", "@babel/plugin-transform-unicode-property-regex": "^7.24.7", "@babel/plugin-transform-unicode-regex": "^7.24.7", "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.4", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ=="], + "spdy-transport/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], - "@svgr/webpack/@babel/preset-react": ["@babel/preset-react@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "@babel/plugin-transform-react-display-name": "^7.24.7", "@babel/plugin-transform-react-jsx": "^7.24.7", "@babel/plugin-transform-react-jsx-development": "^7.24.7", "@babel/plugin-transform-react-pure-annotations": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag=="], + "string-width-cjs/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "@svgr/webpack/@babel/preset-typescript": ["@babel/preset-typescript@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "@babel/plugin-syntax-jsx": "^7.24.7", "@babel/plugin-transform-modules-commonjs": "^7.24.7", "@babel/plugin-transform-typescript": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ=="], + "string-width-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "@ts-morph/common/mkdirp": ["mkdirp@1.0.4", "", { "bin": { "mkdirp": "bin/cmd.js" } }, "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="], + "strip-ansi-cjs/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@types/body-parser/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "styled-components/@emotion/is-prop-valid": ["@emotion/is-prop-valid@1.2.2", "", { "dependencies": { "@emotion/memoize": "^0.8.1" } }, "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw=="], - "@types/bonjour/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "styled-components/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], - "@types/concat-stream/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "stylehacks/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "@types/connect/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "svgo/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - "@types/connect-history-api-fallback/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "svgo/css-select": ["css-select@5.1.0", "", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="], - "@types/express-serve-static-core/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="], - "@types/http-proxy/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "ts-node/arg": ["arg@4.1.3", "", {}, "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="], - "@types/node-forge/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "ts-node/diff": ["diff@4.0.2", "", {}, "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="], - "@types/sax/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "undici/@fastify/busboy": ["@fastify/busboy@2.1.1", "", {}, "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA=="], - "@types/send/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "unified-engine/@types/node": ["@types/node@22.15.32", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-3jigKqgSjsH6gYZv2nEsqdXfZqIFGAV36XYYjf9KGZ3PSG+IhLecqPnI310RvjutyMwifE2hhhNEklOUrvx/wA=="], - "@types/serve-static/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "unified-engine/ignore": ["ignore@6.0.2", "", {}, "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A=="], - "@types/sockjs/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "unixify/normalize-path": ["normalize-path@2.1.1", "", { "dependencies": { "remove-trailing-separator": "^1.0.1" } }, "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w=="], - "@types/ws/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], + "update-notifier/boxen": ["boxen@7.1.1", "", { "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^7.0.1", "chalk": "^5.2.0", "cli-boxes": "^3.0.0", "string-width": "^5.1.2", "type-fest": "^2.13.0", "widest-line": "^4.0.1", "wrap-ansi": "^8.1.0" } }, "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog=="], - "@typescript-eslint/eslint-plugin/@typescript-eslint/utils": ["@typescript-eslint/utils@8.33.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.33.1", "@typescript-eslint/types": "8.33.1", "@typescript-eslint/typescript-estree": "8.33.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ=="], + "update-notifier/chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], - "@typescript-eslint/type-utils/@typescript-eslint/utils": ["@typescript-eslint/utils@8.33.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.33.1", "@typescript-eslint/types": "8.33.1", "@typescript-eslint/typescript-estree": "8.33.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ=="], + "url-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + "uvu/kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], - "@typescript-eslint/typescript-estree/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], + "vfile-reporter/string-width": ["string-width@6.1.0", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^10.2.1", "strip-ansi": "^7.0.1" } }, "sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ=="], - "@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@5.62.0", "", { "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0" } }, "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w=="], + "vfile-reporter/supports-color": ["supports-color@9.4.0", "", {}, "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw=="], - "@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@5.62.0", "", {}, "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ=="], + "viem/ws": ["ws@8.13.0", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA=="], - "@typescript-eslint/utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@5.62.0", "", { "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", "semver": "^7.3.7", "tsutils": "^3.21.0" } }, "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA=="], + "webpack/eslint-scope": ["eslint-scope@5.1.1", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="], - "@typescript-eslint/utils/eslint-scope": ["eslint-scope@5.1.1", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="], + "webpack-bundle-analyzer/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - "@typescript-eslint/utils/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], + "webpack-bundle-analyzer/ws": ["ws@7.5.10", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="], - "@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@4.2.0", "", {}, "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="], + "webpack-dev-middleware/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - "@vercel/fun/debug": ["debug@4.1.1", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="], + "webpack-dev-server/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], - "@vercel/fun/execa": ["execa@3.2.0", "", { "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.0", "onetime": "^5.1.0", "p-finally": "^2.0.0", "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" } }, "sha512-kJJfVbI/lZE1PZYDI5VPxp8zXPO9rtxOkhpZ0jMKha56AI9y2gGVC6bkukStQf0ka5Rh15BA5m7cCCH4jmHqkw=="], + "webpackbar/ansi-escapes": ["ansi-escapes@4.3.2", "", { "dependencies": { "type-fest": "^0.21.3" } }, "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="], - "@vercel/fun/fs-extra": ["fs-extra@8.1.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="], + "webpackbar/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], - "@vercel/fun/ms": ["ms@2.1.1", "", {}, "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="], + "websocket-driver/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@vercel/fun/semver": ["semver@7.3.5", "", { "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" } }, "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="], + "wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "@vercel/gatsby-plugin-vercel-analytics/web-vitals": ["web-vitals@0.2.4", "", {}, "sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg=="], + "wrap-ansi/string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="], - "@vercel/gatsby-plugin-vercel-builder/fs-extra": ["fs-extra@11.1.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw=="], + "wrap-ansi-cjs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - "@vercel/nft/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], + "wrap-ansi-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "@vercel/nft/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + "@babel/helper-compilation-targets/lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], - "@vercel/nft/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="], + "@docusaurus/bundler/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "@vercel/nft/micromatch": ["micromatch@4.0.7", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q=="], + "@docusaurus/core/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - "@vercel/nft/resolve-from": ["resolve-from@5.0.0", "", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="], + "@docusaurus/core/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], - "@vercel/node/@types/node": ["@types/node@16.18.11", "", {}, "sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA=="], + "@docusaurus/cssnano-preset/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "@vercel/node/async-listen": ["async-listen@3.0.0", "", {}, "sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg=="], + "@docusaurus/theme-classic/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "@vercel/node/es-module-lexer": ["es-module-lexer@1.4.1", "", {}, "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w=="], + "@isaacs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "@vercel/node/node-fetch": ["node-fetch@2.6.9", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg=="], + "@lingui/conf/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "@vercel/node/typescript": ["typescript@4.9.5", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g=="], + "@mapbox/hast-util-table-cell-style/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@2.1.2", "", { "dependencies": { "unist-util-is": "^3.0.0" } }, "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="], - "@vercel/routing-utils/path-to-regexp": ["path-to-regexp@6.1.0", "", {}, "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw=="], + "@mapbox/node-pre-gyp/tar/chownr": ["chownr@3.0.0", "", {}, "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="], - "@vercel/static-config/ajv": ["ajv@8.6.3", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }, "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw=="], + "@mapbox/node-pre-gyp/tar/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - "acorn-walk/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], + "@mapbox/node-pre-gyp/tar/minizlib": ["minizlib@3.0.2", "", { "dependencies": { "minipass": "^7.1.2" } }, "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA=="], - "agent-base/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "@mapbox/node-pre-gyp/tar/mkdirp": ["mkdirp@3.0.1", "", { "bin": { "mkdirp": "dist/cjs/src/bin.js" } }, "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="], - "ajv-formats/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], + "@mapbox/node-pre-gyp/tar/yallist": ["yallist@5.0.0", "", {}, "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="], - "ajv-keywords/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], + "@npmcli/config/nopt/abbrev": ["abbrev@2.0.0", "", {}, "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ=="], - "algoliasearch/@algolia/client-common": ["@algolia/client-common@5.20.3", "", {}, "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA=="], + "@npmcli/git/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], - "algoliasearch/@algolia/client-search": ["@algolia/client-search@5.20.3", "", { "dependencies": { "@algolia/client-common": "5.20.3", "@algolia/requester-browser-xhr": "5.20.3", "@algolia/requester-fetch": "5.20.3", "@algolia/requester-node-http": "5.20.3" } }, "sha512-9+Fm1ahV8/2goSIPIqZnVitV5yHW5E5xTdKy33xnqGd45A9yVv5tTkudWzEXsbfBB47j9Xb3uYPZjAvV5RHbKA=="], + "@npmcli/map-workspaces/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], - "ansi-align/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + "@npmcli/promise-spawn/which/isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], - "are-we-there-yet/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + "@slorber/remark-comment/micromark-factory-space/micromark-util-types": ["micromark-util-types@1.1.0", "", {}, "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg=="], - "array.prototype.flatmap/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], + "@slorber/remark-comment/micromark-util-character/micromark-util-types": ["micromark-util-types@1.1.0", "", {}, "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg=="], - "array.prototype.flatmap/es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="], + "@svgr/core/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "autoprefixer/browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], + "@svgr/plugin-svgo/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "autoprefixer/caniuse-lite": ["caniuse-lite@1.0.30001721", "", {}, "sha512-cOuvmUVtKrtEaoKiO0rSc29jcjwMwX5tOHDy4MgVFEWiUXj4uBMJkwI8MDySkgXidpMiHUcviogAvFi4pA2hDQ=="], + "@vercel/fun/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - "autoprefixer/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + "@vercel/static-config/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - "babel-plugin-macros/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], + "ajv-formats/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - "babel-plugin-macros/resolve": ["resolve@1.22.8", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="], + "ajv-keywords/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - "babel-plugin-polyfill-corejs2/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], + "ansi-align/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.3", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg=="], + "ansi-align/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "body-parser/bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="], + "body-parser/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "body-parser/content-type": ["content-type@1.0.5", "", {}, "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="], + "boxen/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "body-parser/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], + "cli-table3/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "body-parser/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], + "cli-table3/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "body-parser/raw-body": ["raw-body@2.5.2", "", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }, "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA=="], + "cli-truncate/string-width/emoji-regex": ["emoji-regex@10.4.0", "", {}, "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="], - "boxen/type-fest": ["type-fest@2.19.0", "", {}, "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/primitive": ["@radix-ui/primitive@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw=="], - "boxen/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="], - "cacheable-request/get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-context": ["@radix-ui/react-context@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg=="], - "call-bound/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.0.5", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-escape-keydown": "1.0.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g=="], - "caniuse-api/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA=="], - "caniuse-api/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA=="], - "cheerio-select/css-select": ["css-select@5.1.0", "", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-id": ["@radix-ui/react-id@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ=="], - "chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - - "clean-css/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], - - "cli-table3/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - - "cli-truncate/string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="], - - "cliui/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - - "cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], - - "cmdk-react17/@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.0.5", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-context": "1.0.1", "@radix-ui/react-dismissable-layer": "1.0.5", "@radix-ui/react-focus-guards": "1.0.1", "@radix-ui/react-focus-scope": "1.0.4", "@radix-ui/react-id": "1.0.1", "@radix-ui/react-portal": "1.0.4", "@radix-ui/react-presence": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-slot": "1.0.2", "@radix-ui/react-use-controllable-state": "1.0.1", "aria-hidden": "^1.1.1", "react-remove-scroll": "2.5.5" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q=="], - - "cmdk-react17/@radix-ui/react-primitive": ["@radix-ui/react-primitive@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-slot": "1.0.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g=="], - - "compression/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - - "compression/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], - - "concat-stream/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], - - "config-chain/ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], - - "copy-webpack-plugin/globby": ["globby@13.2.2", "", { "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.3.0", "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" } }, "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w=="], - - "copy-webpack-plugin/schema-utils": ["schema-utils@4.2.0", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw=="], - - "cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - - "cosmiconfig/yaml": ["yaml@1.10.2", "", {}, "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="], - - "crypto-random-string/type-fest": ["type-fest@1.4.0", "", {}, "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="], - - "css-blank-pseudo/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "css-has-pseudo/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "css-loader/postcss": ["postcss@8.4.39", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.1", "source-map-js": "^1.2.0" } }, "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw=="], - - "css-loader/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], - - "css-minimizer-webpack-plugin/jest-worker": ["jest-worker@29.7.0", "", { "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" } }, "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw=="], - - "css-minimizer-webpack-plugin/postcss": ["postcss@8.4.39", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.1", "source-map-js": "^1.2.0" } }, "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw=="], - - "css-minimizer-webpack-plugin/schema-utils": ["schema-utils@4.2.0", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw=="], - - "css-select/domhandler": ["domhandler@4.3.1", "", { "dependencies": { "domelementtype": "^2.2.0" } }, "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="], - - "css-select/domutils": ["domutils@2.8.0", "", { "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="], - - "css-tree/source-map-js": ["source-map-js@1.2.0", "", {}, "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="], - - "cssnano/lilconfig": ["lilconfig@3.1.2", "", {}, "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow=="], - - "cssnano-preset-advanced/autoprefixer": ["autoprefixer@10.4.19", "", { "dependencies": { "browserslist": "^4.23.0", "caniuse-lite": "^1.0.30001599", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew=="], - - "cssnano-preset-advanced/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "cssnano-preset-default/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "csso/css-tree": ["css-tree@2.2.1", "", { "dependencies": { "mdn-data": "2.0.28", "source-map-js": "^1.0.1" } }, "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA=="], - - "cytoscape-fcose/cose-base": ["cose-base@2.2.0", "", { "dependencies": { "layout-base": "^2.0.0" } }, "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g=="], - - "d3-dsv/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - - "d3-dsv/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="], - - "d3-sankey/d3-array": ["d3-array@2.12.1", "", { "dependencies": { "internmap": "^1.0.0" } }, "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="], - - "d3-sankey/d3-shape": ["d3-shape@1.3.7", "", { "dependencies": { "d3-path": "1" } }, "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw=="], - - "decompress-response/mimic-response": ["mimic-response@3.1.0", "", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="], - - "default-gateway/execa": ["execa@5.1.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="], - - "define-data-property/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "detect-port/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types": ["@docusaurus/types@3.4.0", "", { "dependencies": { "@mdx-js/mdx": "^3.0.0", "@types/history": "^4.7.11", "@types/react": "*", "commander": "^5.1.0", "joi": "^17.9.2", "react-helmet-async": "^1.3.0", "utility-types": "^3.10.0", "webpack": "^5.88.1", "webpack-merge": "^5.9.0" }, "peerDependencies": { "react": "^18.0.0", "react-dom": "^18.0.0" } }, "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A=="], - - "dot-prop/is-obj": ["is-obj@2.0.0", "", {}, "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="], - - "edge-runtime/async-listen": ["async-listen@3.0.1", "", {}, "sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA=="], - - "edge-runtime/picocolors": ["picocolors@1.0.0", "", {}, "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="], - - "edge-runtime/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], - - "es-abstract/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "es-abstract/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "es-abstract/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "es-abstract/internal-slot": ["internal-slot@1.0.7", "", { "dependencies": { "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" } }, "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g=="], - - "es-abstract/regexp.prototype.flags": ["regexp.prototype.flags@1.5.2", "", { "dependencies": { "call-bind": "^1.0.6", "define-properties": "^1.2.1", "es-errors": "^1.3.0", "set-function-name": "^2.0.1" } }, "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw=="], - - "es-abstract/safe-array-concat": ["safe-array-concat@1.1.2", "", { "dependencies": { "call-bind": "^1.0.7", "get-intrinsic": "^1.2.4", "has-symbols": "^1.0.3", "isarray": "^2.0.5" } }, "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q=="], - - "es-iterator-helpers/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "es-iterator-helpers/es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="], - - "es-iterator-helpers/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "eslint/ignore": ["ignore@5.3.1", "", {}, "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw=="], - - "eslint-mdx/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], - - "eslint-mdx/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], - - "eslint-plugin-mdx/tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], - - "eslint-plugin-react/doctrine": ["doctrine@2.1.0", "", { "dependencies": { "esutils": "^2.0.2" } }, "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="], - - "espree/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "eval/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], - - "express/content-disposition": ["content-disposition@0.5.4", "", { "dependencies": { "safe-buffer": "5.2.1" } }, "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="], - - "express/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - - "express/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], - - "express/path-to-regexp": ["path-to-regexp@0.1.7", "", {}, "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="], - - "express/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - - "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - - "fast-glob/micromatch": ["micromatch@4.0.7", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q=="], - - "figures/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="], - - "file-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - - "finalhandler/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - - "foreground-child/signal-exit": ["signal-exit@4.0.2", "", {}, "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q=="], - - "framer-motion/@emotion/is-prop-valid": ["@emotion/is-prop-valid@0.8.8", "", { "dependencies": { "@emotion/memoize": "0.7.4" } }, "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="], - - "gauge/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "gauge/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - - "get-intrinsic/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "get-intrinsic/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "get-proto/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], - - "glob/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - - "globalthis/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "globby/ignore": ["ignore@5.3.1", "", {}, "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw=="], - - "got/@sindresorhus/is": ["@sindresorhus/is@5.6.0", "", {}, "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="], - - "got/get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], - - "gray-matter/js-yaml": ["js-yaml@3.14.1", "", { "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="], - - "has-tostringtag/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "hast-to-hyperscript/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], - - "hast-to-hyperscript/comma-separated-tokens": ["comma-separated-tokens@1.0.8", "", {}, "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="], - - "hast-to-hyperscript/property-information": ["property-information@5.6.0", "", { "dependencies": { "xtend": "^4.0.0" } }, "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA=="], - - "hast-to-hyperscript/space-separated-tokens": ["space-separated-tokens@1.1.5", "", {}, "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="], - - "hast-to-hyperscript/style-to-object": ["style-to-object@0.3.0", "", { "dependencies": { "inline-style-parser": "0.1.1" } }, "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA=="], - - "hast-to-hyperscript/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], - - "hast-to-hyperscript/web-namespaces": ["web-namespaces@1.1.4", "", {}, "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw=="], - - "hast-util-from-html/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "hast-util-from-parse5/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "hast-util-raw/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "hast-util-to-html/property-information": ["property-information@7.1.0", "", {}, "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ=="], - - "hast-util-to-jsx-runtime/style-to-object": ["style-to-object@1.0.6", "", { "dependencies": { "inline-style-parser": "0.2.3" } }, "sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA=="], - - "history/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "html-minifier-terser/commander": ["commander@10.0.1", "", {}, "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="], - - "html-webpack-plugin/html-minifier-terser": ["html-minifier-terser@6.1.0", "", { "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", "commander": "^8.3.0", "he": "^1.2.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.10.0" }, "bin": { "html-minifier-terser": "cli.js" } }, "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw=="], - - "http-errors/inherits": ["inherits@2.0.1", "", {}, "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA=="], - - "http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - - "http-proxy/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - - "http-proxy-middleware/is-plain-obj": ["is-plain-obj@3.0.0", "", {}, "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="], - - "http-proxy-middleware/micromatch": ["micromatch@4.0.7", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q=="], - - "https-proxy-agent/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "inflight/once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], - - "interval-arithmetic-eval/math-codegen": ["math-codegen@0.4.1", "", { "dependencies": { "extend": "^3.0.2", "mr-parser": "^0.2.1" } }, "sha512-Nb/gZIGfexUlCYfzWC9W9SkoShvOlRTrFLajLQjSNoAvLhiZQH4TzTKRh/3lZdezFcPfCl+SHEcsrYf3bJQTNg=="], - - "is-symbol/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "iterator.prototype/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "iterator.prototype/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "jest-util/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], - - "jest-worker/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], - - "jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], - - "jsx-ast-utils/object.values": ["object.values@1.2.0", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ=="], - - "katex/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - - "lint-staged/chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], - - "lint-staged/commander": ["commander@13.1.0", "", {}, "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw=="], - - "log-update/slice-ansi": ["slice-ansi@7.1.0", "", { "dependencies": { "ansi-styles": "^6.2.1", "is-fullwidth-code-point": "^5.0.0" } }, "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg=="], - - "log-update/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "lru-cache/yallist": ["yallist@4.0.0", "", {}, "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="], - - "mdast-util-definitions/unist-util-visit": ["unist-util-visit@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" } }, "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q=="], - - "mdast-util-directive/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-find-and-replace/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], - - "mdast-util-frontmatter/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], - - "mdast-util-frontmatter/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-gfm/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-gfm-footnote/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-gfm-strikethrough/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-gfm-table/markdown-table": ["markdown-table@3.0.3", "", {}, "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw=="], - - "mdast-util-gfm-table/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-gfm-task-list-item/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-math/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-mdx/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-mdx-expression/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-mdx-jsx/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-mdxjs-esm/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "mdast-util-to-hast/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "mermaid/stylis": ["stylis@4.3.6", "", {}, "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ=="], - - "mermaid/uuid": ["uuid@11.1.0", "", { "bin": { "uuid": "dist/esm/bin/uuid" } }, "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A=="], - - "micromark/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "micromark-extension-mdxjs/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "mlly/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], - - "mlly/pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], - - "npm-run-path/path-key": ["path-key@4.0.0", "", {}, "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="], - - "null-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - - "object.assign/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "object.entries/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "object.entries/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "object.values/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "object.values/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "own-keys/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "p-queue/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - - "p-timeout/p-finally": ["p-finally@1.0.0", "", {}, "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="], - - "package-json/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], - - "parse-entities/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], - - "parse-json/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.2", "", {}, "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ=="], - - "parse-json/type-fest": ["type-fest@3.13.1", "", {}, "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="], - - "path-match/path-to-regexp": ["path-to-regexp@1.8.0", "", { "dependencies": { "isarray": "0.0.1" } }, "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="], - - "path-scurry/lru-cache": ["lru-cache@10.3.0", "", {}, "sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ=="], - - "path-scurry/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], - - "pkg-dir/find-up": ["find-up@6.3.0", "", { "dependencies": { "locate-path": "^7.1.0", "path-exists": "^5.0.0" } }, "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw=="], - - "postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - - "postcss/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "postcss-attribute-case-insensitive/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-colormin/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-convert-values/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-custom-selectors/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-dir-pseudo-class/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-focus-visible/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-focus-within/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-loader/cosmiconfig": ["cosmiconfig@8.3.6", "", { "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.9.5" }, "optionalPeers": ["typescript"] }, "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="], - - "postcss-loader/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], - - "postcss-merge-rules/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-minify-params/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-nesting/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-normalize-unicode/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-preset-env/browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], - - "postcss-pseudo-class-any-link/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "postcss-reduce-initial/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "postcss-selector-not/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], - - "posthog-js/fflate": ["fflate@0.4.8", "", {}, "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA=="], - - "pretty-format/ansi-styles": ["ansi-styles@5.2.0", "", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="], - - "pretty-format/react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], - - "proxy-addr/ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="], - - "pump/once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], - - "qs/side-channel": ["side-channel@1.0.6", "", { "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" } }, "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA=="], - - "raw-body/bytes": ["bytes@3.1.0", "", {}, "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="], - - "raw-body/http-errors": ["http-errors@1.7.3", "", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.4", "setprototypeof": "1.1.1", "statuses": ">= 1.5.0 < 2", "toidentifier": "1.0.0" } }, "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="], - - "rc/ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="], - - "rc/strip-json-comments": ["strip-json-comments@2.0.1", "", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="], - - "react-helmet-async/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "react-loadable-ssr-addon-v5-slorber/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "react-remark/rehype-react": ["rehype-react@6.2.1", "", { "dependencies": { "@mapbox/hast-util-table-cell-style": "^0.2.0", "hast-to-hyperscript": "^9.0.0" } }, "sha512-f9KIrjktvLvmbGc7si25HepocOg4z0MuNOtweigKzBcDjiGSTGhyz6VSgaV5K421Cq1O+z4/oxRJ5G9owo0KVg=="], - - "react-remark/remark-parse": ["remark-parse@9.0.0", "", { "dependencies": { "mdast-util-from-markdown": "^0.8.0" } }, "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw=="], - - "react-remark/remark-rehype": ["remark-rehype@8.1.0", "", { "dependencies": { "mdast-util-to-hast": "^10.2.0" } }, "sha512-EbCu9kHgAxKmW1yEYjx3QafMyGY3q8noUbNUI5xyKbaFP89wbhDrKxyIQNukNYthzjNHZu6J7hwFg7hRm1svYA=="], - - "react-remark/unified": ["unified@9.2.2", "", { "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", "is-buffer": "^2.0.0", "is-plain-obj": "^2.0.0", "trough": "^1.0.0", "vfile": "^4.0.0" } }, "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ=="], - - "react-router/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "react-router/path-to-regexp": ["path-to-regexp@1.8.0", "", { "dependencies": { "isarray": "0.0.1" } }, "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="], - - "react-router-config/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "react-router-dom/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "read-package-json-fast/json-parse-even-better-errors": ["json-parse-even-better-errors@3.0.2", "", {}, "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ=="], - - "readable-stream/isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="], - - "readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], - - "recharts/eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], - - "recharts/react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], - - "reflect.getprototypeof/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "reflect.getprototypeof/es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="], - - "reflect.getprototypeof/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "reflect.getprototypeof/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "regenerator-transform/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "regexp.prototype.flags/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "regjsparser/jsesc": ["jsesc@0.5.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA=="], - - "rehype-katex/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "rehype-raw/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "remark-parse/mdast-util-from-markdown": ["mdast-util-from-markdown@2.0.1", "", { "dependencies": { "@types/mdast": "^4.0.0", "@types/unist": "^3.0.0", "decode-named-character-reference": "^1.0.0", "devlop": "^1.0.0", "mdast-util-to-string": "^4.0.0", "micromark": "^4.0.0", "micromark-util-decode-numeric-character-reference": "^2.0.0", "micromark-util-decode-string": "^2.0.0", "micromark-util-normalize-identifier": "^2.0.0", "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA=="], - - "remark-rehype/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "renderkid/htmlparser2": ["htmlparser2@6.1.0", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="], - - "restore-cursor/onetime": ["onetime@7.0.0", "", { "dependencies": { "mimic-function": "^5.0.0" } }, "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="], - - "rimraf/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="], - - "rtlcss/postcss": ["postcss@8.4.39", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.1", "source-map-js": "^1.2.0" } }, "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw=="], - - "safe-array-concat/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "safe-array-concat/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "schema-utils/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], - - "semver-diff/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], - - "send/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - - "send/http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], - - "send/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - - "serve-handler/mime-types": ["mime-types@2.1.18", "", { "dependencies": { "mime-db": "~1.33.0" } }, "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="], - - "serve-handler/path-to-regexp": ["path-to-regexp@3.3.0", "", {}, "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw=="], - - "serve-index/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], - - "serve-index/http-errors": ["http-errors@1.6.3", "", { "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" } }, "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A=="], - - "set-function-length/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "set-proto/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "side-channel/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "side-channel-list/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "side-channel-map/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "side-channel-map/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "side-channel-weakmap/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "side-channel-weakmap/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "sitemap/@types/node": ["@types/node@17.0.45", "", {}, "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw=="], - - "sitemap/arg": ["arg@5.0.2", "", {}, "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="], - - "slice-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - - "slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@4.0.0", "", {}, "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ=="], - - "sockjs/uuid": ["uuid@8.3.2", "", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="], - - "solc/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - - "solc/semver": ["semver@5.7.2", "", { "bin": { "semver": "bin/semver" } }, "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="], - - "source-map-support/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], - - "spdy/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "spdy-transport/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "spdy-transport/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], - - "string-width/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "string.prototype.matchall/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "string.prototype.matchall/es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="], - - "string.prototype.matchall/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "string.prototype.matchall/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "string.prototype.repeat/es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="], - - "string_decoder/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], - - "styled-components/@emotion/is-prop-valid": ["@emotion/is-prop-valid@1.2.2", "", { "dependencies": { "@emotion/memoize": "^0.8.1" } }, "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw=="], - - "styled-components/postcss": ["postcss@8.4.49", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA=="], - - "styled-components/tslib": ["tslib@2.6.2", "", {}, "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="], - - "stylehacks/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "svgo/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - - "svgo/css-select": ["css-select@5.1.0", "", { "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="], - - "terser/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="], - - "ts-node/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "ts-node/arg": ["arg@4.1.3", "", {}, "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="], - - "ts-node/diff": ["diff@4.0.2", "", {}, "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="], - - "tsutils/tslib": ["tslib@1.14.1", "", {}, "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="], - - "typed-array-byte-length/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "typed-array-byte-length/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "typed-array-byte-offset/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "typed-array-byte-offset/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "typed-array-length/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "typed-array-length/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "unbox-primitive/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "unified/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "unified-engine/@types/node": ["@types/node@22.15.30", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA=="], - - "unified-engine/ignore": ["ignore@6.0.2", "", {}, "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A=="], - - "update-browserslist-db/escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], - - "update-browserslist-db/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "update-notifier/boxen": ["boxen@7.1.1", "", { "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^7.0.1", "chalk": "^5.2.0", "cli-boxes": "^3.0.0", "string-width": "^5.1.2", "type-fest": "^2.13.0", "widest-line": "^4.0.1", "wrap-ansi": "^8.1.0" } }, "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog=="], - - "update-notifier/chalk": ["chalk@5.3.0", "", {}, "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="], - - "update-notifier/semver": ["semver@7.6.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w=="], - - "url-loader/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - - "uvu/kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], - - "vfile-location/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "vfile-reporter/string-width": ["string-width@6.1.0", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^10.2.1", "strip-ansi": "^7.0.1" } }, "sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ=="], - - "vfile-reporter/supports-color": ["supports-color@9.4.0", "", {}, "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw=="], - - "vfile-reporter/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "vfile-sort/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "vfile-statistics/vfile": ["vfile@6.0.1", "", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0", "vfile-message": "^4.0.0" } }, "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw=="], - - "webpack/@types/estree": ["@types/estree@1.0.6", "", {}, "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="], - - "webpack/eslint-scope": ["eslint-scope@5.1.1", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="], - - "webpack-bundle-analyzer/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "webpack-bundle-analyzer/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="], - - "webpack-bundle-analyzer/ws": ["ws@7.5.10", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="], - - "webpack-dev-middleware/range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], - - "webpack-dev-middleware/schema-utils": ["schema-utils@4.2.0", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw=="], - - "webpack-dev-server/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], - - "webpack-dev-server/schema-utils": ["schema-utils@4.2.0", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw=="], - - "webpack-dev-server/ws": ["ws@8.17.1", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="], - - "webpackbar/ansi-escapes": ["ansi-escapes@4.3.2", "", { "dependencies": { "type-fest": "^0.21.3" } }, "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="], - - "webpackbar/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], - - "which-builtin-type/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "which-builtin-type/is-date-object": ["is-date-object@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg=="], - - "which-builtin-type/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "which-builtin-type/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "which-builtin-type/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "which-builtin-type/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "which-typed-array/gopd": ["gopd@1.0.1", "", { "dependencies": { "get-intrinsic": "^1.1.3" } }, "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="], - - "wide-align/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - - "wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - - "wrap-ansi/string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="], - - "wrap-ansi/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "write-file-atomic/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "@babel/core/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/core/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/core/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/core/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/core/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/core/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/core/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-annotate-as-pure/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-annotate-as-pure/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-create-regexp-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - - "@babel/helper-define-polyfill-provider/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-member-expression-to-functions/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-module-imports/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-module-imports/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/helper-module-transforms/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-module-transforms/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-optimise-call-expression/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-optimise-call-expression/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/helper-replace-supers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-replace-supers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-simple-access/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@babel/helper-simple-access/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-simple-access/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-wrap-function/@babel/template/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-wrap-function/@babel/template/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helper-wrap-function/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/helper-wrap-function/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/helper-wrap-function/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-wrap-function/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helpers/@babel/template/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/helpers/@babel/template/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/helpers/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helpers/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/highlight/chalk/ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="], - - "@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="], - - "@babel/highlight/chalk/supports-color": ["supports-color@5.5.0", "", { "dependencies": { "has-flag": "^3.0.0" } }, "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-transform-classes/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-transform-function-name/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-transform-function-name/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/generator": ["@babel/generator@7.26.9", "", { "dependencies": { "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-react-jsx/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-react-jsx/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-regexp-modifiers/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], - - "@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.3", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg=="], - - "@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@docusaurus/babel/@babel/generator/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@docusaurus/babel/@babel/generator/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@docusaurus/babel/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@docusaurus/babel/@babel/traverse/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], - - "@docusaurus/babel/@babel/traverse/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@docusaurus/babel/@babel/traverse/@babel/template": ["@babel/template@7.26.9", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.26.9", "@babel/types": "^7.26.9" } }, "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="], - - "@docusaurus/babel/@babel/traverse/@babel/types": ["@babel/types@7.26.9", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="], - - "@docusaurus/babel/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@docusaurus/babel/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@docusaurus/core/chokidar/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], - - "@docusaurus/core/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - - "@docusaurus/core/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], - - "@docusaurus/core/execa/get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], - - "@docusaurus/core/execa/human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="], - - "@docusaurus/core/execa/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], - - "@docusaurus/core/execa/npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], - - "@docusaurus/core/execa/onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], - - "@docusaurus/core/execa/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "@docusaurus/core/execa/strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], - - "@docusaurus/utils/execa/get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], - - "@docusaurus/utils/execa/human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="], - - "@docusaurus/utils/execa/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], - - "@docusaurus/utils/execa/npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], - - "@docusaurus/utils/execa/onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], - - "@docusaurus/utils/execa/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "@docusaurus/utils/execa/strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], - - "@eslint/eslintrc/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@jest/types/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@lingui/conf/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - - "@lingui/macro/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@lingui/macro/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@lingui/remote-loader/@babel/generator/@babel/parser": ["@babel/parser@7.26.9", "", { "dependencies": { "@babel/types": "^7.26.9" }, "bin": "./bin/babel-parser.js" }, "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="], - - "@lingui/remote-loader/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@lingui/remote-loader/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@lingui/remote-loader/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@mapbox/hast-util-table-cell-style/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@2.1.2", "", { "dependencies": { "unist-util-is": "^3.0.0" } }, "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="], - - "@mapbox/node-pre-gyp/tar/chownr": ["chownr@2.0.0", "", {}, "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="], - - "@mapbox/node-pre-gyp/tar/fs-minipass": ["fs-minipass@2.1.0", "", { "dependencies": { "minipass": "^3.0.0" } }, "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="], - - "@mapbox/node-pre-gyp/tar/minipass": ["minipass@5.0.0", "", {}, "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="], - - "@mapbox/node-pre-gyp/tar/minizlib": ["minizlib@2.1.2", "", { "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" } }, "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="], - - "@mapbox/node-pre-gyp/tar/mkdirp": ["mkdirp@1.0.4", "", { "bin": { "mkdirp": "bin/cmd.js" } }, "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="], - - "@mapbox/node-pre-gyp/tar/yallist": ["yallist@4.0.0", "", {}, "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="], - - "@npmcli/config/nopt/abbrev": ["abbrev@2.0.0", "", {}, "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ=="], - - "@npmcli/map-workspaces/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], - - "@slorber/remark-comment/micromark-factory-space/micromark-util-types": ["micromark-util-types@1.1.0", "", {}, "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg=="], - - "@slorber/remark-comment/micromark-util-character/micromark-util-types": ["micromark-util-types@1.1.0", "", {}, "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg=="], - - "@svgr/core/@babel/core/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg=="], - - "@svgr/core/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/core/@babel/core/@babel/helpers": ["@babel/helpers@7.24.7", "", { "dependencies": { "@babel/template": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg=="], - - "@svgr/core/@babel/core/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/core/@babel/core/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/core/@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - - "@svgr/core/@babel/core/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/core/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - - "@svgr/plugin-jsx/@babel/core/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helpers": ["@babel/helpers@7.24.7", "", { "dependencies": { "@babel/template": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg=="], - - "@svgr/plugin-jsx/@babel/core/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/plugin-jsx/@babel/core/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/plugin-jsx/@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - - "@svgr/plugin-jsx/@babel/core/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/plugin-svgo/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - - "@svgr/webpack/@babel/core/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg=="], - - "@svgr/webpack/@babel/core/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/core/@babel/helpers": ["@babel/helpers@7.24.7", "", { "dependencies": { "@babel/template": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg=="], - - "@svgr/webpack/@babel/core/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/core/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/core/convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - - "@svgr/webpack/@babel/core/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.24.7", "", { "dependencies": { "@babel/compat-data": "^7.24.7", "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-remap-async-to-generator": "^7.24.7", "@babel/plugin-syntax-async-generators": "^7.8.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.24.7", "", { "dependencies": { "@babel/helper-module-imports": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-remap-async-to-generator": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.24.7", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.24.7", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/template": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.24.7", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.24.7", "", { "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.24.7", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.24.7", "", { "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.24.7", "", { "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-simple-access": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.24.7", "", { "dependencies": { "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.24.7", "", { "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.24.7", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.24.7", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-transform-parameters": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.24.7", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.24.7", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.24.7", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.24.7", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg=="], - - "@svgr/webpack/@babel/preset-env/babel-plugin-polyfill-corejs3": ["babel-plugin-polyfill-corejs3@0.10.4", "", { "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.1", "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat": ["core-js-compat@3.37.1", "", { "dependencies": { "browserslist": "^4.23.0" } }, "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg=="], - - "@svgr/webpack/@babel/preset-react/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-display-name": ["@babel/plugin-transform-react-display-name@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx": ["@babel/plugin-transform-react-jsx@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-jsx": "^7.24.7", "@babel/types": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx-development": ["@babel/plugin-transform-react-jsx-development@7.24.7", "", { "dependencies": { "@babel/plugin-transform-react-jsx": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-pure-annotations": ["@babel/plugin-transform-react-pure-annotations@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.24.7", "", { "dependencies": { "@babel/helper-module-transforms": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/helper-simple-access": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript": ["@babel/plugin-transform-typescript@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-create-class-features-plugin": "^7.24.7", "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-typescript": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw=="], - - "@types/body-parser/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/bonjour/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/concat-stream/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/connect-history-api-fallback/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/connect/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/express-serve-static-core/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/http-proxy/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/node-forge/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/sax/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/send/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/serve-static/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/sockjs/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@types/ws/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], - - "@typescript-eslint/type-utils/@typescript-eslint/utils/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], - - "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], - - "@typescript-eslint/utils/@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@5.62.0", "", { "dependencies": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" } }, "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw=="], - - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@5.62.0", "", { "dependencies": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" } }, "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw=="], - - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@typescript-eslint/utils/eslint-scope/estraverse": ["estraverse@4.3.0", "", {}, "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="], - - "@vercel/fun/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@vercel/fun/execa/get-stream": ["get-stream@5.2.0", "", { "dependencies": { "pump": "^3.0.0" } }, "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="], - - "@vercel/fun/execa/human-signals": ["human-signals@1.1.1", "", {}, "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="], - - "@vercel/fun/execa/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], - - "@vercel/fun/execa/npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], - - "@vercel/fun/execa/onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], - - "@vercel/fun/execa/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "@vercel/fun/execa/strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], - - "@vercel/fun/fs-extra/jsonfile": ["jsonfile@4.0.0", "", { "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg=="], - - "@vercel/fun/fs-extra/universalify": ["universalify@0.1.2", "", {}, "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="], - - "@vercel/nft/glob/once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], - - "@vercel/static-config/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "agent-base/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "ajv-formats/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "ajv-keywords/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "ansi-align/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "are-we-there-yet/readable-stream/string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], - - "array.prototype.flatmap/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "array.prototype.flatmap/es-abstract/array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="], - - "array.prototype.flatmap/es-abstract/arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="], - - "array.prototype.flatmap/es-abstract/data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], - - "array.prototype.flatmap/es-abstract/data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="], - - "array.prototype.flatmap/es-abstract/data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="], - - "array.prototype.flatmap/es-abstract/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "array.prototype.flatmap/es-abstract/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "array.prototype.flatmap/es-abstract/es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - - "array.prototype.flatmap/es-abstract/es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="], - - "array.prototype.flatmap/es-abstract/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "array.prototype.flatmap/es-abstract/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "array.prototype.flatmap/es-abstract/get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], - - "array.prototype.flatmap/es-abstract/is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], - - "array.prototype.flatmap/es-abstract/is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="], - - "array.prototype.flatmap/es-abstract/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "array.prototype.flatmap/es-abstract/is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="], - - "array.prototype.flatmap/es-abstract/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "array.prototype.flatmap/es-abstract/is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - - "array.prototype.flatmap/es-abstract/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "array.prototype.flatmap/es-abstract/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "array.prototype.flatmap/es-abstract/object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], - - "array.prototype.flatmap/es-abstract/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "array.prototype.flatmap/es-abstract/string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="], - - "array.prototype.flatmap/es-abstract/string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="], - - "array.prototype.flatmap/es-abstract/typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], - - "array.prototype.flatmap/es-abstract/typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], - - "array.prototype.flatmap/es-abstract/typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="], - - "array.prototype.flatmap/es-abstract/typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="], - - "array.prototype.flatmap/es-abstract/unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="], - - "array.prototype.flatmap/es-abstract/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "autoprefixer/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.165", "", {}, "sha512-naiMx1Z6Nb2TxPU6fiFrUrDTjyPMLdTtaOd2oLmG8zVSg2hCWGkhPyxwk+qRmZ1ytwVqUv0u7ZcDA5+ALhaUtw=="], - - "autoprefixer/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], - - "babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], - - "babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/resolve": ["resolve@1.22.8", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="], - - "body-parser/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "boxen/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - - "boxen/wrap-ansi/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "call-bound/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "call-bound/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "caniuse-api/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "caniuse-api/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "caniuse-api/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "cli-table3/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "cli-truncate/string-width/emoji-regex": ["emoji-regex@10.3.0", "", {}, "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="], - - "cli-truncate/string-width/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "cliui/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/primitive": ["@radix-ui/primitive@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" } }, "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-context": ["@radix-ui/react-context@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.0.5", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.1", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1", "@radix-ui/react-use-escape-keydown": "1.0.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-primitive": "1.0.3", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-id": ["@radix-ui/react-id@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-portal": ["@radix-ui/react-portal@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-presence": ["@radix-ui/react-presence@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-slot": ["@radix-ui/react-slot@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-use-controllable-state": ["@radix-ui/react-use-controllable-state@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA=="], - - "cmdk-react17/@radix-ui/react-dialog/react-remove-scroll": ["react-remove-scroll@2.5.5", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.3", "react-style-singleton": "^2.2.1", "tslib": "^2.1.0", "use-callback-ref": "^1.3.0", "use-sidecar": "^1.1.2" }, "peerDependencies": { "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw=="], - - "cmdk-react17/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg=="], - - "compression/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "concat-stream/readable-stream/string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], - - "copy-webpack-plugin/globby/ignore": ["ignore@5.3.1", "", {}, "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw=="], - - "copy-webpack-plugin/globby/slash": ["slash@4.0.0", "", {}, "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="], - - "copy-webpack-plugin/schema-utils/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], - - "cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - - "css-loader/postcss/source-map-js": ["source-map-js@1.2.0", "", {}, "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="], - - "css-minimizer-webpack-plugin/jest-worker/@types/node": ["@types/node@20.14.9", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg=="], - - "css-minimizer-webpack-plugin/jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], - - "css-minimizer-webpack-plugin/postcss/source-map-js": ["source-map-js@1.2.0", "", {}, "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="], - - "css-minimizer-webpack-plugin/schema-utils/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], - - "css-select/domutils/dom-serializer": ["dom-serializer@1.4.1", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="], - - "cssnano-preset-advanced/autoprefixer/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "cssnano-preset-advanced/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "cssnano-preset-advanced/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "cssnano-preset-advanced/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "cssnano-preset-advanced/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "cssnano-preset-default/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "cssnano-preset-default/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "cssnano-preset-default/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "cssnano-preset-default/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "csso/css-tree/mdn-data": ["mdn-data@2.0.28", "", {}, "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="], - - "csso/css-tree/source-map-js": ["source-map-js@1.2.0", "", {}, "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="], - - "cytoscape-fcose/cose-base/layout-base": ["layout-base@2.0.1", "", {}, "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg=="], - - "d3-sankey/d3-array/internmap": ["internmap@1.0.1", "", {}, "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw=="], - - "d3-sankey/d3-shape/d3-path": ["d3-path@1.0.9", "", {}, "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg=="], - - "default-gateway/execa/get-stream": ["get-stream@6.0.1", "", {}, "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="], - - "default-gateway/execa/human-signals": ["human-signals@2.1.0", "", {}, "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="], - - "default-gateway/execa/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], - - "default-gateway/execa/npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], - - "default-gateway/execa/onetime": ["onetime@5.1.2", "", { "dependencies": { "mimic-fn": "^2.1.0" } }, "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="], - - "default-gateway/execa/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="], - - "default-gateway/execa/strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], - - "detect-port/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/react-helmet-async": ["react-helmet-async@1.3.0", "", { "dependencies": { "@babel/runtime": "^7.12.5", "invariant": "^2.2.4", "prop-types": "^15.7.2", "react-fast-compare": "^3.2.0", "shallowequal": "^1.1.0" }, "peerDependencies": { "react": "^16.6.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0" } }, "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack": ["webpack@5.92.1", "", { "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", "@webassemblyjs/ast": "^1.12.1", "@webassemblyjs/wasm-edit": "^1.12.1", "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", "acorn-import-attributes": "^1.9.5", "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.10", "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" } }, "sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA=="], - - "es-abstract/internal-slot/side-channel": ["side-channel@1.0.6", "", { "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" } }, "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA=="], - - "es-iterator-helpers/es-abstract/array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="], - - "es-iterator-helpers/es-abstract/arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="], - - "es-iterator-helpers/es-abstract/data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], - - "es-iterator-helpers/es-abstract/data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="], - - "es-iterator-helpers/es-abstract/data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="], - - "es-iterator-helpers/es-abstract/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "es-iterator-helpers/es-abstract/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "es-iterator-helpers/es-abstract/es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - - "es-iterator-helpers/es-abstract/es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="], - - "es-iterator-helpers/es-abstract/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "es-iterator-helpers/es-abstract/get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], - - "es-iterator-helpers/es-abstract/is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], - - "es-iterator-helpers/es-abstract/is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="], - - "es-iterator-helpers/es-abstract/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "es-iterator-helpers/es-abstract/is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="], - - "es-iterator-helpers/es-abstract/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "es-iterator-helpers/es-abstract/is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - - "es-iterator-helpers/es-abstract/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "es-iterator-helpers/es-abstract/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "es-iterator-helpers/es-abstract/object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], - - "es-iterator-helpers/es-abstract/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "es-iterator-helpers/es-abstract/string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="], - - "es-iterator-helpers/es-abstract/string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="], - - "es-iterator-helpers/es-abstract/typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], - - "es-iterator-helpers/es-abstract/typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], - - "es-iterator-helpers/es-abstract/typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="], - - "es-iterator-helpers/es-abstract/typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="], - - "es-iterator-helpers/es-abstract/unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="], - - "es-iterator-helpers/es-abstract/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "es-iterator-helpers/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "es-iterator-helpers/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "eval/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "express/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "file-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - - "finalhandler/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "framer-motion/@emotion/is-prop-valid/@emotion/memoize": ["@emotion/memoize@0.7.4", "", {}, "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="], - - "gauge/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], - - "gray-matter/js-yaml/argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="], - - "hast-util-to-jsx-runtime/style-to-object/inline-style-parser": ["inline-style-parser@0.2.3", "", {}, "sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g=="], - - "html-webpack-plugin/html-minifier-terser/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - - "https-proxy-agent/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "iterator.prototype/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "jest-util/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "jest-worker/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "log-update/slice-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - - "log-update/slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@5.0.0", "", { "dependencies": { "get-east-asian-width": "^1.0.0" } }, "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA=="], - - "log-update/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "mdast-util-definitions/unist-util-visit/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], - - "mdast-util-definitions/unist-util-visit/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], - - "mdast-util-definitions/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@3.1.1", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" } }, "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg=="], - - "micromark/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "mlly/pkg-types/confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="], - - "null-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - - "object.entries/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "object.values/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "own-keys/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "own-keys/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "path-match/path-to-regexp/isarray": ["isarray@0.0.1", "", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="], - - "pkg-dir/find-up/locate-path": ["locate-path@7.2.0", "", { "dependencies": { "p-locate": "^6.0.0" } }, "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA=="], - - "pkg-dir/find-up/path-exists": ["path-exists@5.0.0", "", {}, "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="], - - "postcss-colormin/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-colormin/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-colormin/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-colormin/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "postcss-convert-values/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-convert-values/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-convert-values/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-convert-values/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "postcss-loader/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - - "postcss-merge-rules/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-merge-rules/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-merge-rules/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-merge-rules/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "postcss-minify-params/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-minify-params/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-minify-params/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-minify-params/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "postcss-normalize-unicode/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-normalize-unicode/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-normalize-unicode/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-normalize-unicode/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "postcss-preset-env/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001721", "", {}, "sha512-cOuvmUVtKrtEaoKiO0rSc29jcjwMwX5tOHDy4MgVFEWiUXj4uBMJkwI8MDySkgXidpMiHUcviogAvFi4pA2hDQ=="], - - "postcss-preset-env/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.165", "", {}, "sha512-naiMx1Z6Nb2TxPU6fiFrUrDTjyPMLdTtaOd2oLmG8zVSg2hCWGkhPyxwk+qRmZ1ytwVqUv0u7ZcDA5+ALhaUtw=="], - - "postcss-preset-env/browserslist/update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], - - "postcss-reduce-initial/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "postcss-reduce-initial/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "postcss-reduce-initial/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "postcss-reduce-initial/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "raw-body/http-errors/depd": ["depd@1.1.2", "", {}, "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="], - - "raw-body/http-errors/setprototypeof": ["setprototypeof@1.1.1", "", {}, "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="], - - "raw-body/http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - - "raw-body/http-errors/toidentifier": ["toidentifier@1.0.0", "", {}, "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="], - - "react-remark/remark-parse/mdast-util-from-markdown": ["mdast-util-from-markdown@0.8.5", "", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-string": "^2.0.0", "micromark": "~2.11.0", "parse-entities": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }, "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ=="], - - "react-remark/remark-rehype/mdast-util-to-hast": ["mdast-util-to-hast@10.2.0", "", { "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", "mdast-util-definitions": "^4.0.0", "mdurl": "^1.0.0", "unist-builder": "^2.0.0", "unist-util-generated": "^1.0.0", "unist-util-position": "^3.0.0", "unist-util-visit": "^2.0.0" } }, "sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ=="], - - "react-remark/unified/bail": ["bail@1.0.5", "", {}, "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="], - - "react-remark/unified/is-plain-obj": ["is-plain-obj@2.1.0", "", {}, "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="], - - "react-remark/unified/trough": ["trough@1.0.5", "", {}, "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="], - - "react-remark/unified/vfile": ["vfile@4.2.1", "", { "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", "unist-util-stringify-position": "^2.0.0", "vfile-message": "^2.0.0" } }, "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA=="], - - "react-router/path-to-regexp/isarray": ["isarray@0.0.1", "", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="], - - "reflect.getprototypeof/es-abstract/array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="], - - "reflect.getprototypeof/es-abstract/arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="], - - "reflect.getprototypeof/es-abstract/data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], - - "reflect.getprototypeof/es-abstract/data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="], - - "reflect.getprototypeof/es-abstract/data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="], - - "reflect.getprototypeof/es-abstract/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "reflect.getprototypeof/es-abstract/es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - - "reflect.getprototypeof/es-abstract/es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="], - - "reflect.getprototypeof/es-abstract/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "reflect.getprototypeof/es-abstract/get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], - - "reflect.getprototypeof/es-abstract/is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], - - "reflect.getprototypeof/es-abstract/is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="], - - "reflect.getprototypeof/es-abstract/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "reflect.getprototypeof/es-abstract/is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="], - - "reflect.getprototypeof/es-abstract/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "reflect.getprototypeof/es-abstract/is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - - "reflect.getprototypeof/es-abstract/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "reflect.getprototypeof/es-abstract/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "reflect.getprototypeof/es-abstract/object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], - - "reflect.getprototypeof/es-abstract/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "reflect.getprototypeof/es-abstract/string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="], - - "reflect.getprototypeof/es-abstract/string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="], - - "reflect.getprototypeof/es-abstract/typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], - - "reflect.getprototypeof/es-abstract/typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], - - "reflect.getprototypeof/es-abstract/typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="], - - "reflect.getprototypeof/es-abstract/typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="], - - "reflect.getprototypeof/es-abstract/unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="], - - "reflect.getprototypeof/es-abstract/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "reflect.getprototypeof/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "regexp.prototype.flags/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "renderkid/htmlparser2/domhandler": ["domhandler@4.3.1", "", { "dependencies": { "domelementtype": "^2.2.0" } }, "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="], - - "renderkid/htmlparser2/domutils": ["domutils@2.8.0", "", { "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="], - - "renderkid/htmlparser2/entities": ["entities@2.2.0", "", {}, "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="], - - "rimraf/glob/once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], - - "rtlcss/postcss/source-map-js": ["source-map-js@1.2.0", "", {}, "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="], - - "safe-array-concat/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "safe-array-concat/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "send/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "serve-handler/mime-types/mime-db": ["mime-db@1.33.0", "", {}, "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="], - - "serve-index/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - - "serve-index/http-errors/depd": ["depd@1.1.2", "", {}, "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="], - - "serve-index/http-errors/inherits": ["inherits@2.0.3", "", {}, "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="], - - "serve-index/http-errors/setprototypeof": ["setprototypeof@1.1.0", "", {}, "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="], - - "serve-index/http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - - "side-channel-map/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "side-channel-map/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "side-channel-weakmap/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "side-channel-weakmap/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "spdy-transport/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "spdy-transport/readable-stream/string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], - - "spdy/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "string-width/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "string.prototype.matchall/es-abstract/array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="], - - "string.prototype.matchall/es-abstract/arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="], - - "string.prototype.matchall/es-abstract/data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], - - "string.prototype.matchall/es-abstract/data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="], - - "string.prototype.matchall/es-abstract/data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="], - - "string.prototype.matchall/es-abstract/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "string.prototype.matchall/es-abstract/es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - - "string.prototype.matchall/es-abstract/es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="], - - "string.prototype.matchall/es-abstract/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "string.prototype.matchall/es-abstract/get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], - - "string.prototype.matchall/es-abstract/is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], - - "string.prototype.matchall/es-abstract/is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="], - - "string.prototype.matchall/es-abstract/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "string.prototype.matchall/es-abstract/is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="], - - "string.prototype.matchall/es-abstract/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "string.prototype.matchall/es-abstract/is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - - "string.prototype.matchall/es-abstract/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "string.prototype.matchall/es-abstract/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "string.prototype.matchall/es-abstract/object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], - - "string.prototype.matchall/es-abstract/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "string.prototype.matchall/es-abstract/string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="], - - "string.prototype.matchall/es-abstract/string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="], - - "string.prototype.matchall/es-abstract/typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], - - "string.prototype.matchall/es-abstract/typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], - - "string.prototype.matchall/es-abstract/typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="], - - "string.prototype.matchall/es-abstract/typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="], - - "string.prototype.matchall/es-abstract/unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="], - - "string.prototype.matchall/es-abstract/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "string.prototype.matchall/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "string.prototype.repeat/es-abstract/array-buffer-byte-length": ["array-buffer-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "is-array-buffer": "^3.0.5" } }, "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw=="], - - "string.prototype.repeat/es-abstract/arraybuffer.prototype.slice": ["arraybuffer.prototype.slice@1.0.4", "", { "dependencies": { "array-buffer-byte-length": "^1.0.1", "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "is-array-buffer": "^3.0.4" } }, "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ=="], - - "string.prototype.repeat/es-abstract/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "string.prototype.repeat/es-abstract/data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="], - - "string.prototype.repeat/es-abstract/data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="], - - "string.prototype.repeat/es-abstract/data-view-byte-offset": ["data-view-byte-offset@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" } }, "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ=="], - - "string.prototype.repeat/es-abstract/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "string.prototype.repeat/es-abstract/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "string.prototype.repeat/es-abstract/es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="], - - "string.prototype.repeat/es-abstract/es-to-primitive": ["es-to-primitive@1.3.0", "", { "dependencies": { "is-callable": "^1.2.7", "is-date-object": "^1.0.5", "is-symbol": "^1.0.4" } }, "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g=="], - - "string.prototype.repeat/es-abstract/function.prototype.name": ["function.prototype.name@1.1.8", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "functions-have-names": "^1.2.3", "hasown": "^2.0.2", "is-callable": "^1.2.7" } }, "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q=="], - - "string.prototype.repeat/es-abstract/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "string.prototype.repeat/es-abstract/get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="], - - "string.prototype.repeat/es-abstract/is-array-buffer": ["is-array-buffer@3.0.5", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "get-intrinsic": "^1.2.6" } }, "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A=="], - - "string.prototype.repeat/es-abstract/is-data-view": ["is-data-view@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" } }, "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw=="], - - "string.prototype.repeat/es-abstract/is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], - - "string.prototype.repeat/es-abstract/is-shared-array-buffer": ["is-shared-array-buffer@1.0.4", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A=="], - - "string.prototype.repeat/es-abstract/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "string.prototype.repeat/es-abstract/is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="], - - "string.prototype.repeat/es-abstract/is-weakref": ["is-weakref@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3" } }, "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew=="], - - "string.prototype.repeat/es-abstract/object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], - - "string.prototype.repeat/es-abstract/object.assign": ["object.assign@4.1.7", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0", "has-symbols": "^1.1.0", "object-keys": "^1.1.1" } }, "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="], - - "string.prototype.repeat/es-abstract/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "string.prototype.repeat/es-abstract/string.prototype.trim": ["string.prototype.trim@1.2.10", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-data-property": "^1.1.4", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-object-atoms": "^1.0.0", "has-property-descriptors": "^1.0.2" } }, "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA=="], - - "string.prototype.repeat/es-abstract/string.prototype.trimend": ["string.prototype.trimend@1.0.9", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ=="], - - "string.prototype.repeat/es-abstract/typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], - - "string.prototype.repeat/es-abstract/typed-array-byte-length": ["typed-array-byte-length@1.0.3", "", { "dependencies": { "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.14" } }, "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg=="], - - "string.prototype.repeat/es-abstract/typed-array-byte-offset": ["typed-array-byte-offset@1.0.4", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "for-each": "^0.3.3", "gopd": "^1.2.0", "has-proto": "^1.2.0", "is-typed-array": "^1.1.15", "reflect.getprototypeof": "^1.0.9" } }, "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ=="], - - "string.prototype.repeat/es-abstract/typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="], - - "string.prototype.repeat/es-abstract/unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="], - - "string.prototype.repeat/es-abstract/which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="], - - "styled-components/@emotion/is-prop-valid/@emotion/memoize": ["@emotion/memoize@0.8.1", "", {}, "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="], - - "styled-components/postcss/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "stylehacks/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "stylehacks/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "stylehacks/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "stylehacks/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "update-notifier/boxen/camelcase": ["camelcase@7.0.1", "", {}, "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw=="], - - "update-notifier/boxen/type-fest": ["type-fest@2.19.0", "", {}, "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="], - - "update-notifier/boxen/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], - - "url-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - - "vfile-reporter/string-width/emoji-regex": ["emoji-regex@10.3.0", "", {}, "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="], - - "vfile-reporter/string-width/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "webpack-dev-middleware/schema-utils/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], - - "webpack-dev-server/chokidar/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], - - "webpack-dev-server/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - - "webpack-dev-server/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], - - "webpack-dev-server/schema-utils/ajv": ["ajv@8.16.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.4.1" } }, "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw=="], - - "webpack/eslint-scope/estraverse": ["estraverse@4.3.0", "", {}, "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="], - - "webpackbar/ansi-escapes/type-fest": ["type-fest@0.21.3", "", {}, "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="], - - "webpackbar/wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - - "which-builtin-type/function.prototype.name/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "which-builtin-type/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], - - "which-builtin-type/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], - - "which-builtin-type/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], - - "which-builtin-type/which-boxed-primitive/is-string": ["is-string@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA=="], - - "which-builtin-type/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], - - "which-builtin-type/which-typed-array/call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="], - - "which-builtin-type/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "wide-align/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "wrap-ansi/string-width/emoji-regex": ["emoji-regex@10.3.0", "", {}, "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw=="], - - "wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "@babel/helper-builder-binary-assignment-operator-visitor/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-create-class-features-plugin/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@babel/helper-define-polyfill-provider/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-module-imports/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-module-transforms/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-module-transforms/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-remap-async-to-generator/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/helper-replace-supers/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-replace-supers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-simple-access/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helper-wrap-function/@babel/template/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-wrap-function/@babel/template/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/helper-wrap-function/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/helper-wrap-function/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/helpers/@babel/template/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/helpers/@babel/template/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/highlight/chalk/ansi-styles/color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="], - - "@babel/highlight/chalk/supports-color/has-flag": ["has-flag@3.0.0", "", {}, "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-bugfix-firefox-class-in-computed-class-key/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-async-generator-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-classes/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-classes/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-computed-properties/@babel/template/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-function-name/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@babel/plugin-transform-function-name/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/generator/jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@babel/plugin-transform-modules-systemjs/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-regexp-modifiers/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-regexp-modifiers/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regenerate-unicode-properties": ["regenerate-unicode-properties@10.2.0", "", { "dependencies": { "regenerate": "^1.4.2" } }, "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA=="], - - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser": ["regjsparser@0.12.0", "", { "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ=="], - - "@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/resolve": ["resolve@1.22.8", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw=="], - - "@docusaurus/babel/@babel/generator/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@docusaurus/babel/@babel/generator/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@docusaurus/babel/@babel/traverse/@babel/code-frame/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@docusaurus/babel/@babel/traverse/@babel/code-frame/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "@docusaurus/babel/@babel/traverse/@babel/types/@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], - - "@docusaurus/babel/@babel/traverse/@babel/types/@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], - - "@docusaurus/babel/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@docusaurus/core/execa/onetime/mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], - - "@docusaurus/utils/execa/onetime/mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], - - "@lingui/conf/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - - "@mapbox/hast-util-table-cell-style/unist-util-visit/unist-util-visit-parents/unist-util-is": ["unist-util-is@3.0.0", "", {}, "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="], - - "@mapbox/node-pre-gyp/tar/fs-minipass/minipass": ["minipass@3.3.6", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="], - - "@mapbox/node-pre-gyp/tar/minizlib/minipass": ["minipass@3.3.6", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - - "@svgr/core/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/core/@babel/core/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/core/@babel/core/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/core/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/plugin-jsx/@babel/core/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/plugin-jsx/@babel/core/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/plugin-svgo/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/@babel/compat-data": ["@babel/compat-data@7.24.7", "", {}, "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/@babel/helper-validator-option": ["@babel/helper-validator-option@7.24.7", "", {}, "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - - "@svgr/webpack/@babel/core/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/core/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/core/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-wrap-function": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-wrap-function": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-pure-annotations/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-module-imports": "^7.24.7", "@babel/helper-simple-access": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.24.7", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7", "@babel/helper-replace-supers": "^7.24.7", "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/plugin-syntax-typescript": ["@babel/plugin-syntax-typescript@7.24.7", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA=="], - - "@typescript-eslint/utils/@typescript-eslint/typescript-estree/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@vercel/fun/execa/onetime/mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], - - "array.prototype.flatmap/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "array.prototype.flatmap/call-bind/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "array.prototype.flatmap/es-abstract/unbox-primitive/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "array.prototype.flatmap/es-abstract/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "autoprefixer/browserslist/update-browserslist-db/escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], - - "babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "boxen/wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "cli-truncate/string-width/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer/@radix-ui/react-use-escape-keydown": ["@radix-ui/react-use-escape-keydown@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-scope/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-id/@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-presence/@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ=="], - - "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-use-controllable-state/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - - "cmdk-react17/@radix-ui/react-primitive/@radix-ui/react-slot/@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="], - - "copy-webpack-plugin/schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "css-minimizer-webpack-plugin/jest-worker/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], - - "css-minimizer-webpack-plugin/schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "css-select/domutils/dom-serializer/entities": ["entities@2.2.0", "", {}, "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="], - - "default-gateway/execa/onetime/mimic-fn": ["mimic-fn@2.1.0", "", {}, "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/react-helmet-async/@babel/runtime": ["@babel/runtime@7.24.7", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/ast": ["@webassemblyjs/ast@1.12.1", "", { "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit": ["@webassemblyjs/wasm-edit@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/helper-wasm-section": "1.12.1", "@webassemblyjs/wasm-gen": "1.12.1", "@webassemblyjs/wasm-opt": "1.12.1", "@webassemblyjs/wasm-parser": "1.12.1", "@webassemblyjs/wast-printer": "1.12.1" } }, "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser": ["@webassemblyjs/wasm-parser@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", "@webassemblyjs/utf8": "1.11.6" } }, "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/acorn": ["acorn@8.12.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/browserslist": ["browserslist@4.23.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001629", "electron-to-chromium": "^1.4.796", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" } }, "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/enhanced-resolve": ["enhanced-resolve@5.17.0", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/eslint-scope": ["eslint-scope@5.1.1", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/schema-utils": ["schema-utils@3.3.0", "", { "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } }, "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg=="], - - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/terser-webpack-plugin": ["terser-webpack-plugin@5.3.10", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", "terser": "^5.26.0" }, "peerDependencies": { "webpack": "^5.1.0" } }, "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w=="], - - "es-iterator-helpers/es-abstract/unbox-primitive/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "es-iterator-helpers/es-abstract/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "object.entries/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "object.values/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "pkg-dir/find-up/locate-path/p-locate": ["p-locate@6.0.0", "", { "dependencies": { "p-limit": "^4.0.0" } }, "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="], - - "postcss-loader/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - - "postcss-preset-env/browserslist/update-browserslist-db/escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], - - "postcss-preset-env/browserslist/update-browserslist-db/picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], - - "react-remark/remark-parse/mdast-util-from-markdown/@types/mdast": ["@types/mdast@3.0.15", "", { "dependencies": { "@types/unist": "^2" } }, "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ=="], - - "react-remark/remark-parse/mdast-util-from-markdown/mdast-util-to-string": ["mdast-util-to-string@2.0.0", "", {}, "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w=="], - - "react-remark/remark-parse/mdast-util-from-markdown/micromark": ["micromark@2.11.4", "", { "dependencies": { "debug": "^4.0.0", "parse-entities": "^2.0.0" } }, "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA=="], - - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities": ["parse-entities@2.0.0", "", { "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", "character-reference-invalid": "^1.0.0", "is-alphanumerical": "^1.0.0", "is-decimal": "^1.0.0", "is-hexadecimal": "^1.0.0" } }, "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="], - - "react-remark/remark-parse/mdast-util-from-markdown/unist-util-stringify-position": ["unist-util-stringify-position@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.2" } }, "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g=="], - - "react-remark/remark-rehype/mdast-util-to-hast/@types/mdast": ["@types/mdast@3.0.15", "", { "dependencies": { "@types/unist": "^2" } }, "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ=="], - - "react-remark/remark-rehype/mdast-util-to-hast/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], - - "react-remark/remark-rehype/mdast-util-to-hast/unist-util-position": ["unist-util-position@3.1.0", "", {}, "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA=="], - - "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit": ["unist-util-visit@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" } }, "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q=="], - - "react-remark/unified/vfile/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], - - "react-remark/unified/vfile/unist-util-stringify-position": ["unist-util-stringify-position@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.2" } }, "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g=="], - - "react-remark/unified/vfile/vfile-message": ["vfile-message@2.0.4", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }, "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="], - - "reflect.getprototypeof/es-abstract/unbox-primitive/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "reflect.getprototypeof/es-abstract/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "regexp.prototype.flags/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], - - "regexp.prototype.flags/call-bind/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - - "renderkid/htmlparser2/domutils/dom-serializer": ["dom-serializer@1.4.1", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="], - - "string.prototype.matchall/es-abstract/unbox-primitive/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "string.prototype.matchall/es-abstract/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "string.prototype.repeat/es-abstract/call-bind/es-define-property": ["es-define-property@1.0.0", "", { "dependencies": { "get-intrinsic": "^1.2.4" } }, "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="], - - "string.prototype.repeat/es-abstract/unbox-primitive/which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="], - - "string.prototype.repeat/es-abstract/which-typed-array/for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="], - - "update-notifier/boxen/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - - "update-notifier/boxen/wrap-ansi/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], - - "vfile-reporter/string-width/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], - - "webpack-dev-middleware/schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "webpack-dev-server/schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - - "webpackbar/wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - - "which-builtin-type/function.prototype.name/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "which-builtin-type/which-boxed-primitive/is-symbol/safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - - "which-builtin-type/which-typed-array/call-bind/get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], - - "@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="], - - "@babel/plugin-transform-dotall-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-duplicate-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-named-capturing-groups-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-regexp-modifiers/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-unicode-property-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-unicode-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/plugin-transform-unicode-sets-regex/@babel/helper-create-regexp-features-plugin/regexpu-core/regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], - - "@babel/preset-env/babel-plugin-polyfill-corejs3/@babel/helper-define-polyfill-provider/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@svgr/core/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@svgr/plugin-jsx/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@svgr/webpack/@babel/core/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@svgr/webpack/@babel/preset-env/@babel/helper-compilation-targets/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.24.7", "", { "dependencies": { "@babel/helper-function-name": "^7.24.7", "@babel/template": "^7.24.7", "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.24.7", "", { "dependencies": { "@babel/helper-function-name": "^7.24.7", "@babel/template": "^7.24.7", "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], - - "@svgr/webpack/@babel/preset-env/core-js-compat/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-pure-annotations/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports": ["@babel/helper-module-imports@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-portal": ["@radix-ui/react-portal@1.0.4", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-primitive": "1.0.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-presence": ["@radix-ui/react-presence@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1", "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7" } }, "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-slot": ["@radix-ui/react-slot@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.24.7", "", { "dependencies": { "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-member-expression-to-functions": "^7.24.7", "@babel/helper-optimise-call-expression": "^7.24.7" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-use-controllable-state": ["@radix-ui/react-use-controllable-state@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.24.7", "", { "dependencies": { "@babel/traverse": "^7.24.7", "@babel/types": "^7.24.7" } }, "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ=="], + "cmdk-react17/@radix-ui/react-dialog/react-remove-scroll": ["react-remove-scroll@2.5.5", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.3", "react-style-singleton": "^2.2.1", "tslib": "^2.1.0", "use-callback-ref": "^1.3.0", "use-sidecar": "^1.1.2" }, "peerDependencies": { "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw=="], - "array.prototype.flatmap/es-abstract/unbox-primitive/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "cmdk-react17/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.0.2", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-compose-refs": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg=="], - "array.prototype.flatmap/es-abstract/unbox-primitive/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], + "compression/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "array.prototype.flatmap/es-abstract/unbox-primitive/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "concat-stream/readable-stream/string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], - "array.prototype.flatmap/es-abstract/unbox-primitive/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], + "copy-webpack-plugin/globby/slash": ["slash@4.0.0", "", {}, "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/ast/@webassemblyjs/helper-numbers": ["@webassemblyjs/helper-numbers@1.11.6", "", { "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g=="], + "cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/ast/@webassemblyjs/helper-wasm-bytecode": ["@webassemblyjs/helper-wasm-bytecode@1.11.6", "", {}, "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="], + "css-loader/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/helper-buffer": ["@webassemblyjs/helper-buffer@1.12.1", "", {}, "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw=="], + "css-minimizer-webpack-plugin/jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/helper-wasm-bytecode": ["@webassemblyjs/helper-wasm-bytecode@1.11.6", "", {}, "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="], + "css-minimizer-webpack-plugin/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/helper-wasm-section": ["@webassemblyjs/helper-wasm-section@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/wasm-gen": "1.12.1" } }, "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g=="], + "css-select/domutils/dom-serializer": ["dom-serializer@1.4.1", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wasm-gen": ["@webassemblyjs/wasm-gen@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", "@webassemblyjs/utf8": "1.11.6" } }, "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w=="], + "csso/css-tree/mdn-data": ["mdn-data@2.0.28", "", {}, "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wasm-opt": ["@webassemblyjs/wasm-opt@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/wasm-gen": "1.12.1", "@webassemblyjs/wasm-parser": "1.12.1" } }, "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg=="], + "cytoscape-fcose/cose-base/layout-base": ["layout-base@2.0.1", "", {}, "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wast-printer": ["@webassemblyjs/wast-printer@1.12.1", "", { "dependencies": { "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA=="], + "d3-sankey/d3-array/internmap": ["internmap@1.0.1", "", {}, "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser/@webassemblyjs/helper-api-error": ["@webassemblyjs/helper-api-error@1.11.6", "", {}, "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q=="], + "d3-sankey/d3-shape/d3-path": ["d3-path@1.0.9", "", {}, "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser/@webassemblyjs/helper-wasm-bytecode": ["@webassemblyjs/helper-wasm-bytecode@1.11.6", "", {}, "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA=="], + "express/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser/@webassemblyjs/ieee754": ["@webassemblyjs/ieee754@1.11.6", "", { "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg=="], + "file-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser/@webassemblyjs/leb128": ["@webassemblyjs/leb128@1.11.6", "", { "dependencies": { "@xtuc/long": "4.2.2" } }, "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ=="], + "finalhandler/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-parser/@webassemblyjs/utf8": ["@webassemblyjs/utf8@1.11.6", "", {}, "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA=="], + "framer-motion/@emotion/is-prop-valid/@emotion/memoize": ["@emotion/memoize@0.7.4", "", {}, "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001639", "", {}, "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg=="], + "glob/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/browserslist/electron-to-chromium": ["electron-to-chromium@1.4.816", "", {}, "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw=="], + "graphql-config/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/browserslist/node-releases": ["node-releases@2.0.14", "", {}, "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="], + "graphql-config/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/browserslist/update-browserslist-db": ["update-browserslist-db@1.0.16", "", { "dependencies": { "escalade": "^3.1.2", "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ=="], + "gray-matter/js-yaml/argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/eslint-scope/estraverse": ["estraverse@4.3.0", "", {}, "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="], + "hast-to-hyperscript/style-to-object/inline-style-parser": ["inline-style-parser@0.1.1", "", {}, "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], + "html-webpack-plugin/html-minifier-terser/commander": ["commander@8.3.0", "", {}, "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="], - "es-iterator-helpers/es-abstract/unbox-primitive/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "log-update/slice-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "es-iterator-helpers/es-abstract/unbox-primitive/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], + "log-update/slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@5.0.0", "", { "dependencies": { "get-east-asian-width": "^1.0.0" } }, "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA=="], - "es-iterator-helpers/es-abstract/unbox-primitive/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "mdast-util-definitions/unist-util-visit/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "es-iterator-helpers/es-abstract/unbox-primitive/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], + "mdast-util-definitions/unist-util-visit/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], - "pkg-dir/find-up/locate-path/p-locate/p-limit": ["p-limit@4.0.0", "", { "dependencies": { "yocto-queue": "^1.0.0" } }, "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="], + "mdast-util-definitions/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@3.1.1", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" } }, "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg=="], - "react-remark/remark-parse/mdast-util-from-markdown/@types/mdast/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], + "mlly/pkg-types/confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="], - "react-remark/remark-parse/mdast-util-from-markdown/micromark/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "null-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-entities": ["character-entities@1.2.4", "", {}, "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="], + "ox/@scure/bip32/@scure/base": ["@scure/base@1.2.6", "", {}, "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-entities-legacy": ["character-entities-legacy@1.1.4", "", {}, "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="], + "ox/@scure/bip39/@scure/base": ["@scure/base@1.2.6", "", {}, "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-reference-invalid": ["character-reference-invalid@1.1.4", "", {}, "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="], + "path-match/path-to-regexp/isarray": ["isarray@0.0.1", "", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-alphanumerical": ["is-alphanumerical@1.0.4", "", { "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" } }, "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="], + "pkg-dir/find-up/locate-path": ["locate-path@7.2.0", "", { "dependencies": { "p-locate": "^6.0.0" } }, "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-decimal": ["is-decimal@1.0.4", "", {}, "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw=="], + "pkg-dir/find-up/path-exists": ["path-exists@5.0.0", "", {}, "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="], - "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-hexadecimal": ["is-hexadecimal@1.0.4", "", {}, "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw=="], + "postcss-loader/cosmiconfig/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "react-remark/remark-parse/mdast-util-from-markdown/unist-util-stringify-position/@types/unist": ["@types/unist@2.0.10", "", {}, "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="], + "raw-body/http-errors/depd": ["depd@1.1.2", "", {}, "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="], - "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], + "raw-body/http-errors/setprototypeof": ["setprototypeof@1.1.1", "", {}, "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="], - "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@3.1.1", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" } }, "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg=="], + "raw-body/http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - "reflect.getprototypeof/es-abstract/unbox-primitive/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "raw-body/http-errors/toidentifier": ["toidentifier@1.0.0", "", {}, "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="], - "reflect.getprototypeof/es-abstract/unbox-primitive/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], + "react-remark/remark-parse/mdast-util-from-markdown": ["mdast-util-from-markdown@0.8.5", "", { "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-to-string": "^2.0.0", "micromark": "~2.11.0", "parse-entities": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }, "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ=="], - "reflect.getprototypeof/es-abstract/unbox-primitive/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "react-remark/remark-rehype/mdast-util-to-hast": ["mdast-util-to-hast@10.2.0", "", { "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", "mdast-util-definitions": "^4.0.0", "mdurl": "^1.0.0", "unist-builder": "^2.0.0", "unist-util-generated": "^1.0.0", "unist-util-position": "^3.0.0", "unist-util-visit": "^2.0.0" } }, "sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ=="], - "reflect.getprototypeof/es-abstract/unbox-primitive/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], + "react-remark/unified/bail": ["bail@1.0.5", "", {}, "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ=="], - "string.prototype.matchall/es-abstract/unbox-primitive/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "react-remark/unified/is-plain-obj": ["is-plain-obj@2.1.0", "", {}, "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="], - "string.prototype.matchall/es-abstract/unbox-primitive/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], + "react-remark/unified/trough": ["trough@1.0.5", "", {}, "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA=="], - "string.prototype.matchall/es-abstract/unbox-primitive/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "react-remark/unified/vfile": ["vfile@4.2.1", "", { "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", "unist-util-stringify-position": "^2.0.0", "vfile-message": "^2.0.0" } }, "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA=="], - "string.prototype.matchall/es-abstract/unbox-primitive/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], + "react-router/path-to-regexp/isarray": ["isarray@0.0.1", "", {}, "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="], - "string.prototype.repeat/es-abstract/call-bind/es-define-property/get-intrinsic": ["get-intrinsic@1.2.4", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" } }, "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ=="], + "renderkid/htmlparser2/domhandler": ["domhandler@4.3.1", "", { "dependencies": { "domelementtype": "^2.2.0" } }, "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="], - "string.prototype.repeat/es-abstract/unbox-primitive/which-boxed-primitive/is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="], + "renderkid/htmlparser2/domutils": ["domutils@2.8.0", "", { "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="], - "string.prototype.repeat/es-abstract/unbox-primitive/which-boxed-primitive/is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="], + "renderkid/htmlparser2/entities": ["entities@2.2.0", "", {}, "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="], - "string.prototype.repeat/es-abstract/unbox-primitive/which-boxed-primitive/is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="], + "renderkid/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "string.prototype.repeat/es-abstract/unbox-primitive/which-boxed-primitive/is-symbol": ["is-symbol@1.1.1", "", { "dependencies": { "call-bound": "^1.0.2", "has-symbols": "^1.1.0", "safe-regex-test": "^1.1.0" } }, "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w=="], + "rtlcss/postcss/nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], - "update-notifier/boxen/wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@6.0.1", "", {}, "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="], + "sablier/viem/@noble/curves": ["@noble/curves@1.9.2", "", { "dependencies": { "@noble/hashes": "1.8.0" } }, "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g=="], - "which-builtin-type/function.prototype.name/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], + "sablier/viem/@noble/hashes": ["@noble/hashes@1.8.0", "", {}, "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A=="], - "which-builtin-type/function.prototype.name/call-bind/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], + "sablier/viem/@scure/bip32": ["@scure/bip32@1.7.0", "", { "dependencies": { "@noble/curves": "~1.9.0", "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }, "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw=="], - "which-builtin-type/which-typed-array/call-bind/get-intrinsic/es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], + "sablier/viem/@scure/bip39": ["@scure/bip39@1.6.0", "", { "dependencies": { "@noble/hashes": "~1.8.0", "@scure/base": "~1.2.5" } }, "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A=="], - "which-builtin-type/which-typed-array/call-bind/get-intrinsic/es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], + "sablier/viem/abitype": ["abitype@1.0.8", "", { "peerDependencies": { "typescript": ">=5.0.4", "zod": "^3 >=3.22.0" }, "optionalPeers": ["typescript", "zod"] }, "sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "sablier/viem/isows": ["isows@1.0.7", "", { "peerDependencies": { "ws": "*" } }, "sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "send/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "serve-handler/mime-types/mime-db": ["mime-db@1.33.0", "", {}, "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "serve-index/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "serve-index/http-errors/depd": ["depd@1.1.2", "", {}, "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "serve-index/http-errors/inherits": ["inherits@2.0.3", "", {}, "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "serve-index/http-errors/setprototypeof": ["setprototypeof@1.1.0", "", {}, "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "serve-index/http-errors/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "spdy-transport/readable-stream/string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "string-width-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "styled-components/@emotion/is-prop-valid/@emotion/memoize": ["@emotion/memoize@0.8.1", "", {}, "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "unified-engine/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "update-notifier/boxen/camelcase": ["camelcase@7.0.1", "", {}, "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "update-notifier/boxen/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "url-loader/schema-utils/ajv-keywords": ["ajv-keywords@3.5.2", "", { "peerDependencies": { "ajv": "^6.9.1" } }, "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "vfile-reporter/string-width/emoji-regex": ["emoji-regex@10.4.0", "", {}, "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "webpack-dev-server/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "webpack-dev-server/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "webpack/eslint-scope/estraverse": ["estraverse@4.3.0", "", {}, "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "webpackbar/ansi-escapes/type-fest": ["type-fest@0.21.3", "", {}, "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "webpackbar/wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "webpackbar/wrap-ansi/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "wrap-ansi-cjs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "wrap-ansi-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "wrap-ansi/string-width/emoji-regex": ["emoji-regex@10.4.0", "", {}, "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "@lingui/conf/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "@mapbox/hast-util-table-cell-style/unist-util-visit/unist-util-visit-parents/unist-util-is": ["unist-util-is@3.0.0", "", {}, "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "@svgr/core/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "@svgr/plugin-svgo/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "ansi-align/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "cli-table3/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-dismissable-layer/@radix-ui/react-use-escape-keydown": ["@radix-ui/react-use-escape-keydown@1.0.3", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-focus-scope/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-id/@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-presence/@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "cmdk-react17/@radix-ui/react-dialog/@radix-ui/react-use-controllable-state/@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "cmdk-react17/@radix-ui/react-primitive/@radix-ui/react-slot/@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.0.1", "", { "dependencies": { "@babel/runtime": "^7.13.10" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0" }, "optionalPeers": ["@types/react"] }, "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "concat-stream/readable-stream/string_decoder/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "css-select/domutils/dom-serializer/entities": ["entities@2.2.0", "", {}, "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "graphql-config/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "pkg-dir/find-up/locate-path/p-locate": ["p-locate@6.0.0", "", { "dependencies": { "p-limit": "^4.0.0" } }, "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "postcss-loader/cosmiconfig/parse-json/lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-annotate-as-pure/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/@types/mdast": ["@types/mdast@3.0.15", "", { "dependencies": { "@types/unist": "^2" } }, "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "react-remark/remark-parse/mdast-util-from-markdown/mdast-util-to-string": ["mdast-util-to-string@2.0.0", "", {}, "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/micromark": ["micromark@2.11.4", "", { "dependencies": { "debug": "^4.0.0", "parse-entities": "^2.0.0" } }, "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities": ["parse-entities@2.0.0", "", { "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", "character-reference-invalid": "^1.0.0", "is-alphanumerical": "^1.0.0", "is-decimal": "^1.0.0", "is-hexadecimal": "^1.0.0" } }, "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "react-remark/remark-parse/mdast-util-from-markdown/unist-util-stringify-position": ["unist-util-stringify-position@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.2" } }, "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-rehype/mdast-util-to-hast/@types/mdast": ["@types/mdast@3.0.15", "", { "dependencies": { "@types/unist": "^2" } }, "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "react-remark/remark-rehype/mdast-util-to-hast/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-rehype/mdast-util-to-hast/unist-util-position": ["unist-util-position@3.1.0", "", {}, "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit": ["unist-util-visit@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" } }, "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "react-remark/unified/vfile/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/unified/vfile/unist-util-stringify-position": ["unist-util-stringify-position@2.0.3", "", { "dependencies": { "@types/unist": "^2.0.2" } }, "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "react-remark/unified/vfile/vfile-message": ["vfile-message@2.0.4", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^2.0.0" } }, "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "renderkid/htmlparser2/domutils/dom-serializer": ["dom-serializer@1.4.1", "", { "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="], - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "sablier/viem/@scure/bip32/@scure/base": ["@scure/base@1.2.6", "", {}, "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg=="], - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], + "sablier/viem/@scure/bip39/@scure/base": ["@scure/base@1.2.6", "", {}, "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg=="], - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], + "spdy-transport/readable-stream/string_decoder/safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + "update-notifier/boxen/wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "webpackbar/wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "webpackbar/wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "pkg-dir/find-up/locate-path/p-locate/p-limit": ["p-limit@4.0.0", "", { "dependencies": { "yocto-queue": "^1.0.0" } }, "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/@types/mdast/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-optimise-call-expression/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-entities": ["character-entities@1.2.4", "", {}, "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.24.7", "", { "dependencies": { "@babel/code-frame": "^7.24.7", "@babel/generator": "^7.24.7", "@babel/helper-environment-visitor": "^7.24.7", "@babel/helper-function-name": "^7.24.7", "@babel/helper-hoist-variables": "^7.24.7", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/parser": "^7.24.7", "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-entities-legacy": ["character-entities-legacy@1.1.4", "", {}, "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="], - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/types": ["@babel/types@7.24.7", "", { "dependencies": { "@babel/helper-string-parser": "^7.24.7", "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" } }, "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/character-reference-invalid": ["character-reference-invalid@1.1.4", "", {}, "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/ast/@webassemblyjs/helper-numbers/@webassemblyjs/floating-point-hex-parser": ["@webassemblyjs/floating-point-hex-parser@1.11.6", "", {}, "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-alphanumerical": ["is-alphanumerical@1.0.4", "", { "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" } }, "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/ast/@webassemblyjs/helper-numbers/@webassemblyjs/helper-api-error": ["@webassemblyjs/helper-api-error@1.11.6", "", {}, "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-decimal": ["is-decimal@1.0.4", "", {}, "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wasm-gen/@webassemblyjs/ieee754": ["@webassemblyjs/ieee754@1.11.6", "", { "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg=="], + "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-hexadecimal": ["is-hexadecimal@1.0.4", "", {}, "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wasm-gen/@webassemblyjs/leb128": ["@webassemblyjs/leb128@1.11.6", "", { "dependencies": { "@xtuc/long": "4.2.2" } }, "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ=="], + "react-remark/remark-parse/mdast-util-from-markdown/unist-util-stringify-position/@types/unist": ["@types/unist@2.0.11", "", {}, "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="], - "docusaurus-theme-github-codeblock/@docusaurus/types/webpack/@webassemblyjs/wasm-edit/@webassemblyjs/wasm-gen/@webassemblyjs/utf8": ["@webassemblyjs/utf8@1.11.6", "", {}, "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA=="], + "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit/unist-util-is": ["unist-util-is@4.1.0", "", {}, "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="], - "pkg-dir/find-up/locate-path/p-locate/p-limit/yocto-queue": ["yocto-queue@1.1.1", "", {}, "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g=="], + "react-remark/remark-rehype/mdast-util-to-hast/unist-util-visit/unist-util-visit-parents": ["unist-util-visit-parents@3.1.1", "", { "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" } }, "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg=="], - "react-remark/remark-parse/mdast-util-from-markdown/micromark/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], + "pkg-dir/find-up/locate-path/p-locate/p-limit/yocto-queue": ["yocto-queue@1.2.1", "", {}, "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg=="], "react-remark/remark-parse/mdast-util-from-markdown/parse-entities/is-alphanumerical/is-alphabetical": ["is-alphabetical@1.0.4", "", {}, "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg=="], - - "string.prototype.repeat/es-abstract/call-bind/es-define-property/get-intrinsic/has-proto": ["has-proto@1.0.3", "", {}, "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="], - - "string.prototype.repeat/es-abstract/call-bind/es-define-property/get-intrinsic/has-symbols": ["has-symbols@1.0.3", "", {}, "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-for-of/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-optional-chaining/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-spread/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-react/@babel/plugin-transform-react-jsx/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/generator": ["@babel/generator@7.24.7", "", { "dependencies": { "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" } }, "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug": ["debug@4.3.5", "", { "dependencies": { "ms": "2.1.2" } }, "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-generator-functions/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-async-to-generator/@babel/helper-remap-async-to-generator/@babel/helper-wrap-function/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-properties/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-class-static-block/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-classes/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-amd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-systemjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-modules-umd/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-object-super/@babel/helper-replace-supers/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-methods/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-env/@babel/plugin-transform-private-property-in-object/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-modules-commonjs/@babel/helper-module-transforms/@babel/helper-module-imports/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-member-expression-to-functions/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], - - "@svgr/webpack/@babel/preset-typescript/@babel/plugin-transform-typescript/@babel/helper-create-class-features-plugin/@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/debug/ms": ["ms@2.1.2", "", {}, "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="], } } diff --git a/scripts/autogen.sh b/cli/autogen-reference.sh similarity index 100% rename from scripts/autogen.sh rename to cli/autogen-reference.sh diff --git a/cli/commands/autogen/deployments.ts b/cli/commands/autogen/deployments.ts new file mode 100644 index 00000000..6fd3a03a --- /dev/null +++ b/cli/commands/autogen/deployments.ts @@ -0,0 +1,87 @@ +import { Command } from "commander"; +import _ from "lodash"; +import { Protocol, type Sablier, sablier } from "sablier"; +import { Links } from "../../../src/constants"; +import { autogenFilePaths, getRelative, writeFileWithOverwrite } from "../../helpers"; +import type { CliOptions } from "../../types"; + +export function createDeploymentsCommand(): Command { + return new Command("deployments") + .description("Generate deployment tables for all Sablier releases") + .action(async (_options, command: Command) => { + const mergedOptions = command.optsWithGlobals(); + await generateDeployments(mergedOptions); + }); +} + +export const deploymentsCmd = createDeploymentsCommand(); + +export async function generateDeployments(options: CliOptions = {}): Promise { + for (const release of sablier.releases.getAll()) { + if (release.protocol === Protocol.Legacy) { + continue; + } + + const tables = generateTables(release); + if (!tables) { + continue; + } + + const filePath = autogenFilePaths.deployments(release); + + if (writeFileWithOverwrite({ content: tables, filePath, options })) { + const protocol = _.capitalize(release.protocol); + const version = _.capitalize(release.version); + console.log(`✔️ Generated deployments table for ${protocol} ${version} at: ${getRelative(filePath)}`); + } + } +} + +function generateTables(release: Sablier.Release) { + const mainnetDeployments = release.deployments.filter((d) => { + const chain = sablier.chains.get(d.chainId); + return !chain.isTestnet; + }); + const testnetDeployments = release.deployments.filter((d) => { + const chain = sablier.chains.get(d.chainId); + return chain.isTestnet; + }); + + let content = "## Mainnets\n\n"; + for (const deployment of mainnetDeployments) { + const chain = sablier.chains.get(deployment.chainId); + content += `### ${chain.name}\n\n`; + content += generateDeploymentTable(deployment, release); + content += "\n"; + } + + content += "## Testnets\n\n"; + for (const deployment of testnetDeployments) { + const chain = sablier.chains.get(deployment.chainId); + content += `### ${chain.name}\n\n`; + content += generateDeploymentTable(deployment, release); + content += "\n"; + } + + return content; +} + +function generateDeploymentTable(deployment: Sablier.Deployment, release: Sablier.Release): string { + let table = `| Contract | Address | Deployment |\n`; + table += `| :-------- | :-------- | :--------- |\n`; + + for (const contract of deployment.contracts) { + let addressCell: string; + if (contract.explorerURL) { + addressCell = `[\`${contract.address}\`](${contract.explorerURL})`; + } else { + addressCell = `\`${contract.address}\``; + } + const protocol = release.protocol; + const version = release.version; + const linkCell = `[\`${protocol}-${version}\`](${Links.GitHub.SDK}/blob/main/deployments/${protocol}/${version})`; + table += `| ${contract.name} | ${addressCell} | ${linkCell} |\n`; + } + + return table; +} diff --git a/cli/commands/autogen/graphql.ts b/cli/commands/autogen/graphql.ts new file mode 100644 index 00000000..7cac9801 --- /dev/null +++ b/cli/commands/autogen/graphql.ts @@ -0,0 +1,150 @@ +import fs from "node:fs"; +import { join } from "node:path"; +import { getIndexerEnvio, getIndexerGraph, type Indexer } from "@sablier/indexers"; +import { Command } from "commander"; +import $ from "execa"; +import * as yaml from "js-yaml"; +import _ from "lodash"; +import type { CliOptions } from "../../types"; + +const CHAIN_ID_SEPOLIA = 11155111; + +type Category = { + /** @see https://docusaurus.io/feature-requests/p/hiding-parts-of-docs-in-autogenerated-sidebar */ + className?: "hidden"; + collapsible: boolean; + collapsed: boolean; + label: string; + position: number; +}; + +type GraphQLOptions = CliOptions & { + protocol: string; + vendor: string; +}; + +/* -------------------------------------------------------------------------- */ +/* COMMAND */ +/* -------------------------------------------------------------------------- */ + +export function createGraphQLCommand(): Command { + return new Command("graphql") + .description("Generate GraphQL schema documentation") + .requiredOption("-p, --protocol ", "generate for specific protocol") + .requiredOption("-v, --vendor ", "generate for specific vendor") + .action(async (options, command: Command) => { + const globalOptions = command.parent?.opts() || {}; + const mergedOptions: GraphQLOptions = { ...globalOptions, ...options }; + await generateGraphQL(mergedOptions); + }); +} + +export const graphQLCmd = createGraphQLCommand(); + +export async function generateGraphQL(options: GraphQLOptions): Promise { + const protocols: Indexer.Protocol[] = ["airdrops", "flow", "lockup"]; + const vendors = ["graph", "envio"]; + + if (options.protocol !== "all" && !protocols.includes(options.protocol as Indexer.Protocol)) { + throw new Error(`Invalid protocol: ${options.protocol}. Valid options: ${protocols.join(", ")}, all`); + } + if (options.vendor !== "all" && !vendors.includes(options.vendor as Indexer.Vendor)) { + throw new Error(`Invalid vendor: ${options.vendor}. Valid options: ${vendors.join(", ")}, all`); + } + + let targetProtocols = protocols; + if (options.protocol !== "all") { + targetProtocols = _.filter(protocols, (p) => p === options.protocol); + } + + const docsPaths: string[] = []; + for (const p of targetProtocols) { + if (options.vendor === "all" || options.vendor === "graph") { + const docsPath = await generateGraph(p); + docsPaths.push(docsPath); + await runPrettier(docsPath); + } + if (options.vendor === "all" || options.vendor === "envio") { + const docsPath = await generateEnvio(p); + docsPaths.push(docsPath); + await runPrettier(docsPath); + } + } + + cleanupDocs(docsPaths); +} + +/* -------------------------------------------------------------------------- */ +/* INTERNAL LOGIC */ +/* -------------------------------------------------------------------------- */ + +const COLLAPSED = { + collapsed: true, + collapsible: true, +}; + +const THE_GRAPH_CATEGORY: Category = { ...COLLAPSED, label: "The Graph", position: 2 }; +const ENVIO_CATEGORY: Category = { ...COLLAPSED, label: "Envio", position: 3 }; +const QUERIES_CATEGORY: Category = { ...COLLAPSED, label: "Queries", position: 2 }; // first is the overview +const OBJECTS_CATEGORY: Category = { ...COLLAPSED, label: "Objects", position: 3 }; +const ENUMS_CATEGORY: Category = { ...COLLAPSED, className: "hidden", label: "Enums", position: 4 }; +const INPUTS_CATEGORY: Category = { ...COLLAPSED, className: "hidden", label: "Inputs", position: 5 }; +const SCALARS_CATEGORY: Category = { ...COLLAPSED, className: "hidden", label: "Scalars", position: 6 }; + +function cleanupDocs(docsPaths: string[]): void { + for (const docsPath of docsPaths) { + fs.rmSync(join(docsPath, "directives"), { force: true, recursive: true }); + fs.rmSync(join(docsPath, "subscriptions"), { force: true, recursive: true }); + + // Delete all _category_.yml files + fs.unlinkSync(join(docsPath, "queries", "_category_.yml")); + fs.unlinkSync(join(docsPath, "enums", "_category_.yml")); + fs.unlinkSync(join(docsPath, "inputs", "_category_.yml")); + fs.unlinkSync(join(docsPath, "objects", "_category_.yml")); + fs.unlinkSync(join(docsPath, "scalars", "_category_.yml")); + + // Rewrite _category_.yml files + fs.writeFileSync(join(docsPath, "queries", "_category_.yml"), yaml.dump(QUERIES_CATEGORY)); + fs.writeFileSync(join(docsPath, "objects", "_category_.yml"), yaml.dump(OBJECTS_CATEGORY)); + fs.writeFileSync(join(docsPath, "enums", "_category_.yml"), yaml.dump(ENUMS_CATEGORY)); + fs.writeFileSync(join(docsPath, "inputs", "_category_.yml"), yaml.dump(INPUTS_CATEGORY)); + fs.writeFileSync(join(docsPath, "scalars", "_category_.yml"), yaml.dump(SCALARS_CATEGORY)); + + // Write vendor category file at base path + if (docsPath.includes("envio")) { + fs.writeFileSync(join(docsPath, "_category_.yml"), yaml.dump(ENVIO_CATEGORY)); + } else if (docsPath.includes("the-graph")) { + fs.writeFileSync(join(docsPath, "_category_.yml"), yaml.dump(THE_GRAPH_CATEGORY)); + } + } +} + +async function generateEnvio(protocol: Indexer.Protocol): Promise { + const docsPath = `./docs/api/${protocol}/graphql/envio`; + const schemaURL = getIndexerEnvio({ chainId: CHAIN_ID_SEPOLIA, protocol }).endpoint.url; + + await runGenerator(docsPath, schemaURL); + console.log(`✔️ Generated GraphQL docs for Envio vendor and ${_.capitalize(protocol)} protocol\n`); + return docsPath; +} + +async function generateGraph(protocol: Indexer.Protocol): Promise { + const docsPath = `./docs/api/${protocol}/graphql/the-graph`; + const schemaURL = getIndexerGraph({ chainId: CHAIN_ID_SEPOLIA, protocol }).endpoint.url; + + await runGenerator(docsPath, schemaURL); + console.log(`✔️ Generated GraphQL docs for The Graph vendor and ${_.capitalize(protocol)} protocol\n`); + return docsPath; +} + +/** + * @see https://graphql-markdown.dev/docs/settings#baseurl + * @see {@link file://./../../../config/plugins.ts} + */ +async function runGenerator(base: string, schema: string): Promise { + await $("bun", ["docusaurus", "graphql-to-doc", "--base", base, "--schema", schema], { stdio: "inherit" }); +} + +async function runPrettier(targetPath: string): Promise { + await $("bun", ["prettier", "--write", `${targetPath}/**/*.{md,mdx,yml,yaml}`]); +} diff --git a/cli/commands/autogen/index.ts b/cli/commands/autogen/index.ts new file mode 100644 index 00000000..7c0de466 --- /dev/null +++ b/cli/commands/autogen/index.ts @@ -0,0 +1,34 @@ +import { Command } from "commander"; +import { deploymentsCmd, generateDeployments } from "./deployments"; +import { graphQLCmd } from "./graphql"; +import { generateIndexers, indexersCmd } from "./indexers"; + +export function createAutogenCommand(): Command { + const autogenCommand = new Command("autogen") + .description("Auto-generate documentation and indexers tables") + .action(async (_options, command) => { + const globalOptions = command.parent?.opts() || {}; + + console.log("🚀 Generating all documentation tables...\n"); + + // Run deployments generation + await generateDeployments(globalOptions); + + console.log(); + + // Run indexers generation + await generateIndexers(globalOptions); + + console.log(); + console.log("✅ All documentation tables generated successfully!"); + }); + + // Add subcommands to autogen + autogenCommand.addCommand(deploymentsCmd); + autogenCommand.addCommand(indexersCmd); + autogenCommand.addCommand(graphQLCmd); + + return autogenCommand; +} + +export const autogenCmd = createAutogenCommand(); diff --git a/cli/commands/autogen/indexers.ts b/cli/commands/autogen/indexers.ts new file mode 100644 index 00000000..256324dd --- /dev/null +++ b/cli/commands/autogen/indexers.ts @@ -0,0 +1,85 @@ +import { type Indexer, indexers } from "@sablier/indexers"; +import { Command } from "commander"; +import _ from "lodash"; +import { sablier } from "sablier"; +import { autogenFilePaths, getRelative, writeFileWithOverwrite } from "../../helpers"; +import type { CliOptions } from "../../types"; + +export function createIndexersCommand(): Command { + return new Command("indexers") + .description("Generate indexer endpoint tables for all Sablier protocols") + .action(async (_options, command: Command) => { + const mergedOptions = command.optsWithGlobals(); + await generateIndexers(mergedOptions); + }); +} + +export const indexersCmd = createIndexersCommand(); + +export async function generateIndexers(options: CliOptions = {}): Promise { + generateTables("airdrops", options); + generateTables("flow", options); + generateTables("lockup", options); +} + +function generateTables(protocol: Indexer.Protocol, options: CliOptions): void { + const envioTable = generateEnvioTable(indexers.envio[protocol]); + const graphTable = generateGraphTable(indexers.graph[protocol]); + + const envioFilePath = autogenFilePaths.envio(protocol); + if (writeFileWithOverwrite({ content: envioTable, filePath: envioFilePath, options })) { + console.log(`✔️ Generated ${_.capitalize(protocol)} endpoints table for Envio at: ${getRelative(envioFilePath)}`); + } + + const graphFilePath = autogenFilePaths.graph(protocol); + if (writeFileWithOverwrite({ content: graphTable, filePath: graphFilePath, options })) { + console.log( + `✔️ Generated ${_.capitalize(protocol)} endpoints table for The Graph at: ${getRelative(graphFilePath)}`, + ); + } +} + +function generateEnvioTable(indexers: Indexer[]): string { + let markdown = `| Chain | Production URL | Playground URL | Explorer URL |\n`; + markdown += `| -------- | -------------- | ----------- | ------------ |\n`; + + for (const indexer of indexers) { + const chain = sablier.chains.get(indexer.chainId); + if (!chain || !chain.name) { + continue; + } + + const productionURL = indexer.endpoint.url; + const playgroundURL = indexer.testingURL; + const explorerURL = indexer.explorerURL; + + const productionCell = `${productionURL}`; + const playgroundCell = playgroundURL ? `[Playground](${playgroundURL})` : "N/A"; + const explorerCell = explorerURL ? `[Explorer](${explorerURL})` : "N/A"; + + markdown += `| ${chain.name} | ${productionCell} | ${playgroundCell} | ${explorerCell} |\n`; + } + + return markdown; +} + +function generateGraphTable(indexers: Indexer[]): string { + let markdown = `| Chain | Production URL | Testing URL | Explorer URL |\n`; + markdown += `| -------- | -------------- | ----------- | ------------ |\n`; + + for (const indexer of indexers) { + const chain = sablier.chains.getOrThrow(indexer.chainId); + + const productionURL = indexer.endpoint.url; + const testingURL = indexer.testingURL; + const explorerURL = indexer.explorerURL; + + const productionCell = `[${indexer.name}](${productionURL})`; + const testingCell = testingURL ? `[Testing](${testingURL})` : "N/A"; + const explorerCell = explorerURL ? `[Explorer](${explorerURL})` : "N/A"; + + markdown += `| ${chain.name} | ${productionCell} | ${testingCell} | ${explorerCell} |\n`; + } + + return markdown; +} diff --git a/cli/helpers.ts b/cli/helpers.ts new file mode 100644 index 00000000..dfefff11 --- /dev/null +++ b/cli/helpers.ts @@ -0,0 +1,41 @@ +import * as fs from "node:fs"; +import * as path from "node:path"; +import _ from "lodash"; +import type { Sablier } from "sablier"; +import type { CliOptions } from "./types"; + +const ROOT_DIR = path.join(__dirname, ".."); +if (!fs.existsSync(path.join(ROOT_DIR, "package.json"))) { + throw new Error("ROOT_DIR is not set correctly"); +} + +export const autogenFilePaths = { + deployments: (release: Sablier.Release) => + path.join(ROOT_DIR, "src", "autogen", release.protocol, `TableDeployments${_.capitalize(release.version)}.mdx`), + envio: (protocol: Sablier.Protocol) => path.join(ROOT_DIR, "src", "autogen", protocol, "TableEnvio.mdx"), + graph: (protocol: Sablier.Protocol) => path.join(ROOT_DIR, "src", "autogen", protocol, "TableTheGraph.mdx"), +}; + +type FileWriteParams = { + content: string; + filePath: string; + options: CliOptions; + encoding?: BufferEncoding; +}; + +export function getRelative(absolutePath: string): string { + return path.relative(process.cwd(), absolutePath); +} + +export function writeFileWithOverwrite(params: FileWriteParams): boolean { + const { filePath, content, encoding = "utf8", options } = params; + + if (fs.existsSync(filePath) && !options.overwrite) { + const relativePath = path.relative(process.cwd(), filePath); + console.log(`⚠️ Deployment table already exists at: ${relativePath}. Use --overwrite flag to overwrite.`); + return false; + } + + fs.writeFileSync(filePath, content, encoding); + return true; +} diff --git a/cli/index.ts b/cli/index.ts new file mode 100644 index 00000000..0c06f1a4 --- /dev/null +++ b/cli/index.ts @@ -0,0 +1,20 @@ +#!/usr/bin/env node +import { Command } from "commander"; + +import { autogenCmd } from "./commands/autogen"; + +async function main() { + const program = new Command(); + + program.name("sablier-docs-cli").description("CLI tool for auto-generating Markdown content"); + + // Global options + program.option("-o, --overwrite", "overwrite existing files", false); + + // Add the autogen command to the main program + program.addCommand(autogenCmd); + + program.parse(); +} + +main().catch(console.error); diff --git a/cli/types.ts b/cli/types.ts new file mode 100644 index 00000000..d8f6fd06 --- /dev/null +++ b/cli/types.ts @@ -0,0 +1,3 @@ +export type CliOptions = { + overwrite?: boolean; +}; diff --git a/config/plugins.ts b/config/plugins.ts new file mode 100644 index 00000000..226f6b8b --- /dev/null +++ b/config/plugins.ts @@ -0,0 +1,61 @@ +import type { Options as ClientRedirectsOptions } from "@docusaurus/plugin-client-redirects"; +import type { Options as VercelAnalyticsOptions } from "@docusaurus/plugin-vercel-analytics"; +import { type DocusaurusConfig, type PluginOptions } from "@docusaurus/types"; +import type { ConfigOptions, GraphQLMarkdownCliOptions, LoaderOption } from "@graphql-markdown/types"; +import { createRedirects, redirects } from "./redirects"; + +/* -------------------------------------------------------------------------- */ +/* Client Redirects */ +/* -------------------------------------------------------------------------- */ + +const clientRedirects: [string, ClientRedirectsOptions] = [ + "@docusaurus/plugin-client-redirects", + { + createRedirects, + id: "default", + redirects: redirects, + }, +]; + +/* -------------------------------------------------------------------------- */ +/* GraphQL Markdown */ +/* -------------------------------------------------------------------------- */ +type GraphQLMarkdownOptions = GraphQLMarkdownCliOptions & Partial; + +const graphqlMarkdown: [string, GraphQLMarkdownOptions] = [ + "@graphql-markdown/docusaurus", + /** + * Some settings will be overridden by the CLI. + * @see https://graphql-markdown.dev/docs/settings + */ + { + baseURL: "./docs/api/flow/the-graph", + homepage: "static/graphql-overview.md", + loaders: { + UrlLoader: { + module: "@graphql-tools/url-loader", + }, + } as LoaderOption, + metatags: [{ content: "noindex", name: "robots" }, { charset: "utf-8" }], + pretty: true, + printTypeOptions: { + hierarchy: "entity", + relatedTypeSection: false, + }, + rootPath: ".", + schema: "https://api.studio.thegraph.com/query/112500/sablier-flow-experimental/version/latest", + } satisfies ConfigOptions, +]; + +/* -------------------------------------------------------------------------- */ +/* VERCEL ANALYTICS */ +/* -------------------------------------------------------------------------- */ + +const vercelAnalytics: [string, VercelAnalyticsOptions] = [ + "vercel-analytics", + { + mode: "auto", + }, +]; + +export const plugins: DocusaurusConfig["plugins"] = [clientRedirects, graphqlMarkdown, vercelAnalytics]; diff --git a/config/presets.ts b/config/presets.ts new file mode 100644 index 00000000..ab41ee1d --- /dev/null +++ b/config/presets.ts @@ -0,0 +1,23 @@ +import type * as Preset from "@docusaurus/preset-classic"; +import type { DocusaurusConfig } from "@docusaurus/types"; +import rehypeKatex from "rehype-katex"; +import remarkGfm from "remark-gfm"; +import remarkMath from "remark-math"; + +const classic: [string, Preset.Options] = [ + "classic", + { + docs: { + editUrl: "https://github.com/sablier-labs/docs/blob/main/", + rehypePlugins: [rehypeKatex], + remarkPlugins: [remarkGfm, remarkMath], + routeBasePath: "/", // Serve the docs at the site's root + sidebarPath: "./config/sidebars.ts", + }, + theme: { + customCss: ["./src/css/sablier.css", "./src/css/custom.css"], + }, + }, +]; + +export const presets: DocusaurusConfig["presets"] = [classic]; diff --git a/config/redirects.ts b/config/redirects.ts new file mode 100644 index 00000000..f42c12c1 --- /dev/null +++ b/config/redirects.ts @@ -0,0 +1,86 @@ +import type { RedirectOption } from "@docusaurus/plugin-client-redirects/lib/options"; + +function redirect(from: string, to: string): RedirectOption { + return { from, to }; +} + +/** + * The slugs and IDs used in the Docusaurus site have evolved over time. + * This file contains the redirects for the old slugs and IDs to the new ones. + */ +export const redirects: RedirectOption[] = [ + /* -------------------------------------------------------------------------- */ + /* AIRDROPS */ + /* -------------------------------------------------------------------------- */ + redirect("/concepts/merkle-airdrops", "/concepts/airdrops"), + /* -------------------------------------------------------------------------- */ + /* APIs */ + /* -------------------------------------------------------------------------- */ + redirect("/api/airdrops/endpoints", "/api/airdrops/indexers"), + redirect("/api/flow/endpoints", "/api/flow/indexers"), + redirect("/api/lockup/endpoints", "/api/lockup/indexers"), + /* -------------------------------------------------------------------------- */ + /* APPS */ + /* -------------------------------------------------------------------------- */ + redirect("/apps", "/apps/features/overview"), + redirect("/apps/csv-support", "/apps/guides/csv-support"), + redirect("/apps/features", "/apps/features/vesting"), + redirect("/apps/features/airstreams", "/apps/features/airdrops"), + redirect("/apps/features/general", "/apps/features/overview"), + redirect("/apps/features/streams", "/apps/features/vesting"), + redirect("/apps/overview", "/apps/features/overview"), + redirect("/apps/support/how-to", "/support/how-to"), + redirect("/apps/url-schemes", "/apps/guides/url-schemes"), + /* -------------------------------------------------------------------------- */ + /* LEGACY: 2019-2021 */ + /* -------------------------------------------------------------------------- */ + redirect("/protocol/faq/basics", "/concepts/what-is-sablier"), + redirect("/protocol/guides/chains", "/guides/legacy/overview"), + redirect("/protocol/guides/getting-started", "/guides/legacy/overview"), + redirect("/protocol/introduction", "/concepts/what-is-sablier"), + redirect("/protocol/subgraphs/endpoints", "/api/overview"), + redirect("/contracts/v1/deployments", "/guides/legacy/deployments"), + redirect("/contracts/v1/guides/getting-started", "/guides/legacy/overview"), + redirect("/contracts/v1/overview", "/guides/legacy/overview"), + /* -------------------------------------------------------------------------- */ + /* LOCKUP: 2024 and Earlier */ + /* -------------------------------------------------------------------------- */ + redirect("/concepts/protocol/fees", "/concepts/fees"), + redirect("/concepts/protocol/nft", "/concepts/nft"), + redirect("/concepts/protocol/stream-types", "/concepts/lockup/stream-shapes"), + redirect("/concepts/protocol/streaming", "/concepts/streaming"), + redirect("/concepts/protocol/transferability", "/concepts/transferability"), + redirect("/concepts/sablier-protocol", "/concepts/what-is-sablier"), + redirect("/contracts/v2/deployments/v2.0", "/guides/lockup/previous-deployments/v1.0"), + redirect("/contracts/v2/deployments/v2.1", "/guides/lockup/previous-deployments/v1.1"), + redirect("/contracts/v2/guides", "/guides/lockup/overview"), + redirect("/contracts/v2/reference/overview", "/reference/overview"), + redirect("/contracts/v2/security", "/concepts/security"), + redirect("/csv", "/apps/guides/csv-support"), +]; + +export function createRedirects(existingPath: string) { + const redirects = []; + // Redirect /concepts/protocol/** to /concepts/lockup/** + if (existingPath.startsWith("/concepts/lockup/")) { + redirects.push(existingPath.replace("/concepts/lockup/", "/concepts/protocol/")); + } + // Redirect /contracts/v1/guides/** to /guides/legacy/** + else if (existingPath.startsWith("/guides/legacy/")) { + redirects.push(existingPath.replace("/guides/legacy/", "/contracts/v1/guides/")); + } + // Redirect /contracts/v2/reference/** to /reference/lockup/** + else if (existingPath.startsWith("/reference/lockup/")) { + redirects.push(existingPath.replace("/reference/lockup/", "/contracts/v2/reference/")); + } + // Redirect /contracts/v1/** to /reference/legacy/** + else if (existingPath.startsWith("/reference/legacy/")) { + redirects.push(existingPath.replace("/reference/legacy/", "/contracts/v1/")); + } + // Redirect /contracts/v2/guides/** to /guides/lockup/examples/** + else if (existingPath.startsWith("/guides/lockup/examples/")) { + redirects.push(existingPath.replace("/guides/lockup/examples/", "/contracts/v2/guides/")); + } + + return redirects; +} diff --git a/config/sidebars.ts b/config/sidebars.ts new file mode 100644 index 00000000..0d37ac9c --- /dev/null +++ b/config/sidebars.ts @@ -0,0 +1,16 @@ +import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; + +/** + * By default, Docusaurus generates a sidebar from the docs folder structure, but we can + * customize it to include only the desired sections. + */ +const sidebars: SidebarsConfig = { + apiSidebar: [{ dirName: "api", type: "autogenerated" }], + appSidebar: [{ dirName: "apps", type: "autogenerated" }], + conceptsSidebar: [{ dirName: "concepts", type: "autogenerated" }], + guidesSidebar: [{ dirName: "guides", type: "autogenerated" }], + referencesSidebar: [{ dirName: "reference", type: "autogenerated" }], + supportSidebar: [{ dirName: "support", type: "autogenerated" }], +}; + +export default sidebars; diff --git a/config/theme-config.ts b/config/theme-config.ts new file mode 100644 index 00000000..1aed286c --- /dev/null +++ b/config/theme-config.ts @@ -0,0 +1,189 @@ +import type * as Preset from "@docusaurus/preset-classic"; +import { themes as prismThemes } from "prism-react-renderer"; + +/* -------------------------------------------------------------------------- */ +/* FOOTER */ +/* -------------------------------------------------------------------------- */ + +const footer: Preset.ThemeConfig["footer"] = { + links: [ + { + items: [ + { + href: "https://sablierlabs.co.uk", + label: "About", + }, + { + href: "https://files.sablier.com/risk-notice.pdf", + label: "Risk Notice", + }, + { + href: "https://files.sablier.com/terms-of-service.pdf", + label: "Terms of Service", + }, + { + href: "https://files.sablier.com/privacy-policy.pdf", + label: "Privacy Policy", + }, + ], + title: "Company", + }, + { + items: [ + { + href: "https://twitter.com/Sablier", + label: "Twitter", + }, + { + href: "https://discord.sablier.com", + label: "Discord", + }, + { + href: "https://blog.sablier.com", + label: "Blog", + }, + { + href: "https://github.com/sablier-labs/branding", + label: "Branding", + }, + ], + title: "Community", + }, + { + items: [ + { + href: "https://github.com/sablier-labs/lockup", + label: "Lockup Contracts", + }, + { + href: "https://github.com/sablier-labs/lockup-integration-template", + label: "Lockup Integration Template", + }, + { + href: "https://github.com/sablier-labs/flow", + label: "Flow Contracts", + }, + { + href: "https://github.com/sablier-labs/flow-integration-template", + label: "Flow Integration Template", + }, + { + href: "https://github.com/sablier-labs/indexers", + label: "Indexers", + }, + ], + title: "Developers", + }, + ], + style: "dark", +}; + +/* -------------------------------------------------------------------------- */ +/* NAVBAR */ +/* -------------------------------------------------------------------------- */ + +const navbar: Preset.ThemeConfig["navbar"] = { + items: [ + { + activeBasePath: "/concepts", + label: "Concepts", + position: "left", + to: "/concepts/what-is-sablier", + }, + { + activeBasePath: "/guides", + label: "Guides", + position: "left", + to: "/guides/lockup/overview", + }, + { + activeBasePath: "/api", + label: "APIs", + position: "left", + to: "/api/overview", + }, + { + activeBasePath: "/reference", + label: "Reference", + position: "left", + to: "/reference/overview", + }, + { + activeBasePath: "/apps", + label: "Apps", + position: "left", + to: "/apps/features/overview", + }, + + { + activeBasePath: "/support", + label: "Support", + position: "left", + to: "/support/faq", + }, + { + label: "Discord", + position: "right", + to: "https://discord.sablier.com", + }, + { + label: "GitHub", + position: "right", + to: "https://github.com/sablier-labs", + }, + { + label: "Links", + position: "right", + to: "https://linktr.ee/SablierLabs", + }, + ], + logo: { + alt: "Sablier Hourglass", + height: "20", + src: "img/icon.svg", + width: "20", + }, + title: "Sablier Docs", +}; + +/* -------------------------------------------------------------------------- */ +/* EXPORT */ +/* -------------------------------------------------------------------------- */ + +export const themeConfig: Preset.ThemeConfig = { + algolia: { + apiKey: "4fc960889335dad720b725a02667d46a", + appId: "9L7N2RKHWE", + indexName: "sablierdocs", + }, + codeblock: { + showGithubLink: false, + }, + colorMode: { + // "light" | "dark" + defaultMode: "dark", + // Support multiple color modes. + disableSwitch: false, + // Whether we should use the `prefers-color-scheme media-query` using user system preferences, instead of the + // hard-coded `defaultMode`. + respectPrefersColorScheme: true, + }, + footer, + image: "img/open-graph.png", + mermaid: { + theme: { dark: "dark", light: "neutral" }, + }, + metadata: [ + { + content: + "blockchain, dao, decentralized finance, defi, docs, ethereum, evm, foundry, money streaming, nft, open source, payments, payroll, Sablier, Safe, smart contracts, solidity, token distribution, token streaming, vesting, web3", + name: "keywords", + }, + ], + navbar, + prism: { + additionalLanguages: ["solidity"], + darkTheme: prismThemes.palenight, + theme: prismThemes.github, + }, +}; diff --git a/docs/api/01-overview.mdx b/docs/api/01-overview.mdx index 5e6e9275..8cadf7cf 100644 --- a/docs/api/01-overview.mdx +++ b/docs/api/01-overview.mdx @@ -4,148 +4,52 @@ sidebar_position: 1 title: "Overview" --- -import LinkPreview from "@site/src/components/molecules/LinkPreview"; +import { LinkPreviewIndexers, LinkPreviewMerkleAPI } from "@site/src/components/molecules/link-previews"; -# The Sablier APIs +# Overview -Sablier relies on specific dependencies to source data and enable off-chain features. All of these are either public or -open-source, so feel free to roam around and suggest improvements or optimizations.open-source, so feel free to roam -around and suggest improvements or optimizations. +This document provides an overview of the Sablier APIs, which consist of two main components: the GraphQL indexers and the Merkle API. These components are essential for accessing and managing data within the Sablier ecosystem. -Below, we will cover: +:::tip -1. The [solutions](#solutions) we use to index and query data -2. The [interface-to-protocol](#products) links between these solutions -3. The raw entities emitted by the contracts - -## Solutions - -![Banner Sablier APIs](/banners/docs-apis.webp) - -As an alternative to reading data from the contracts or listening to onchain events, we use a collection of subgraphs -and indexers. These service act as a middleware between the chain and our interfaces and allow for caching, formatting -and querying data. For more advanced features like Merkle tree generation (used in Airdrops), we've written own SDKs and -open-sourced some of them. - -:::note Playground - -To preview the GraphQL APIs for subgraphs and indexers, you can plug them into -[Hasura's](https://cloud.hasura.io/public/graphiql) online explorer. -[Here](https://cloud.hasura.io/public/graphiql?endpoint=https://api.studio.thegraph.com/query/112500/sablier-ethereum-lockup/version/latest)'s -an example setup of a Mainnet subgraph for Sablier Lockup. +Ready to start building? Jump to the [Getting Started](/api/getting-started) section. ::: -## Subgraphs - -### The Graph - -[The Graph](https://thegraph.com/) has been the vendor of choice in the EVM space for the past few years. We've been -using The Graph since we launched Sablier Legacy in 2019. For our current apps, we created a special set of -feature-oriented subgraphs used internally and by third-party services (e.g., Snapshot) and integrators. +## GraphQL Indexers -These subgraphs are hosted on The Graph Network, as well as on the The Graph Hosted Service. They can be used to query -Sablier data from the official [endpoints](/api/lockup/endpoints). Each network has its own subgraph endpoints. +The Sablier smart contracts do not inherently provide a structured way to access data. With multiple contract versions deployed on the blockchain, accessing data in a unified manner can be challenging. To address this, we integrated two data indexing services: The Graph and Envio. These services act as middleware, enabling data unification, caching, and querying through a GraphQL-based API. -- [Lockup endpoints](/api/lockup/endpoints) -- [Lockup subgraph](https://github.com/sablier-labs/indexers/apps/lockup) (Vesting) -- [Flow endpoints](/api/flow/endpoints) -- [Flow subgraph](https://github.com/sablier-labs/indexers/apps/flow) (Payments) -- [Airdrops endpoints](/api/airdrops/endpoints) -- [Airdrops subgraph](https://github.com/sablier-labs/indexers/apps/merkle) (Airdrops, Airstreams) -- [The Graph docs](https://thegraph.com/docs/en/quick-start/) +### Source Code - +The source code for both The Graph and Envio is open-source and available in this GitHub repository: -#### Endpoints / Slugs + -Every subgraph deployment will have a `slug` generated by The Graph. The slug is derived from the subgraph name and can -be found in the Studio Development Query URL. We use the following naming convention for subgraphs: +### The Graph -| Subgraph | Example | Product or Concept | -| -------------------- | ------------------------- | ---------------------------------------------- | -| `sablier-lockup-*` | `sablier-lockup-ethereum` | [Lockup](/concepts/lockup/overview) (Vesting) | -| `sablier-flow-*` | `sablier-flow-optimism` | [Flow](/concepts/flow/overview) (Payments) | -| `sablier-airdrops-*` | `sablier-airdrops-base` | [Merkle](/concepts/merkle-airdrops) (Airdrops) | -| `sablier-*` | `sablier-optimism` | [V1](/api/legacy) (Legacy) | +[The Graph](https://thegraph.com/) offers infrastructure for indexing EVM events through GraphQL API endpoints known as 'subgraphs'. It has been the vendor of choice in the EVM space since Sablier Legacy's launch in 2019. Our latest products use new implementations of these subgraphs, which are documented in subsequent sections. Note that each chain has its own subgraphs. -In February 2025 we've deprecated the old lineup of `sablier-v2-*` subgraphs. They remain available (see `Deprecated` -section under each subgraph documentation) but will not track the most recent deployments nor get future updates. +- [The Graph docs: How to Query a Subgraph](https://thegraph.com/docs/en/subgraphs/querying/introduction/) +- [Lockup indexers](/api/lockup/indexers#the-graph) +- [Flow indexers](/api/lockup/indexers#the-graph) +- [Airdrops indexers](/api/airdrops/indexers#the-graph) ### Envio -[Envio](https://envio.dev/) offers a suite of fast and flexible tools to access onchain data. Their HyperIndex service -provides a similar GraphQL-driven API to access cached data and serve it into our client interfaces. - -We created indexers that mimic the features and entities exposed by subgraphs and take advantage of the speed and -optimized environment configured through HyperIndex. - -All networks share the same indexer endpoint (for one indexer type), as Envio promotes a cross-chain indexing -architecture. - -- [Caveats](/api/caveats) between subgraphs and indexers -- [Lockup endpoints](/api/lockup/endpoints) -- [Lockup indexer](https://github.com/sablier-labs/indexers/apps/lockup-envio) (Vesting) -- [Flow endpoints](/api/lockup/endpoints) -- [Flow indexer](https://github.com/sablier-labs/indexers/apps/flow-envio) (Payments) -- [Airdrops endpoints](/api/airdrops/endpoints) -- [Airdrops indexer](https://github.com/sablier-labs/indexers/apps/merkle-envio) (Airdrops, Airstreams) -- [The Graph docs](https://thegraph.com/docs/en/quick-start/) - - - -## Sablier SDKs - -### Merkle API - -To support the Merkle distribution (see [Airdrops](/apps/features/airdrops)) system, we developed a backend service -called `@sablier/merkle-api`. This API deals with the validation, creation, and management of Merkle trees, which are -used to define eligibility and claiming rules for Sablier's Airstream campaigns. - -The service is open-source and can be used by integrators as a plug-n-play solution to support (and even deploy) similar -campaigns. Read more on the dedicated page about the `merkle-api` service [here](/api/airdrops/merkle-api/overview). - -- [Endpoints](/api/airdrops/endpoints) - - - -## Products - -### Lockup - -The [vesting](/apps/features/vesting) side of the application is powered by: - -- The `@sablier/subgraphs/apps/lockup` subgraph -- The `@sablier/subgraphs/apps/lockup-envio` indexer - -### Airdrops (Airstreams) +[Envio](https://envio.dev) is a modern, fast, and flexible tool for accessing onchain data. -The [airdrops](/apps/features/airdrops) side of the application is powered by: +Its HyperIndex service provides a GraphQL-based API for accessing cached data, which is then served to our client interfaces. Envio indexers mirror the GraphQL API of The Graph subgraphs, offering a fallback in case of issues with The Graph. Unlike The Graph, Envio's indexers are chain-agnostic, with a single GraphQL indexer for each Sablier protocol. -- The `@sablier/subgraphs/apps/merkle` subgraph -- The `@sablier/subgraphs/apps/merkle-envio` indexer -- The `@sablier/merkle-api` rust service for airdrops +- [Envio docs: Navigating Hasura](https://docs.envio.dev/docs/HyperIndex/navigating-hasura) +- [Lockup indexers](/api/lockup/indexers#envio) +- [Flow indexers](/api/lockup/indexers#envio) +- [Airdrops indexers](/api/airdrops/indexers#envio) -These will work for both Airstreams and Instant Airdrops. +## Merkle API -### Flow +For the [Airdrops](/apps/features/airdrops) product, we created a backend service to streamline Merkle tree generation, essential for creating blockchain airdrops. This API handles the validation, creation, and management of Merkle trees, defining eligibility and claiming rules for airdrop campaigns. -The [payments](/apps/features/payments) side of the application is powered by: +The service is open-source and can be used by integrators as a plug-and-play solution for deploying their own campaigns. Learn more about the Merkle API service in its dedicated [section](/api/airdrops/merkle-api/overview). -- The `@sablier/subgraphs/apps/flow` subgraph -- The `@sablier/subgraphs/apps/flow-envio` indexer + diff --git a/docs/api/02-getting-started.mdx b/docs/api/02-getting-started.mdx new file mode 100644 index 00000000..2a3fcf35 --- /dev/null +++ b/docs/api/02-getting-started.mdx @@ -0,0 +1,60 @@ +--- +id: "getting-started" +sidebar_position: 2 +title: "Getting Started" +--- + +import LinkPreview from "@site/src/components/molecules/LinkPreview"; + +## Getting Started + +This document will help you understand how to read data from the Sablier smart contracts, either by using GraphQL indexers or by calling the smart contracts directly. Each method has its own advantages and limitations, which we will explore in detail. + +## Choosing Your Approach + +You have two options: + +1. **GraphQL Indexers**: Recommended for most use cases due to ease of use and comprehensive data access. +2. **Direct Smart Contract Calls**: Offers a more decentralized approach but comes with limitations. + +### GraphQL Indexers + +This is the preferred method for accessing Sablier data. The recommended stack includes: + +- **[React](https://react.dev)** +- **[GraphQL Code Generator](https://the-guild.dev/graphql/codegen/docs/getting-started)**: Automatically generates types from your GraphQL fragments and queries. +- **[TanStack Query](https://tanstack.com/query)**: React hooks to fetch data from the GraphQL endpoints. + +#### Advantages + +- Simplifies data access with a unified API. +- Provides caching and data unification. +- Easy integration with modern frontend frameworks. + +#### Considerations + +- Understanding the GraphQL schema may require some initial effort. + +#### Frontend Sandbox + +To help you get started quickly, we offer a pre-configured frontend sandbox with the recommended stack: + + + +### Direct Smart Contract Calls + +This approach provides a more decentralized way to interact with the blockchain but has several limitations: + +- **Data Retrieval**: Cannot retrieve a list of all streams for a user directly. +- **Historical Data**: Limited access to past events unless the app is set up to listen to web3 events via RPC. +- **Pagination**: Not supported. + +## Conclusion + +Choosing the right approach depends on your specific needs and the trade-offs you're willing to make. For most applications, using one of our GraphQL indexers will provide a more seamless and efficient experience. However, if decentralization is a priority, direct smart contract calls may be the way to go. + +For more detailed information, refer to the [Overview](/api/overview) document and explore the specific indexers available for the Sablier protocols: + +- [Lockup indexers](/api/lockup/indexers) +- [Flow indexers](/api/lockup/indexers) +- [Airdrops indexers](/api/airdrops/indexers) diff --git a/docs/api/03-identifiers.mdx b/docs/api/03-identifiers.mdx new file mode 100644 index 00000000..01acccbf --- /dev/null +++ b/docs/api/03-identifiers.mdx @@ -0,0 +1,70 @@ +--- +id: "ids" +sidebar_position: 3 +title: "Identifiers" +--- + +## Stream IDs + +### Contracts + +Onchain, each Lockup and Flow contract assigns a [`streamId`](/reference/lockup/contracts/abstracts/abstract.SablierLockupBase#nextstreamid) to each stream, which is the same as the ERC-721 [`tokenId`](https://docs.openzeppelin.com/contracts/5.x/api/token/erc721) (each stream is tokenized as an ERC-721). + +The `streamId`/ `tokenId` in the contract is a simple numerical value (a `uint256`). For example, number `42` is a valid `streamId`/ `tokenId`. + +You will always need this value when interacting with Sablier via a JSON-RPC endpoint because it is required by every contract method associated with a stream, e.g. [`streamedAmountOf`](/reference/lockup/contracts/interfaces/interface.ISablierLockupBase#streamedamountof). + +### Indexers + +Offchain, in the GraphQL schema, we need to be able to identify streams across different EVM chains and different contract versions. Additionally, it would be nice to have short, easily readable aliases. Thus, we have come up with the following identifiers: + +| Identifier | Format | Example | +| ------------ | --------------------------------------- | ---------------------------------------------------------------- | +| Stream ID | `{contractAddress}-{chainId}-{tokenId}` | `0xe0bfe071da104e571298f8b6e0fce44c512c1ff4-137-21` | +| Stream Alias | `{contractAlias}-{chainId}-{tokenId}` | `LK-137-21` | + +Both examples from the table above translate to: \*\*a stream on Polygon (chain ID `137`) created via the Lockup v2.0 +contract at address `0xe0bfe071da104e571298f8b6e0fce44c512c1ff4`, with the token ID `21`. + +#### Contract Aliases + +Here's a table with the full list of contract aliases. + +| Alias | Contract Name | Release | +| ----- | ------------------------------ | ------------- | +| FL | SablierFlow | Flow v1.0 | +| FL2 | SablierFlow | Flow v1.1 | +| LD | SablierV2LockupDynamic | Lockup v1.0 | +| LD2 | SablierV2LockupDynamic | Lockup v1.1 | +| LD3 | SablierV2LockupDynamic | Lockup v1.2 | +| LK | SablierLockup | Lockup v2.0 | +| LL | SablierV2LockupLinear | Lockup v1.0 | +| LL2 | SablierV2LockupLinear | Lockup v1.1 | +| LL3 | SablierV2LockupLinear | Lockup v1.2 | +| LT3 | SablierV2LockupTranched | Lockup v1.2 | +| MSF2 | SablierV2MerkleStreamerFactory | Airdrops v1.1 | +| MSF3 | SablierV2MerkleLockupFactory | Airdrops v1.2 | +| MSF4 | SablierMerkleFactory | Airdrops v1.3 | + +## Airdrop IDs + +### Contracts + +Airdrops do not have any onchain IDs because every airdrop is a separate contract deployed by one of the Merkle Factory contracts. + +### Indexers + +The ID for an airdrop is the chain ID concatenated with the contract address of the airdrop contract: + +| Identifier | Format | Example | +| ---------- | ----------------------------- | ------------------------------------------------------------- | +| Airdrop ID | `{contractAddress}-{chainId}` | `0xf50760d8ead9ff322631a1f3ebf26cc7891b3708-137` | + +The example from the table above translates to: **_an airdrop on Polygon (chain ID `137`), with the contract +address `0xf50760d8ead9ff322631a1f3ebf26cc7891b3708`_**. + +:::info + +We have decided not to generate aliases for Airdrops, but this may change in the future. + +::: diff --git a/docs/api/05-development.mdx b/docs/api/05-development.mdx deleted file mode 100644 index de5ebcdf..00000000 --- a/docs/api/05-development.mdx +++ /dev/null @@ -1,228 +0,0 @@ ---- -id: "development" -sidebar_position: 5 -title: "Development" ---- - -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -## The Graph - -### Integrate - -To integrate the Sablier subgraphs or indexers into your project, start from the official `@sablier/subgraphs` -repository. - - - -We recommend using: - -- [GraphQL Code Generator](https://the-guild.dev/graphql/codegen/docs/getting-started) to create types from your GraphQL - fragments and queries. -- [TanStack Query](https://tanstack.com/query) to fetch results from the exposed endpoints. - -### Contribute - -To contribute to the subgraphs or deploy your own, head over to the GitHub -[`subgraphs`](https://github.com/sablier-labs/indexers) repository. Get started by reviewing the `apps/lockup` -directory. - -To bootstrap a subgraph project, run the following commands. They will install the requisite dependencies and generate -the code for Ethereum Sepolia deployment. - -```bash -cd ./apps/lockup -yarn install -yarn setup:sepolia -``` - -To deploy a new subgraph on Ethereum Sepolia: - -1. Create a new item using The Graph's hosted network -2. Add its name/endpoint under the `deploy:sepolia` script in `package.json` -3. Add your own Sablier contract addresses in `../constants/chains/sepolia.ts` -4. Make sure you're [authenticated][the-graph-auth] on your local machine -5. Run `yarn deploy:sepolia` - -You can read more about how the The Graph works in their [official docs][the-graph-docs]. - -To publish on the hosted service: - -1. [Authenticate](https://thegraph.com/docs/en/deploying/hosted-service/) with the hosted service credentials - - ```sh - graph auth --product hosted-service - ``` - -2. Generate configuration - - Run `yarn deploy:` to generate imports, configurations and deploy in the same script. - -[the-graph-auth]: https://thegraph.com/docs/en/deploying/deploying-a-subgraph-to-hosted/#store-the-access-token -[the-graph-docs]: https://thegraph.com/docs/en/ - -## Envio - -### Integrate - -To integrate the Sablier indexers into your own product, start from the official `@sablier/subgraphs` repository. We -recommend using: - -- [GraphQL Code Generator](https://the-guild.dev/graphql/codegen/docs/getting-started) to create types from your GraphQL - fragments and queries -- [TanStack Query](https://tanstack.com/query) to fetch results from the exposed endpoints. - -If you're integrated the Sablier subgraphs, we recommend using request and response wrappers/middleware to format -results coming from Envio's indexer in the same shape as those from The Graph. Suggestions: - -1. Write queries in both systems (based on the [querying language specifics](/api/caveats#querying-language)) using the - same `operationName` and swap query strings between vendors based on it -2. Write response middleware that converts results into similar shapes (see these [important notes](/api/caveats)) - - - -### Test - -To ensure Envio indexers deliver the same data as The Graph's subgraphs, we've written differential tests for our -indexer configurations. - -Check them out inside the `apps/[...]/test/` folders. - - - -#### Run - -The differentials tests are powered by Jest. Inside `test/setup/constants.ts`, you will find the full configuration for -these tests. This is where you'll also be able to toggle between using the local endpoint (see -[development](/api/development) to bootstrap a project locally) and the hosted-service one, using the `REMOTE` flag. - -```bash -pnpm run test -``` - -:::info - -As the set of streams or campaigns grows, the final tests (full coverage over the entire list of elements) may time out. -We suggest either splitting them in chunks or setting a manual limit to the number of iterations the loop can cover at -once. Alternatively, you could also try increasing the timeout of the tests. - -::: - -### Contribute - -To contribute to the V2 indexers (Envio x Sablier) or deploy your own, head over to the GitHub -[`subgraphs`](https://github.com/sablier-labs/indexers) repository. Get started by reviewing the `apps/lockup-envio` -directory. - -To bootstrap an indexer project, run the following commands. They will install the requisite dependencies and generate -the code for a multi-chain deployment. - -```bash -cd ./apps/lockup-envio -pnpm install -pnpm run setup - -# OR - -pnpm dev -``` - -A local Hasura process will be started at `http://localhost:8080` ,which will also include a `GraphQL` endpoint to query -locally. To deploy without hosting yourself, have a look at the Envio -[Hosted Service](https://docs.envio.dev/docs/hosted-service) docs. - -:::info - -Prior to starting the `Envio` process (`pnpm dev`) please make sure your Docker app is running. For installation see the -official docs at https://docs.envio.dev/. - -::: - -## Sablier SDK: Merkle API - -### Integrate - -To integrate the Sablier Merkle API into your own product, start from the official `@sablier/merkle-api` repository. We -recommend using: - - - -### Contribute - -To contribute to the V2 Merkle API or deploy your own, head over to the GitHub -[`merkle-api`](https://github.com/sablier-labs/merkle-api) repository. Get started by reviewing the `controllers` -directory. - -### Run an instance - -#### Locally - -In order to make the API work properly, you will need to create a `.env` file by following the `.env.example` file: - -```text -PINATA_ACCESS_TOKEN= -PINATA_API_KEY= -PINATA_API_SERVER= -PINATA_SECRET_API_KEY= -IPFS_GATEWAY= -``` - -After a campaign is created via the API, we use Pinata to upload and pin the file to IPFS. In order to obtain the -`PINATA_API_KEY`, `PINATA_SECRET_API_KEY` and `PINATA_ACCESS_TOKEN`, follow these steps: - -1. Sign up or log in on https://app.pinata.cloud/ -1. Select the API Keys tab -1. Select New Key -1. The key should have the permissions `pinFileToIPFS` and `pinJSONToIPFS` -1. Set a name for the key -1. Click Create Key -1. From the popup, take the API Key and the API Secret and put them in the `.env` file. The `IPFS_GATEWAY` variable can - be any IPFS gateway but we recommend using a private one (Pinata offers this as well). For more details about the - interactions with IPFS, check - [`src/services/ipfs.rs`](https://github.com/sablier-labs/merkle-api/blob/main/src/services/ipfs.rs). -1. Select the "Access Controls" tab -1. Click on the "Request Token" button -1. Copy the token and put in th `.env` file in the `PINATA_ACCESS_TOKEN` variable - -Simulate the cloud environment by finally running: - -```sh -cargo run --bin sablier_merkle_api -``` - -This command will run a standard web API and expose it on port 3000 on localhost. - -### Vercel - -We use Vercel for hosting, and this is why we have separate binaries for each endpoint. For local development, use this -command: - -```sh -vercel dev -``` - -This command will run a standard web API and expose it on port 3000 on localhost. - -If you wish to deploy your backend to vercel, check the official -[Github Actions](https://github.com/sablier-labs/merkle-api/blob/main/.github/workflows/deploy-merkle-api.yml) workflow -for deploying. Rust is supported through Vercel's [`rust runtime`](https://github.com/vercel-community/rust). diff --git a/docs/api/06-differences.mdx b/docs/api/06-differences.mdx deleted file mode 100644 index 293177b6..00000000 --- a/docs/api/06-differences.mdx +++ /dev/null @@ -1,144 +0,0 @@ ---- -id: "caveats" -sidebar_position: 6 -title: "Caveats" ---- - -# Caveats - -# The Graph vs. Envio - -:::warning - -If you're looking to support both subgraphs (The Graph) and indexers (Envio) into your apps, see the "Different Results -(\*)" 📌 section below to understand how results from these two APIs may differ for the same entities. - -::: - -## General - -In contrast to The Graph, Envio offers a slightly different Developer Experience (DX) in terms of indexer -implementation. While the query specifics don't change a lot for consumers, here are a few items to consider before -developing on top of the Sablier indexers/subgraphs: - -### Querying Language - -Both solutions create a **GraphQL** API for consumers to read data from. The Graph uses a customized subset of GraphQL -operations, which makes is impossible to use the same queries between both indexers and subgraphs, whereas Envio deploys -a GraphQL API over a Postgres DB. Here are some examples: - -| Example | The Graph | Envio | -| -------------------- | ------------------------------------- | ------------------------------------------ | -| Pagination | `first`, `skip` | `limit`, `offset` | -| Filter by id | `stream(id)` | `Stream(where: {id: {_eq: 1}})` | -| Single vs. Plural | `stream(id){}`, `streams{}` | `Stream(where...){}` for both | -| Nested items | `campaigns{ id, asset: {id, symbol}}` | `Campaign{ asset_id, asset: {id, symbol}}` | -| Filter similar items | `assets(id: $id)` | `Asset(where: {id: {_iregex: $id}})` | - -Notes: - -- For the 3rd example, querying for a single item vs. a collection will have separate keywords for The Graph. With - Envio, you'll have to identify within the app itself if the query is supposed to yield one or multiple items. As you - may tell, with Envio you'll query for `Stream` (capitalized), while with The Graph you'll query for `stream` or - `streams`. -- For the 4th example, Envio Indexers will yield the contents of the `name` of an object with (`{}`), while the - `_id` label will ask for the identifier of the object (e.g., `asset` vs `asset_id`). Keep this in mind for - "where" filtering. - -### Handler Language - -- The Graph: uses Assembly Script -- Envio: Sablier uses TypeScript by default, but you can also use JavaScript or Rescript - -With Envio, one important mental model is in the concept of loaders vs. handlers. To optimize querying speeds, Envio -will ask you to write 2 methods: (i) a `loader`, where you can express which existing entities you're expecting to use -and mutate, and (ii) a `handler` where you manage these entities and/or create new ones. - -Example: In the case of a Withdraw event, we weill **pre-load** the `Stream` entity and maybe the `Watcher`, while in -the second part we'll **handle** the creation of a new `Action` of type Withdraw, we'll update the `Stream`'s -`withdrawnAmount` and increase the `Watcher`'s index. - -## Specifics - -### Initializer Contracts - -We've architected this indexer around a set of pre-configured contracts. - -Similar to The Graph, we start by pre-configuring a set of contracts. While Envio's indexer doesn't have the same -[requirement](https://discord.com/channels/438038660412342282/438070183794573313/1153155902933831811) of pre-configuring -contracts to listen to, we'll keep this feature to ensure we can query against those entities, even if they'll be empty -at start. - -We'll ensure contracts have been initialized (see the `watcher.ts` helper) by making a call against the initializer at -the start of each method. It should only come into play within the create handlers. - -### Versioning and Lockup Flavors - -While for The Graph's subgraphs we track flavor-first (see `subgraph.template.yaml` for the configuration of -`LockupLinear` and `..Dynamic`, `..Tranched` or the new `LockupMerged`), for Envio's indexers we'll have a version-first -approach. - -Therefore, `LockupLinear` and its counterparts will be bundled under the same `Lockup` contract tracker (see -`./config.template.mustache`). Different versions of the protocol will be tracked separately, which is why we have -`Lockup_V20` (v2.0) and `Lockup_V21` (v2.1) in our configuration. Later on, inside the handler logic, we'll separate -contracts by flavor. - -```tree title="Envio: Contract configuration tree (version-first)" -└── contracts/ - ├── LockupV20/ - │ ├── event: CreateLockupDynamicStream - │ ├── event: CreateLockupLinearStream - │ └── event: CreateLockupTrnchedStream - ├── LockupV21/ - │ ├── event: CreateLockupDynamicStream - │ ├── event: CreateLockupLinearStream - │ └── event: CreateLockupTranchedStream - └── LockupV22/ -``` - -```tree title="The Graph: Contract configuration tree (flavor-first)" -└── contracts/ - ├── LockupDynamic/ - │ ├── event: CreateLockupDynamicStreamV20 - │ └── event: CreateLockupDynamicStreamV21 - │ └── event: CreateLockupDynamicStreamV22 - ├── LockupLinear/ - │ ├── event: CreateLockupLinearStreamV20 - │ └── event: CreateLockupLinearStreamV21 - │ └── event: CreateLockupLinearStreamV22 - ├── LockupTranched/ - └── LockupMerged/ -``` - -## Contract Calls - -Outside of data provided directly by the event arguments, one can access additional information through contract calls. -While The Graph provides a dedicated API (binding an ABI to an address, calling `contract.try_method()`), Envio is less -opinionated. A good example of contract calls can be found in our `helpers/asset.ts` where we use `viem` and a custom -caching mechanism to search for asset details. - -## Different Results (\*) - -Due to the cross-chain indexing aspect, entities in Envio will need to have a chainId suffix attached to them to ensure -they're unique across the board. At the same time, there are some minor features missing, which will cause some -differences listed below. - -- For Envio indexers, entities will have fully specified identifiers (meaning chainId included) - 1. `lockup-envio`: the `Action`, `Asset`, `Batch`, `Batcher`, `Contract` have a `-chainId` appended to the ID - 2. `merkle-envio`: the `Action`, `Asset` and `Factory` have a `-chainId` appended to the ID - -While we've tried to refactor our The Graph entities to share similar identifiers, please double check in cases when you -use both query resolves (The Graph and Envio) at the same time. - -:::tip - -To avoid writing separate systems when assigning variables to queries, you can use slightly different filters. For -example, given a different `id` for an entity like `Asset` (`address` in The Graph and `address-chainId` in Envio) you -can query for certain assets with: - -1. `asset(id: $assetId)` for The Graph -2. `Asset(where: {id: {_iregex: $assetId}})` - -With `assetId` in both cases being assigned to the Asset's `address`. - -::: diff --git a/docs/api/07-legacy.mdx b/docs/api/07-legacy.mdx index a255e700..edf4316f 100644 --- a/docs/api/07-legacy.mdx +++ b/docs/api/07-legacy.mdx @@ -5,74 +5,69 @@ title: "Legacy" --- import LinkPreview from "@site/src/components/molecules/LinkPreview"; +import ExplainerTheGraph from "@site/src/snippets/ExplainerTheGraph.mdx"; # Sablier Legacy -For the [first version](/apps/v1) of Sablier ([legacy-sender](https://legacy-sender.sablier.com), [legacy-recipient](https://legacy-recipient.sablier.com)), these are the subgraphs powering those dashboards. +These are the indexers for the [legacy version](/apps/legacy) of Sablier (deployed between 2019-2021). Sablier Legacy is only indexed by The Graph. -## The Graph - -### Endpoints - -| Chain | Id | Production Node [^1] | Testing Node | -| --------------- | ----------------- | ------------------------------- | ----------------------------- | -| Ethereum | sablier | [Network][v1-network-ethereum] | [Studio][v1-studio-ethereum] | -| Avalanche | sablier-avalanche | [Network][v1-network-avalanche] | [Studio][v1-studio-avalanche] | -| BNB Smart Chain | sablier-bsc | [Network][v1-network-bsc] | [Studio][v1-studio-bsc] | -| Arbitrum | sablier-arbitrum | [Network][v1-network-arbitrum] | [Studio][v1-studio-arbitrum] | -| Optimism | sablier-optimism | [Network][v1-network-optimism] | [Studio][v1-studio-optimism] | -| Polygon | sablier-matic | [Network][v1-network-polygon] | [Studio][v1-studio-polygon] | -| Ronin | sablier-ronin | [Network][v1-network-ronin] | N/A | - -### Code +## Source Code +## Endpoints + + + +| Chain | Production URL | Testing URL | +| --------- | ----------------------------------------- | ---------------------------- | +| Avalanche | [sablier-avalanche][production-avalanche] | [Testing][testing-avalanche] | +| Arbitrum | [sablier-arbitrum][production-arbitrum] | [Testing][testing-arbitrum] | +| BSC | [sablier-bsc][production-bsc] | [Testing][testing-bsc] | +| Ethereum | [sablier][production-ethereum] | [Testing][testing-ethereum] | +| Optimism | [sablier-optimism][production-optimism] | [Testing][testing-optimism] | +| Polygon | [sablier-matic][production-polygon] | [Testing][testing-polygon] | +| Ronin | [sablier-ronin][production-ronin] | N/A | + {/* Chain: Ethereum */} -[v1-network-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DkSXWkgJD5qVqfsrfzkLC5WELVX3Dbj3ByWcYjDJieCh -[v1-studio-ethereum]: https://api.studio.thegraph.com/query/112500/sablier/version/latest/ +[production-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DkSXWkgJD5qVqfsrfzkLC5WELVX3Dbj3ByWcYjDJieCh +[testing-ethereum]: https://api.studio.thegraph.com/query/57079/sablier/version/latest/ {/* Chain: Arbitrum */} -[v1-network-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/94SP9QVcxmGV9e2fxuTxUGcZfcv4tjpPCGyyPVyMfLP -[v1-studio-arbitrum]: https://api.studio.thegraph.com/query/112500/sablier-arbitrum/version/latest +[production-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/94SP9QVcxmGV9e2fxuTxUGcZfcv4tjpPCGyyPVyMfLP +[testing-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-arbitrum/version/latest {/* Chain: Avalanche */} -[v1-network-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DK2gHCprwVaytwzwb5fUrkFS9xy7wh66NX6AFcDzMyF9 -[v1-studio-avalanche]: https://api.studio.thegraph.com/query/112500/sablier-avalanche/version/latest +[production-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DK2gHCprwVaytwzwb5fUrkFS9xy7wh66NX6AFcDzMyF9 +[testing-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-avalanche/version/latest {/* Chain: BSC */} -[v1-network-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3Gyy7of99oBRqHcCMGJXpHw2xxxZgXxVmFPFR1vL6YhT -[v1-studio-bsc]: https://api.studio.thegraph.com/query/112500/sablier-bsc/version/latest +[production-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3Gyy7of99oBRqHcCMGJXpHw2xxxZgXxVmFPFR1vL6YhT +[testing-bsc]: https://api.studio.thegraph.com/query/57079/sablier-bsc/version/latest {/* Chain: OP Mainnet */} -[v1-network-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BEnQbvBdXnohC1DpM9rSb47C1FbowK39HfPNCEHjgrBt -[v1-studio-optimism]: https://api.studio.thegraph.com/query/112500/sablier-optimism/version/latest +[production-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BEnQbvBdXnohC1DpM9rSb47C1FbowK39HfPNCEHjgrBt +[testing-optimism]: https://api.studio.thegraph.com/query/57079/sablier-optimism/version/latest {/* Chain: Ronin */} -[v1-network-ronin]: https://subgraph.satsuma-prod.com/d8d041c49d56/sablierlabs/sablier-ronin/api +[production-ronin]: https://subgraph.satsuma-prod.com/d8d041c49d56/sablierlabs/sablier-ronin/api {/* Chain: Polygon */} -[v1-network-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/6UMNQfMeh3pV5Qmn2NDX2UKNeUk9kh4oZhzzzn5e8rSz -[v1-studio-polygon]: https://api.studio.thegraph.com/query/112500/sablier-matic/version/latest +[production-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/6UMNQfMeh3pV5Qmn2NDX2UKNeUk9kh4oZhzzzn5e8rSz +[testing-polygon]: https://api.studio.thegraph.com/query/57079/sablier-matic/version/latest {/* Endpoints */} [^1]: - Endpoints could include: The Graph's Decentralized Network (paid) or Custom Nodes (e.g. Lightlink). Because the - "Decentralized Network" subgraph flavors (e.g. V1 Ethereum) operate on The Graph Network, you will need to - substitute the `YOUR_API_KEY` placeholder in the - [Query URL](https://thegraph.com/docs/en/deploying/subgraph-studio-faqs/#6-how-do-i-find-query-urls-for-subgraphs-if-im-not-the-developer-of-the-subgraph-i-want-to-use) - with your own API key. If you require assistance with managing your API keys and configuring indexer preferences, - [this article](https://thegraph.com/docs/en/studio/managing-api-keys/) serves as an excellent guide diff --git a/docs/api/_common/GraphQLSchema.mdx b/docs/api/_common/GraphQLSchema.mdx new file mode 100644 index 00000000..6fc64eac --- /dev/null +++ b/docs/api/_common/GraphQLSchema.mdx @@ -0,0 +1,27 @@ +import { capitalize } from "lodash"; +import Link from "@docusaurus/Link"; + +## Overview + +We provide auto-generated GraphQL schema documentation for both The Graph and Envio: + +- The Graph schema docs +- Envio schema docs + +## Query Syntax Differences + +| Feature | The Graph | Envio | +| ------------ | -------------------------------------------------- | ------------------------------------------------------- | +| Pagination | `first` | `limit` | +| Pagination | `skip` | `offset` | +| Get by ID | `stream(id: "...")` | `Stream_by_pk(id: "...")` | +| Get multiple | `streams{}` | `Stream(where: {chainId: {_eq: ""}}){}` | +| Nested items | `campaigns{ id, asset: {id, symbol}}` | `Campaign{ asset_id, asset: {id, symbol}}` | + +## Entities + +This is the raw GraphQL file that is used by both The Graph and Envio for generating the final schemas hosted on their services. + +The schema only contains entities: + +{/* Add the code block */} diff --git a/docs/api/airdrops/01-indexers.mdx b/docs/api/airdrops/01-indexers.mdx new file mode 100644 index 00000000..1deb8b44 --- /dev/null +++ b/docs/api/airdrops/01-indexers.mdx @@ -0,0 +1,47 @@ +--- +id: "indexers" +sidebar_position: 1 +title: "Indexers" +--- + +import TableEnvio from "@site/src/autogen/lockup/TableEnvio.mdx"; +import TableTheGraph from "@site/src/autogen/lockup/TableTheGraph.mdx"; +import LinkPreviewIndexers from "@site/src/components/molecules/link-previews/Indexers"; +import ExplainerEnvio from "@site/src/snippets/ExplainerEnvio.mdx"; +import ExplainerTheGraph from "@site/src/snippets/ExplainerTheGraph.mdx"; + +# Sablier Airdrops + +This page documents the indexers for the [Sablier Airdrops](/concepts/airdrops) protocol, which powers the [Airdrops](/apps/features/airdrops) product in the Sablier Interface. + +:::info + +Vested airdrops will create a [Lockup](/concepts/lockup/overview) stream when a user makes a claim. + +::: + +## Envio + +### Source Code + + + +### Endpoints + + + +#### Table + + + +## The Graph + +### Source Code + + + +### Endpoints + + + + diff --git a/docs/api/airdrops/01-overview.mdx b/docs/api/airdrops/01-overview.mdx deleted file mode 100644 index 959a9d89..00000000 --- a/docs/api/airdrops/01-overview.mdx +++ /dev/null @@ -1,57 +0,0 @@ ---- -id: "overview" -sidebar_position: 1 -title: "Overview" ---- - -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Airdrops - -Sablier's [Lockup](/concepts/lockup/overview) streams are used for the [Vesting](/apps/features/vesting) feature and -some of the [Airdrops](/apps/features/airdrops) features of the Sablier Interface. The Airdrops component is supported -by our [Merkle](/concepts/merkle-airdrops) utilities and focuses on the functionality of the Merkle Factory. - -Airdrops-native functionality is powered by: - -- The `@sablier/subgraphs/apps/merkle` subgraph -- The `@sablier/subgraphs/apps/merkle-envio` indexer -- The `@sablier/merkle-api` sdk - -For the Lockup-native functionality, please check the dedicated [documentation](/api/lockup/overview). - -:::info - -[Airstreamed](/apps/features/airdrops) airdrops will create a Lockup stream once a claim is made. - -::: - - - - - -## What are Airdrops / Airstreams? - -**Airdrops** are large-scale campaigns developed to aid with token distribution towards millions of users. They rely on -**merkle trees** to efficiently store eligibility details. - -Extending the classic instant airdrop, Sablier engineered Airstreams, a way to reward users with streams which vest -rewards over time, instead of unlocking a lump-sum of tokens. - -The first step before diving into this guide is to become familiar with the [concepts](/concepts/merkle-airdrops). - -#### Naming convention - -As per our endpoint [naming convention](/api/overview#endpoints--slugs), subgraph deployments of Sablier Airdrops will -follow the `sablier-airdrops-*` structure (e.g. `sablier-airdrops-ethereum` for Mainnet, `sablier-airdrops-base` for -Base). diff --git a/docs/api/airdrops/02-airdrops-endpoints.mdx b/docs/api/airdrops/02-airdrops-endpoints.mdx deleted file mode 100644 index 70619466..00000000 --- a/docs/api/airdrops/02-airdrops-endpoints.mdx +++ /dev/null @@ -1,242 +0,0 @@ ---- -id: "endpoints" -sidebar_position: 2 -title: "Endpoints" ---- - -import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx"; -import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx"; -import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx"; -import EnvioEndpointTable from "@site/src/components/molecules/EnvioEndpointTable"; -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Airdrops Endpoints - -## Merkle API - -Sablier Airdrops rely on pre-configured Merkle trees to hold the list of recipients and their individual claim details. -To build the Merkle tree and generate recipient proofs, we use a web2 API. - -For full details about the Merkle API, check out the [next section](/api/airdrops/merkle-api/overview). You can also -explore the source code on GitHub: - - - -## Indexers - -The following indexers (Envio, The Graph) track the events emitted by the Sablier Airdrops contracts, specifically the -ones in charge of Merkle distributions. It deals with airdrops-specific actions like the factory creating an airstream -campaign, admin clawbacks, or users claiming stream NFTs as defined in the attached Merkle tree. - -Airdrops work in tandem with our [Vesting](/apps/features/vesting) feature since some Merkle distributions will produce -new [Lockup](/api/lockup/overview) streams. - -## Envio - -### Source Code - - - -### Endpoints - - - - - -## The Graph - -### Source Code - - - -### Endpoints - - - - -| Chain | Explorer | Production Node | Testing Node | -| ---------------- | ----------------------------------------------------------------------- | ------------------------------------------------------ | ------------------------------------------ | -| Ethereum | [sablier-airdrops-ethereum-mainnet][explorer-airdrops-ethereum-mainnet] | [The Graph Network][network-airdrops-ethereum-mainnet] | [Studio][studio-airdrops-ethereum-mainnet] | -| Abstract | [sablier-airdrops-abstract][explorer-airdrops-abstract] | [The Graph Network][network-airdrops-abstract] | [Studio][studio-airdrops-abstract] | -| Arbitrum | [sablier-airdrops-arbitrum][explorer-airdrops-arbitrum] | [The Graph Network][network-airdrops-arbitrum] | [Studio][studio-airdrops-arbitrum] | -| Avalanche | [sablier-airdrops-avalanche][explorer-airdrops-avalanche] | [The Graph Network][network-airdrops-avalanche] | [Studio][studio-airdrops-avalanche] | -| Base | [sablier-airdrops-base][explorer-airdrops-base] | [The Graph Network][network-airdrops-base] | [Studio][studio-airdrops-base] | -| Berachain | [sablier-airdrops-berachain][explorer-airdrops-berachain] | [The Graph Network][network-airdrops-berachain] | [Studio][studio-airdrops-berachain] | -| Blast | [sablier-airdrops-blast][explorer-airdrops-blast] | [The Graph Network][network-airdrops-blast] | [Studio][studio-airdrops-blast] | -| BNB Chain | [sablier-airdrops-bsc][explorer-airdrops-bsc] | [The Graph Network][network-airdrops-bsc] | [Studio][studio-airdrops-bsc] | -| Chiliz Chain | [sablier-airdrops-chiliz][explorer-airdrops-chiliz] | [The Graph Network][network-airdrops-chiliz] | [Studio][studio-airdrops-chiliz] | -| Gnosis | [sablier-airdrops-gnosis][explorer-airdrops-gnosis] | [The Graph Network][network-airdrops-gnosis] | [Studio][studio-airdrops-gnosis] | -| IoTeX | [sablier-airdrops-iotex][explorer-airdrops-iotex] | [The Graph Network][network-airdrops-iotex] | [Studio][studio-airdrops-iotex] | -| Linea | [sablier-airdrops-linea][explorer-airdrops-linea] | [The Graph Network][network-airdrops-linea] | [Studio][studio-airdrops-linea] | -| Lightlink | [sablier-airdrops-lightlink][explorer-airdrops-lightlink] | [LightLink Node][custom-airdrops-lightlink] | N/A | -| Mode | [sablier-airdrops-mode][explorer-airdrops-mode] | [The Graph Network][network-airdrops-mode] | [Studio][studio-airdrops-mode] | -| Optimism | [sablier-airdrops-optimism][explorer-airdrops-optimism] | [The Graph Network][network-airdrops-optimism] | [Studio][studio-airdrops-optimism] | -| Polygon | [sablier-airdrops-polygon][explorer-airdrops-polygon] | [The Graph Network][network-airdrops-polygon] | [Studio][studio-airdrops-polygon] | -| Scroll | [sablier-airdrops-scroll][explorer-airdrops-scroll] | [The Graph Network][network-airdrops-scroll] | [Studio][studio-airdrops-scroll] | -| XDC | [sablier-airdrops-xdc][explorer-airdrops-xdc] | [XDC Node][custom-airdrops-xdc] | N/A | -| zkSync | [sablier-airdrops-zksync][explorer-airdrops-zksync] | [The Graph Network][network-airdrops-zksync] | [Studio][studio-airdrops-zksync] | -| Arbitrum Sepolia | [sablier-airdrops-arbitrum-sepolia][explorer-airdrops-arbitrum-sepolia] | [The Graph Network][network-airdrops-arbitrum-sepolia] | [Studio][studio-airdrops-arbitrum-sepolia] | -| Base Sepolia | [sablier-airdrops-base-sepolia][explorer-airdrops-base-sepolia] | [The Graph Network][network-airdrops-base-sepolia] | [Studio][studio-airdrops-base-sepolia] | -| Ethereum Sepolia | [sablier-airdrops-ethereum-sepolia][explorer-airdrops-ethereum-sepolia] | [The Graph Network][network-airdrops-ethereum-sepolia] | [Studio][studio-airdrops-ethereum-sepolia] | -| Optimism Sepolia | [sablier-airdrops-optimism-sepolia][explorer-airdrops-optimism-sepolia] | [The Graph Network][network-airdrops-optimism-sepolia] | [Studio][studio-airdrops-optimism-sepolia] | - -[^1]: The testing nodes may be rate-limited. - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* MAINNETS */} - -{/* Chain: Ethereum Mainnet */} - -[explorer-airdrops-ethereum-mainnet]: https://thegraph.com/explorer/subgraphs/DFD73EcSue44R7mpHvXeyvcgaT8tR1iKakZFjBsiFpjs -[studio-airdrops-ethereum-mainnet]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-ethereum/version/latest -[network-airdrops-ethereum-mainnet]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/DFD73EcSue44R7mpHvXeyvcgaT8tR1iKakZFjBsiFpjs - -{/* Chain: Abstract */} - -[network-airdrops-abstract]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/DRrf6mYEhRt9QieKvTjDHnSWcBm3GW96hpedMKVxLABx -[explorer-airdrops-abstract]: https://thegraph.com/explorer/subgraphs/DRrf6mYEhRt9QieKvTjDHnSWcBm3GW96hpedMKVxLABx -[studio-airdrops-abstract]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-abstract/version/latest - -{/* Chain: Arbitrum */} - -[network-airdrops-arbitrum]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/HkHDg6NVVVeobhpcU4pTPMktyC25zd6xAQBGpYrWDgRr -[explorer-airdrops-arbitrum]: https://thegraph.com/explorer/subgraphs/HkHDg6NVVVeobhpcU4pTPMktyC25zd6xAQBGpYrWDgRr -[studio-airdrops-arbitrum]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-arbitrum/version/latest - -{/* Chain: Avalanche */} - -[network-airdrops-avalanche]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/CpbN5Ps25UzqfdoqYdrjoSK4Him6nwDvdLK6a2sGS1PA -[explorer-airdrops-avalanche]: https://thegraph.com/explorer/subgraphs/CpbN5Ps25UzqfdoqYdrjoSK4Him6nwDvdLK6a2sGS1PA -[studio-airdrops-avalanche]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-avalanche/version/latest - -{/* Chain: Base */} - -[network-airdrops-base]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/4SxPXkQNifgBYqje2C4yP5gz69erZwtD7GuLWgXHSLGe -[explorer-airdrops-base]: https://thegraph.com/explorer/subgraphs/4SxPXkQNifgBYqje2C4yP5gz69erZwtD7GuLWgXHSLGe -[studio-airdrops-base]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-base/version/latest - -{/* Chain: Berachain */} - -[network-airdrops-berachain]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/CnYsdmzuY3Mebwywvqv1WrXw9UZuPMTrxoGgR2UdThJE -[explorer-airdrops-berachain]: https://thegraph.com/explorer/subgraphs/CnYsdmzuY3Mebwywvqv1WrXw9UZuPMTrxoGgR2UdThJE -[studio-airdrops-berachain]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-berachain/version/latest - -{/* Chain: Blast */} - -[network-airdrops-blast]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/657bogqYaDSSeqsoJcJ1kRqGnc3jC15UmcVLzsYxyxKK -[explorer-airdrops-blast]: https://thegraph.com/explorer/subgraphs/657bogqYaDSSeqsoJcJ1kRqGnc3jC15UmcVLzsYxyxKK -[studio-airdrops-blast]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-blast/version/latest - -{/* Chain: BSC */} - -[network-airdrops-bsc]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/FXQT42kQPvpMJgsF5Bs6CqpxVvPP1LBqEhWThCCLMeGL -[explorer-airdrops-bsc]: https://thegraph.com/explorer/subgraphs/FXQT42kQPvpMJgsF5Bs6CqpxVvPP1LBqEhWThCCLMeGL -[studio-airdrops-bsc]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-bsc/version/latest - -{/* Chain: Chiliz */} - -[network-airdrops-chiliz]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/6LK1aqrhzZCp6c88MEBDAR1VDLpZQiXpBKkceJ5Lu4LU -[explorer-airdrops-chiliz]: https://thegraph.com/explorer/subgraphs/6LK1aqrhzZCp6c88MEBDAR1VDLpZQiXpBKkceJ5Lu4LU -[studio-airdrops-chiliz]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-chiliz/version/latest - -{/* Chain: Gnosis */} - -[network-airdrops-gnosis]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/kQEY5PYbjx4SMKyMUwqJHRLDzKH1aUqGsf1cnibU7Kn -[explorer-airdrops-gnosis]: https://thegraph.com/explorer/subgraphs/kQEY5PYbjx4SMKyMUwqJHRLDzKH1aUqGsf1cnibU7Kn -[studio-airdrops-gnosis]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-gnosis/version/latest - -{/* Chain: Iotex */} - -[network-airdrops-iotex]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/G39uCzr1FDY7pBFe8DwShAxhMeC6dbZetutVg6wjtks3 -[explorer-airdrops-iotex]: https://thegraph.com/explorer/subgraphs/G39uCzr1FDY7pBFe8DwShAxhMeC6dbZetutVg6wjtks3 -[studio-airdrops-iotex]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-gnosis/version/latest - -{/* Chain: Linea */} - -[network-airdrops-linea]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/6koYFSd8FQizdQWLTdRpL1yTmAbpMgN1vZN5W6ajZiTN -[explorer-airdrops-linea]: https://thegraph.com/explorer/subgraphs/6koYFSd8FQizdQWLTdRpL1yTmAbpMgN1vZN5W6ajZiTN -[studio-airdrops-linea]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-linea/version/latest - -{/* Chain: LightLink */} - -[explorer-airdrops-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-airdrops-lightlink/graphql -[custom-airdrops-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-airdrops-lightlink - -{/* Chain: Mode */} - -[network-airdrops-mode]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/HZMkVX5c2qf7BqbidwpcQMsHGWTDdEKwVjnwenzo9s6m -[explorer-airdrops-mode]: https://thegraph.com/explorer/subgraphs/HZMkVX5c2qf7BqbidwpcQMsHGWTDdEKwVjnwenzo9s6m -[studio-airdrops-mode]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-mode/version/latest - -{/* Chain: Optimism */} - -[network-airdrops-optimism]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/CHJtCNDzPqngpa1YJoaVrjuufZL6k6VkEkG9ZFUMQzF7 -[explorer-airdrops-optimism]: https://thegraph.com/explorer/subgraphs/CHJtCNDzPqngpa1YJoaVrjuufZL6k6VkEkG9ZFUMQzF7 -[studio-airdrops-optimism]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-optimism/version/latest - -{/* Chain: Polygon */} - -[network-airdrops-polygon]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/FRbBKiDyM5YpFAqHLXRfQWwQdMGzFL82hqoPXPpXzAHE -[explorer-airdrops-polygon]: https://thegraph.com/explorer/subgraphs/FRbBKiDyM5YpFAqHLXRfQWwQdMGzFL82hqoPXPpXzAHE -[studio-airdrops-polygon]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-polygon/version/latest - -{/* Chain: Scroll */} - -[network-airdrops-scroll]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/Ev4xS8VxuoUcpgqz5A2BkTgQxQeskm4Fg41XzVJ2DX9 -[explorer-airdrops-scroll]: https://thegraph.com/explorer/subgraphs/Ev4xS8VxuoUcpgqz5A2BkTgQxQeskm4Fg41XzVJ2DX9 -[studio-airdrops-scroll]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-scroll/version/latest - -{/* Chain: XDC */} - -[explorer-airdrops-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-airdrops-xdc/graphql -[custom-airdrops-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-airdrops-xdc - -{/* Chain: zkSync */} - -[network-airdrops-zksync]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/64iDUwNVWKukw67nqTXif5taEfLug4Qf1c2suAv5hrqN -[explorer-airdrops-zksync]: https://thegraph.com/explorer/subgraphs/64iDUwNVWKukw67nqTXif5taEfLug4Qf1c2suAv5hrqN -[studio-airdrops-zksync]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-zksync/version/latest - -{/* TESTNETS */} - -{/* Chain: Arbitrum Sepolia */} - -[network-airdrops-arbitrum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/3S7v3VkDq8XMBd8EFVhKur2Vk44xScaW8a4BRjoPuYWk -[explorer-airdrops-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/3S7v3VkDq8XMBd8EFVhKur2Vk44xScaW8a4BRjoPuYWk -[studio-airdrops-arbitrum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-arbitrum-sepolia/version/latest - -{/* Chain: Base Sepolia */} - -[network-airdrops-base-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/4R2hm27YJ7CVEJ97BbBJz2r4KTKYc8sTqqzrD8UzEfJt -[explorer-airdrops-base-sepolia]: https://thegraph.com/explorer/subgraphs/4R2hm27YJ7CVEJ97BbBJz2r4KTKYc8sTqqzrD8UzEfJt -[studio-airdrops-base-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-base-sepolia/version/latest - -{/* Chain: Ethereum Sepolia */} - -[network-airdrops-ethereum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/8PLGDyXEsPgRTAnozL7MAjmTUFY4TBzs8i4F9Pq3wwSh -[explorer-airdrops-ethereum-sepolia]: https://thegraph.com/explorer/subgraphs/8PLGDyXEsPgRTAnozL7MAjmTUFY4TBzs8i4F9Pq3wwSh -[studio-airdrops-ethereum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-sepolia/version/latest - -{/* Chain: Optimism Sepolia */} - -[network-airdrops-optimism-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/3kp1eR2T1XpvvLkSZ7Wtt45DbDaiykTes478RZ7zwTz -[explorer-airdrops-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/3kp1eR2T1XpvvLkSZ7Wtt45DbDaiykTes478RZ7zwTz -[studio-airdrops-optimism-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-airdrops-optimism-sepolia/version/latest diff --git a/docs/api/airdrops/05-previous-indexers.mdx b/docs/api/airdrops/05-previous-indexers.mdx new file mode 100644 index 00000000..082b3b72 --- /dev/null +++ b/docs/api/airdrops/05-previous-indexers.mdx @@ -0,0 +1,135 @@ +--- +id: "previous-indexers" +sidebar_position: 5 +title: "Previous Indexers" +--- + +import DeprecatedIndexers from "@site/src/snippets/DeprecatedIndexers.mdx"; + + + +| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | +| ---------------- | -------------------------------------------------------------- | ------------------------------------ | --------------------------------------- | +| Ethereum | [sablier-v2-ms][explorer-ms-ethereum] | [Studio][studio-ms-ethereum] | [Network][network-ms-ethereum] | +| Arbitrum | [sablier-v2-ms-arbitrum][explorer-ms-arbitrum] | [Studio][studio-ms-arbitrum] | [Network][network-ms-arbitrum] | +| Arbitrum Sepolia | [sablier-v2-ms-arbitrum-sepolia][explorer-ms-arbitrum-sepolia] | [Studio][studio-ms-arbitrum-sepolia] | [Network][network-ms-arbitrum-sepolia] | +| Avalanche | [sablier-v2-ms-avalanche][explorer-ms-avalanche] | [Studio][studio-ms-avalanche] | [Network][network-ms-avalanche] | +| Base | [sablier-v2-ms-base][explorer-ms-base] | [Studio][studio-ms-base] | [Network][network-ms-base] | +| Blast | [sablier-v2-ms-blast][explorer-ms-blast] | [Studio][studio-ms-blast] | [Network][network-ms-blast] | +| BNB Chain | [sablier-v2-ms-bsc][explorer-ms-bsc] | [Studio][studio-ms-bsc] | [Network][network-ms-bsc] | +| Chiliz Chain | [sablier-v2-ms-chiliz][explorer-ms-chiliz] | [Studio][studio-ms-chiliz] | [Network][network-ms-chiliz] | +| Ethereum Sepolia | [sablier-v2-ms-sepolia][explorer-ms-sepolia] | [Studio][studio-ms-sepolia] | [Network][network-ms-sepolia] | +| Gnosis | [sablier-v2-ms-gnosis][explorer-ms-gnosis] | [Studio][studio-ms-gnosis] | [Network][network-ms-gnosis] | +| Lightlink | [sablier-v2-ms-lightlink\*][explorer-ms-lightlink] | N/A | [Lightlink Node\*][custom-ms-lightlink] | +| Optimism | [sablier-v2-ms-optimism][explorer-ms-optimism] | [Studio][studio-ms-optimism] | [Network][network-ms-optimism] | +| Optimism Sepolia | [sablier-v2-ms-optimism-sepolia][explorer-ms-optimism-sepolia] | [Studio][studio-ms-optimism-sepolia] | [Network][network-ms-optimism-sepolia] | +| Polygon | [sablier-v2-ms-polygon][explorer-ms-polygon] | [Studio][studio-ms-polygon] | [Network][network-ms-polygon] | +| Scroll | [sablier-v2-ms-scroll][explorer-ms-scroll] | [Studio][studio-ms-scroll] | [Network][network-ms-scroll] | +| zkSync | [sablier-v2-ms-zksync][explorer-ms-zksync] | [Studio][studio-ms-zksync] | [Network][network-ms-zksync] | + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} + +{/* Chain: Arbitrum */} + +[network-ms-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CPCMKbUFEM8CzVbfic1y34qKbTrKADX9Du9QxsAMAwqU +[explorer-ms-arbitrum]: https://thegraph.com/explorer/subgraphs/CPCMKbUFEM8CzVbfic1y34qKbTrKADX9Du9QxsAMAwqU +[studio-ms-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-arbitrum/version/latest + +{/* Chain: Arbitrum Sepolia */} + +[network-ms-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BBJgy9RANbViGedeWTrVpH2bwm22E3niEzWcqHPMGtna +[explorer-ms-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/BBJgy9RANbViGedeWTrVpH2bwm22E3niEzWcqHPMGtna +[studio-ms-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-arbitrum-sepolia/version/latest + +{/* Chain: Avalanche */} + +[network-ms-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2beDuAvmwbyFzJ95HAwfqNjnYT6nEnzbEfSNhfWGMyhJ +[explorer-ms-avalanche]: https://thegraph.com/explorer/subgraphs/2beDuAvmwbyFzJ95HAwfqNjnYT6nEnzbEfSNhfWGMyhJ +[studio-ms-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-avalanche/version/latest + +{/* Chain: Base */} + +[network-ms-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DrfN5cbvcCmpQUSc5RE9T1UxtcnMREi1Rd2PgLzDZCo3 +[explorer-ms-base]: https://thegraph.com/explorer/subgraphs/DrfN5cbvcCmpQUSc5RE9T1UxtcnMREi1Rd2PgLzDZCo3 +[studio-ms-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-base/version/latest + +{/* Chain: Blast */} + +[network-ms-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HVqkPvCRAvbxjx6YVmkk6w6rHPrqqtiymcGiQiMKPw8f +[explorer-ms-blast]: https://thegraph.com/explorer/subgraphs/HVqkPvCRAvbxjx6YVmkk6w6rHPrqqtiymcGiQiMKPw8f +[studio-ms-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-blast/version/latest + +{/* Chain: BSC */} + +[network-ms-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8uU9qAw9fSzdjqebymGRXWCjtZ5DQCmUA6QzRA14ARpz +[explorer-ms-bsc]: https://thegraph.com/explorer/subgraphs/8uU9qAw9fSzdjqebymGRXWCjtZ5DQCmUA6QzRA14ARpz +[studio-ms-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-bsc/version/latest + +{/* Chain: Chiliz */} + +[network-ms-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DdhRyXwhvEmKyioCk41m6Xu9fyaprsnp4gMWZ3bHYZJd +[explorer-ms-chiliz]: https://thegraph.com/explorer/subgraphs/DdhRyXwhvEmKyioCk41m6Xu9fyaprsnp4gMWZ3bHYZJd +[studio-ms-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-chiliz/version/latest + +{/* Chain: Ethereum Sepolia */} + +[network-ms-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8UVeHt7rHA27XZhViugaW4nStiN332dHTDWVTNBLCqPc +[explorer-ms-sepolia]: https://thegraph.com/explorer/subgraphs/8UVeHt7rHA27XZhViugaW4nStiN332dHTDWVTNBLCqPc +[studio-ms-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-sepolia/version/latest + +{/* Chain: Gnosis */} + +[network-ms-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FViBHgu2TtaZZXspDBzACjuPYKtqVDysmH35pk3W3zJJ +[explorer-ms-gnosis]: https://thegraph.com/explorer/subgraphs/FViBHgu2TtaZZXspDBzACjuPYKtqVDysmH35pk3W3zJJ +[studio-ms-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-gnosis/version/latest + +{/* Chain: Lightlink */} + +[explorer-ms-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-ms-lightlink/graphql +[custom-ms-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-ms-lightlink + +{/* Chain: Mainnet | Ethereum */} + +[explorer-ms-ethereum]: https://thegraph.com/explorer/subgraphs/FigCYTmdPtXbf4tgNiy5ZrtnYefz92hsMcwM4f9N5ZeZ +[studio-ms-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms/version/latest +[network-ms-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FigCYTmdPtXbf4tgNiy5ZrtnYefz92hsMcwM4f9N5ZeZ + +{/* Chain: Optimism */} + +[network-ms-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/7iSmF69W4mQqtx6EfWXXn5s27Hrdh72etsPKVC9iE62U +[explorer-ms-optimism]: https://thegraph.com/explorer/subgraphs/7iSmF69W4mQqtx6EfWXXn5s27Hrdh72etsPKVC9iE62U +[studio-ms-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-optimism/version/latest + +{/* Chain: Optimism Sepolia */} + +[network-ms-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CG5QddHKoABuN6KHZHYTHL7upg2iPTMYxi35Ey7jspkX +[explorer-ms-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/CG5QddHKoABuN6KHZHYTHL7upg2iPTMYxi35Ey7jspkX +[studio-ms-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-optimism-sepolia/version/latest + +{/* Chain: Polygon */} + +[network-ms-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/4r2pC3iyLbzytNa5phat3SWdMEyXG8fmnf1K89D7zP2G +[explorer-ms-polygon]: https://thegraph.com/explorer/subgraphs/4r2pC3iyLbzytNa5phat3SWdMEyXG8fmnf1K89D7zP2G +[studio-ms-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-polygon/version/latest + +{/* Chain: Scroll */} + +[network-ms-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/F1QnrgBpsVKtiVzkLisEC2PDo6cjzLoAy5HhPdFRdjW +[explorer-ms-scroll]: https://thegraph.com/explorer/subgraphs/F1QnrgBpsVKtiVzkLisEC2PDo6cjzLoAy5HhPdFRdjW +[studio-ms-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-scroll/version/latest + +{/* Chain: zkSync */} + +[network-ms-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BboiKY7JCdznoqurdXRizL9UYD1YdQKajaj4gvUrPPEA +[explorer-ms-zksync]: https://thegraph.com/explorer/subgraphs/BboiKY7JCdznoqurdXRizL9UYD1YdQKajaj4gvUrPPEA +[studio-ms-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-zksync/version/latest + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} + +[endpoint-merkle]: https://indexer.hyperindex.xyz/508d217/v1/graphql + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} diff --git a/docs/api/airdrops/06-previous-endpoints.mdx b/docs/api/airdrops/06-previous-endpoints.mdx deleted file mode 100644 index 71985a30..00000000 --- a/docs/api/airdrops/06-previous-endpoints.mdx +++ /dev/null @@ -1,135 +0,0 @@ ---- -id: "previous-endpoints" -sidebar_position: 6 -title: "Previous Endpoints" ---- - -import DeprecatedEndpoints from "@site/docs/snippets/DeprecatedEndpoints.mdx"; - - - -| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | -| ---------------- | ----------------------------------------------------------------- | --------------------------------------- | ------------------------------------------ | -| Ethereum | [sablier-v2-ms][v2-explorer-ms-ethereum] | [Studio][v2-studio-ms-ethereum] | [Network][v2-network-ms-ethereum] | -| Arbitrum | [sablier-v2-ms-arbitrum][v2-explorer-ms-arbitrum] | [Studio][v2-studio-ms-arbitrum] | [Network][v2-network-ms-arbitrum] | -| Arbitrum Sepolia | [sablier-v2-ms-arbitrum-sepolia][v2-explorer-ms-arbitrum-sepolia] | [Studio][v2-studio-ms-arbitrum-sepolia] | [Network][v2-network-ms-arbitrum-sepolia] | -| Avalanche | [sablier-v2-ms-avalanche][v2-explorer-ms-avalanche] | [Studio][v2-studio-ms-avalanche] | [Network][v2-network-ms-avalanche] | -| Base | [sablier-v2-ms-base][v2-explorer-ms-base] | [Studio][v2-studio-ms-base] | [Network][v2-network-ms-base] | -| Blast | [sablier-v2-ms-blast][v2-explorer-ms-blast] | [Studio][v2-studio-ms-blast] | [Network][v2-network-ms-blast] | -| BNB Chain | [sablier-v2-ms-bsc][v2-explorer-ms-bsc] | [Studio][v2-studio-ms-bsc] | [Network][v2-network-ms-bsc] | -| Chiliz Chain | [sablier-v2-ms-chiliz][v2-explorer-ms-chiliz] | [Studio][v2-studio-ms-chiliz] | [Network][v2-network-ms-chiliz] | -| Ethereum Sepolia | [sablier-v2-ms-sepolia][v2-explorer-ms-sepolia] | [Studio][v2-studio-ms-sepolia] | [Network][v2-network-ms-sepolia] | -| Gnosis | [sablier-v2-ms-gnosis][v2-explorer-ms-gnosis] | [Studio][v2-studio-ms-gnosis] | [Network][v2-network-ms-gnosis] | -| Lightlink | [sablier-v2-ms-lightlink\*][v2-explorer-ms-lightlink] | N/A | [Lightlink Node\*][v2-custom-ms-lightlink] | -| Optimism | [sablier-v2-ms-optimism][v2-explorer-ms-optimism] | [Studio][v2-studio-ms-optimism] | [Network][v2-network-ms-optimism] | -| Optimism Sepolia | [sablier-v2-ms-optimism-sepolia][v2-explorer-ms-optimism-sepolia] | [Studio][v2-studio-ms-optimism-sepolia] | [Network][v2-network-ms-optimism-sepolia] | -| Polygon | [sablier-v2-ms-polygon][v2-explorer-ms-polygon] | [Studio][v2-studio-ms-polygon] | [Network][v2-network-ms-polygon] | -| Scroll | [sablier-v2-ms-scroll][v2-explorer-ms-scroll] | [Studio][v2-studio-ms-scroll] | [Network][v2-network-ms-scroll] | -| zkSync | [sablier-v2-ms-zksync][v2-explorer-ms-zksync] | [Studio][v2-studio-ms-zksync] | [Network][v2-network-ms-zksync] | - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* Chain: Arbitrum */} - -[v2-network-ms-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CPCMKbUFEM8CzVbfic1y34qKbTrKADX9Du9QxsAMAwqU -[v2-explorer-ms-arbitrum]: https://thegraph.com/explorer/subgraphs/CPCMKbUFEM8CzVbfic1y34qKbTrKADX9Du9QxsAMAwqU -[v2-studio-ms-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-arbitrum/version/latest - -{/* Chain: Arbitrum Sepolia */} - -[v2-network-ms-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BBJgy9RANbViGedeWTrVpH2bwm22E3niEzWcqHPMGtna -[v2-explorer-ms-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/BBJgy9RANbViGedeWTrVpH2bwm22E3niEzWcqHPMGtna -[v2-studio-ms-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-arbitrum-sepolia/version/latest - -{/* Chain: Avalanche */} - -[v2-network-ms-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2beDuAvmwbyFzJ95HAwfqNjnYT6nEnzbEfSNhfWGMyhJ -[v2-explorer-ms-avalanche]: https://thegraph.com/explorer/subgraphs/2beDuAvmwbyFzJ95HAwfqNjnYT6nEnzbEfSNhfWGMyhJ -[v2-studio-ms-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-avalanche/version/latest - -{/* Chain: Base */} - -[v2-network-ms-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DrfN5cbvcCmpQUSc5RE9T1UxtcnMREi1Rd2PgLzDZCo3 -[v2-explorer-ms-base]: https://thegraph.com/explorer/subgraphs/DrfN5cbvcCmpQUSc5RE9T1UxtcnMREi1Rd2PgLzDZCo3 -[v2-studio-ms-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-base/version/latest - -{/* Chain: Blast */} - -[v2-network-ms-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HVqkPvCRAvbxjx6YVmkk6w6rHPrqqtiymcGiQiMKPw8f -[v2-explorer-ms-blast]: https://thegraph.com/explorer/subgraphs/HVqkPvCRAvbxjx6YVmkk6w6rHPrqqtiymcGiQiMKPw8f -[v2-studio-ms-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-blast/version/latest - -{/* Chain: BSC */} - -[v2-network-ms-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8uU9qAw9fSzdjqebymGRXWCjtZ5DQCmUA6QzRA14ARpz -[v2-explorer-ms-bsc]: https://thegraph.com/explorer/subgraphs/8uU9qAw9fSzdjqebymGRXWCjtZ5DQCmUA6QzRA14ARpz -[v2-studio-ms-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-bsc/version/latest - -{/* Chain: Chiliz */} - -[v2-network-ms-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DdhRyXwhvEmKyioCk41m6Xu9fyaprsnp4gMWZ3bHYZJd -[v2-explorer-ms-chiliz]: https://thegraph.com/explorer/subgraphs/DdhRyXwhvEmKyioCk41m6Xu9fyaprsnp4gMWZ3bHYZJd -[v2-studio-ms-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-chiliz/version/latest - -{/* Chain: Ethereum Sepolia */} - -[v2-network-ms-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8UVeHt7rHA27XZhViugaW4nStiN332dHTDWVTNBLCqPc -[v2-explorer-ms-sepolia]: https://thegraph.com/explorer/subgraphs/8UVeHt7rHA27XZhViugaW4nStiN332dHTDWVTNBLCqPc -[v2-studio-ms-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-sepolia/version/latest - -{/* Chain: Gnosis */} - -[v2-network-ms-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FViBHgu2TtaZZXspDBzACjuPYKtqVDysmH35pk3W3zJJ -[v2-explorer-ms-gnosis]: https://thegraph.com/explorer/subgraphs/FViBHgu2TtaZZXspDBzACjuPYKtqVDysmH35pk3W3zJJ -[v2-studio-ms-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-gnosis/version/latest - -{/* Chain: Lightlink */} - -[v2-explorer-ms-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-ms-lightlink/graphql -[v2-custom-ms-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-ms-lightlink - -{/* Chain: Mainnet | Ethereum */} - -[v2-explorer-ms-ethereum]: https://thegraph.com/explorer/subgraphs/FigCYTmdPtXbf4tgNiy5ZrtnYefz92hsMcwM4f9N5ZeZ -[v2-studio-ms-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms/version/latest -[v2-network-ms-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FigCYTmdPtXbf4tgNiy5ZrtnYefz92hsMcwM4f9N5ZeZ - -{/* Chain: Optimism */} - -[v2-network-ms-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/7iSmF69W4mQqtx6EfWXXn5s27Hrdh72etsPKVC9iE62U -[v2-explorer-ms-optimism]: https://thegraph.com/explorer/subgraphs/7iSmF69W4mQqtx6EfWXXn5s27Hrdh72etsPKVC9iE62U -[v2-studio-ms-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-optimism/version/latest - -{/* Chain: Optimism Sepolia */} - -[v2-network-ms-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CG5QddHKoABuN6KHZHYTHL7upg2iPTMYxi35Ey7jspkX -[v2-explorer-ms-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/CG5QddHKoABuN6KHZHYTHL7upg2iPTMYxi35Ey7jspkX -[v2-studio-ms-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-optimism-sepolia/version/latest - -{/* Chain: Polygon */} - -[v2-network-ms-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/4r2pC3iyLbzytNa5phat3SWdMEyXG8fmnf1K89D7zP2G -[v2-explorer-ms-polygon]: https://thegraph.com/explorer/subgraphs/4r2pC3iyLbzytNa5phat3SWdMEyXG8fmnf1K89D7zP2G -[v2-studio-ms-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-polygon/version/latest - -{/* Chain: Scroll */} - -[v2-network-ms-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/F1QnrgBpsVKtiVzkLisEC2PDo6cjzLoAy5HhPdFRdjW -[v2-explorer-ms-scroll]: https://thegraph.com/explorer/subgraphs/F1QnrgBpsVKtiVzkLisEC2PDo6cjzLoAy5HhPdFRdjW -[v2-studio-ms-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-scroll/version/latest - -{/* Chain: zkSync */} - -[v2-network-ms-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BboiKY7JCdznoqurdXRizL9UYD1YdQKajaj4gvUrPPEA -[v2-explorer-ms-zksync]: https://thegraph.com/explorer/subgraphs/BboiKY7JCdznoqurdXRizL9UYD1YdQKajaj4gvUrPPEA -[v2-studio-ms-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-ms-zksync/version/latest - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -[endpoint-merkle]: https://indexer.hyperindex.xyz/508d217/v1/graphql - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} diff --git a/docs/api/airdrops/_category_.json b/docs/api/airdrops/_category_.json index faccc13d..3d7e105f 100644 --- a/docs/api/airdrops/_category_.json +++ b/docs/api/airdrops/_category_.json @@ -1,5 +1,5 @@ { "collapsed": false, "label": "Airdrops", - "position": 4 + "position": 5 } diff --git a/docs/api/airdrops/envio/01-similarities.mdx b/docs/api/airdrops/envio/01-similarities.mdx deleted file mode 100644 index 4d83bbb7..00000000 --- a/docs/api/airdrops/envio/01-similarities.mdx +++ /dev/null @@ -1,16 +0,0 @@ ---- -id: "similarities" -sidebar_position: 1 -title: "Similarities" ---- - -# Similarities - -Envio indexers are designed to mirror the functionality and structure of the The Graph subgraphs. - -For an introduction into the Sablier primitives and our architectural choices, check out the -[Merkle subgraph](/api/airdrops/the-graph/entities) before reading about the `merkle-envio` indexer. - -Similar entities are used between The Graph and Envio setups, as well as between the Lockup and Merkle deployments. - -- [Entities](/api/airdrops/the-graph/entities) diff --git a/docs/api/airdrops/envio/02-queries.md b/docs/api/airdrops/envio/02-queries.md deleted file mode 100644 index 86aeb55c..00000000 --- a/docs/api/airdrops/envio/02-queries.md +++ /dev/null @@ -1,137 +0,0 @@ ---- -id: "queries" -sidebar_position: 2 -title: "Queries" ---- - -Building on top of the [entity structure](/api/airdrops/the-graph/entities) defined earlier, here are some common -GraphQL queries for fetching data from the Sablier subgraph. - -### Recent streams - -```graphql title="The 10 most recent campaigns" -Campaign( - limit: 10 - order_by: {timestamp: desc} -) { - id -} - -# OR - -Campaign( - limit: 10 - order_by: {subgraphId: desc} -) { - id -} - -``` - -### Paginated campaigns - -To query campaigns in sets/pages we can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next campaigns indexed before the last seen subgraphId" -Campaign( - limit: $first - offset: $skip - order_by: {subgraphId: desc} - where: { subgraphId: {_lt: $subgraphId} } -) { - id -} -``` - -### Campaigns by admin and asset - -To search for campaigns deployed by a certain address (e.g. a DAO or a popular token issuer), we can filter using the -`admin` field. Even more, we can use the token address to restrict the search further. - -This query includes pagination. - -:::info - -This examples is fully configured with a query "name" (and expected variables) as well as a "fragment". The fragment is -a simple GraphQL description of what a certain entity (here the campaign) looks like. - -::: - -```graphql title="The next campaigns created by an address with a certain asset" -query getAirstreams_ByAsset($first: Int!, $skip: Int!, $asset: String!, $subgraphId: BigInt!, $chainId: BigInt!) { - Campaign( - limit: $first - offset: $skip - order_by: {subgraphId: desc} - where: { - _and: [ - { asset_id: {_eq: $asset} } - { subgraphId: {_lt: $subgraphId}} - { chainId: {_eq: $chainId}} - ] - } - ) { - ...CampaignFragment - } -} - -const CampaignFragment = gql(/* GraphQL */ ` - fragment CampaignFragment on Campaign { - id - subgraphId - address - chainId - category - hash - timestamp - admin - lockup - root - expires - expiration - ipfsCID - aggregateAmount - totalRecipients - clawbackTime - streamCliff - streamCliffDuration - streamTotalDuration - streamCancelable - streamTransferable - claimedAmount - claimedCount - version - asset_id - asset { - ...AssetFragment - } - factory_id - factory { - ...FactoryFragment - } - } -`); - -``` - -### Claim actions of a user on a certain campaign - -To check if a user has claimed their share from a distribution campaign we can look for a "Claim" action performed by or -on behalf of that user. If the query yields a result, it means the uses has already claimed from the Airstream. - -```graphql title="Claim action of a user on a certain campaign" -query getClaim($campaignId: ID!, $user: String!) { - Action(where: { campaign_id: { _eq: $campaignId }, category: { _eq: "Claim" }, claimRecipient: { _eq: $uer } }) { - campaign { - id - lockup - } - claimStreamId - claimTokenId - claimRecipient - category - } -} -``` diff --git a/docs/api/airdrops/envio/_category_.json b/docs/api/airdrops/envio/_category_.json deleted file mode 100644 index d1e32289..00000000 --- a/docs/api/airdrops/envio/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "Envio", - "position": 5 -} diff --git a/docs/api/airdrops/graphql/01-schema.mdx b/docs/api/airdrops/graphql/01-schema.mdx new file mode 100644 index 00000000..46215f88 --- /dev/null +++ b/docs/api/airdrops/graphql/01-schema.mdx @@ -0,0 +1,13 @@ +--- +id: "schema" +sidebar_position: 1 +title: "Schema" +--- + +import GraphQLSchema from "../../_common/GraphQLSchema.mdx"; + + + +```graphql reference title="Sablier Airdrops - GraphQL Schema Entities" +https://github.com/sablier-labs/indexers/tree/prb-refactor/src/exports/schemas/airdrops.graphql +``` diff --git a/docs/api/airdrops/graphql/_category_.json b/docs/api/airdrops/graphql/_category_.json new file mode 100644 index 00000000..e6d0a7e0 --- /dev/null +++ b/docs/api/airdrops/graphql/_category_.json @@ -0,0 +1,5 @@ +{ + "collapsed": true, + "label": "GraphQL", + "position": 2 +} diff --git a/docs/api/airdrops/graphql/envio/_category_.yml b/docs/api/airdrops/graphql/envio/_category_.yml new file mode 100644 index 00000000..6f563191 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Envio +position: 3 diff --git a/docs/api/airdrops/graphql/envio/enums/_category_.yml b/docs/api/airdrops/graphql/envio/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/airdrops/graphql/envio/enums/action-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/action-select-column.mdx new file mode 100644 index 00000000..66c06c8f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/action-select-column.mdx @@ -0,0 +1,166 @@ +--- +id: action-select-column +title: Action_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Action" + +```graphql +enum Action_select_column { + block + campaign_id + category + chainId + claimAmount + claimIndex + claimRecipient + claimStreamId + claimTokenId + clawbackAmount + clawbackFrom + clawbackTo + db_write_timestamp + fee + from + hash + id + subgraphId + timestamp +} +``` + +### Values + +#### [Action_select_column.block](#) + +column name + +#### [Action_select_column.campaign_id](#) + +column name + +#### [Action_select_column.category](#) + +column name + +#### [Action_select_column.chainId](#) + +column name + +#### [Action_select_column.claimAmount](#) + +column name + +#### [Action_select_column.claimIndex](#) + +column name + +#### [Action_select_column.claimRecipient](#) + +column name + +#### [Action_select_column.claimStreamId](#) + +column name + +#### [Action_select_column.claimTokenId](#) + +column name + +#### [Action_select_column.clawbackAmount](#) + +column name + +#### [Action_select_column.clawbackFrom](#) + +column name + +#### [Action_select_column.clawbackTo](#) + +column name + +#### [Action_select_column.db_write_timestamp](#) + +column name + +#### [Action_select_column.fee](#) + +column name + +#### [Action_select_column.from](#) + +column name + +#### [Action_select_column.hash](#) + +column name + +#### [Action_select_column.id](#) + +column name + +#### [Action_select_column.subgraphId](#) + +column name + +#### [Action_select_column.timestamp](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/activity-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/activity-select-column.mdx new file mode 100644 index 00000000..c4433d24 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/activity-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: activity-select-column +title: Activity_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Activity" + +```graphql +enum Activity_select_column { + amount + campaign_id + claims + day + db_write_timestamp + id + timestamp +} +``` + +### Values + +#### [Activity_select_column.amount](#) + +column name + +#### [Activity_select_column.campaign_id](#) + +column name + +#### [Activity_select_column.claims](#) + +column name + +#### [Activity_select_column.day](#) + +column name + +#### [Activity_select_column.db_write_timestamp](#) + +column name + +#### [Activity_select_column.id](#) + +column name + +#### [Activity_select_column.timestamp](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/asset-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/asset-select-column.mdx new file mode 100644 index 00000000..2e8a9d97 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/asset-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: asset-select-column +title: Asset_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Asset" + +```graphql +enum Asset_select_column { + address + chainId + db_write_timestamp + decimals + id + name + symbol +} +``` + +### Values + +#### [Asset_select_column.address](#) + +column name + +#### [Asset_select_column.chainId](#) + +column name + +#### [Asset_select_column.db_write_timestamp](#) + +column name + +#### [Asset_select_column.decimals](#) + +column name + +#### [Asset_select_column.id](#) + +column name + +#### [Asset_select_column.name](#) + +column name + +#### [Asset_select_column.symbol](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx new file mode 100644 index 00000000..1821b8bd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx @@ -0,0 +1,256 @@ +--- +id: campaign-select-column +title: Campaign_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Campaign" + +```graphql +enum Campaign_select_column { + address + admin + aggregateAmount + asset_id + category + chainId + claimedAmount + claimedCount + clawbackAction_id + clawbackTime + db_write_timestamp + expiration + expires + factory_id + fee + hash + id + ipfsCID + lockup + name + nickname + root + streamCancelable + streamCliff + streamCliffDuration + streamCliffPercentage + streamInitial + streamInitialPercentage + streamShape + streamStart + streamStartTime + streamTotalDuration + streamTransferable + subgraphId + timestamp + totalRecipients + version +} +``` + +### Values + +#### [Campaign_select_column.address](#) + +column name + +#### [Campaign_select_column.admin](#) + +column name + +#### [Campaign_select_column.aggregateAmount](#) + +column name + +#### [Campaign_select_column.asset_id](#) + +column name + +#### [Campaign_select_column.category](#) + +column name + +#### [Campaign_select_column.chainId](#) + +column name + +#### [Campaign_select_column.claimedAmount](#) + +column name + +#### [Campaign_select_column.claimedCount](#) + +column name + +#### [Campaign_select_column.clawbackAction_id](#) + +column name + +#### [Campaign_select_column.clawbackTime](#) + +column name + +#### [Campaign_select_column.db_write_timestamp](#) + +column name + +#### [Campaign_select_column.expiration](#) + +column name + +#### [Campaign_select_column.expires](#) + +column name + +#### [Campaign_select_column.factory_id](#) + +column name + +#### [Campaign_select_column.fee](#) + +column name + +#### [Campaign_select_column.hash](#) + +column name + +#### [Campaign_select_column.id](#) + +column name + +#### [Campaign_select_column.ipfsCID](#) + +column name + +#### [Campaign_select_column.lockup](#) + +column name + +#### [Campaign_select_column.name](#) + +column name + +#### [Campaign_select_column.nickname](#) + +column name + +#### [Campaign_select_column.root](#) + +column name + +#### [Campaign_select_column.streamCancelable](#) + +column name + +#### [Campaign_select_column.streamCliff](#) + +column name + +#### [Campaign_select_column.streamCliffDuration](#) + +column name + +#### [Campaign_select_column.streamCliffPercentage](#) + +column name + +#### [Campaign_select_column.streamInitial](#) + +column name + +#### [Campaign_select_column.streamInitialPercentage](#) + +column name + +#### [Campaign_select_column.streamShape](#) + +column name + +#### [Campaign_select_column.streamStart](#) + +column name + +#### [Campaign_select_column.streamStartTime](#) + +column name + +#### [Campaign_select_column.streamTotalDuration](#) + +column name + +#### [Campaign_select_column.streamTransferable](#) + +column name + +#### [Campaign_select_column.subgraphId](#) + +column name + +#### [Campaign_select_column.timestamp](#) + +column name + +#### [Campaign_select_column.totalRecipients](#) + +column name + +#### [Campaign_select_column.version](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/chain-metadata-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/chain-metadata-select-column.mdx new file mode 100644 index 00000000..46a6a025 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/chain-metadata-select-column.mdx @@ -0,0 +1,126 @@ +--- +id: chain-metadata-select-column +title: chain_metadata_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "chain_metadata" + +```graphql +enum chain_metadata_select_column { + block_height + chain_id + end_block + first_event_block_number + is_hyper_sync + latest_fetched_block_number + latest_processed_block + num_batches_fetched + num_events_processed + start_block + timestamp_caught_up_to_head_or_endblock +} +``` + +### Values + +#### [chain_metadata_select_column.block_height](#) + +column name + +#### [chain_metadata_select_column.chain_id](#) + +column name + +#### [chain_metadata_select_column.end_block](#) + +column name + +#### [chain_metadata_select_column.first_event_block_number](#) + +column name + +#### [chain_metadata_select_column.is_hyper_sync](#) + +column name + +#### [chain_metadata_select_column.latest_fetched_block_number](#) + +column name + +#### [chain_metadata_select_column.latest_processed_block](#) + +column name + +#### [chain_metadata_select_column.num_batches_fetched](#) + +column name + +#### [chain_metadata_select_column.num_events_processed](#) + +column name + +#### [chain_metadata_select_column.start_block](#) + +column name + +#### [chain_metadata_select_column.timestamp_caught_up_to_head_or_endblock](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx b/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx new file mode 100644 index 00000000..79a949cb --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx @@ -0,0 +1,81 @@ +--- +id: cursor-ordering +title: cursor_ordering +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +ordering argument of a cursor + +```graphql +enum cursor_ordering { + ASC + DESC +} +``` + +### Values + +#### [cursor_ordering.ASC](#) + +ascending ordering of the cursor + +#### [cursor_ordering.DESC](#) + +descending ordering of the cursor diff --git a/docs/api/airdrops/graphql/envio/enums/dynamic-contract-registry-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/dynamic-contract-registry-select-column.mdx new file mode 100644 index 00000000..32a2bdcf --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/dynamic-contract-registry-select-column.mdx @@ -0,0 +1,121 @@ +--- +id: dynamic-contract-registry-select-column +title: dynamic_contract_registry_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "dynamic_contract_registry" + +```graphql +enum dynamic_contract_registry_select_column { + chain_id + contract_address + contract_type + id + registering_event_block_number + registering_event_block_timestamp + registering_event_contract_name + registering_event_log_index + registering_event_name + registering_event_src_address +} +``` + +### Values + +#### [dynamic_contract_registry_select_column.chain_id](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_address](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_type](#) + +column name + +#### [dynamic_contract_registry_select_column.id](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_number](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_timestamp](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_contract_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_log_index](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_src_address](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx new file mode 100644 index 00000000..fdd7a95f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx @@ -0,0 +1,86 @@ +--- +id: end-of-block-range-scanned-data-select-column +title: end_of_block_range_scanned_data_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "end_of_block_range_scanned_data" + +```graphql +enum end_of_block_range_scanned_data_select_column { + block_hash + block_number + chain_id +} +``` + +### Values + +#### [end_of_block_range_scanned_data_select_column.block_hash](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.block_number](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.chain_id](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/event-sync-state-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/event-sync-state-select-column.mdx new file mode 100644 index 00000000..b012157b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/event-sync-state-select-column.mdx @@ -0,0 +1,96 @@ +--- +id: event-sync-state-select-column +title: event_sync_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "event_sync_state" + +```graphql +enum event_sync_state_select_column { + block_number + block_timestamp + chain_id + is_pre_registering_dynamic_contracts + log_index +} +``` + +### Values + +#### [event_sync_state_select_column.block_number](#) + +column name + +#### [event_sync_state_select_column.block_timestamp](#) + +column name + +#### [event_sync_state_select_column.chain_id](#) + +column name + +#### [event_sync_state_select_column.is_pre_registering_dynamic_contracts](#) + +column name + +#### [event_sync_state_select_column.log_index](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/factory-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/factory-select-column.mdx new file mode 100644 index 00000000..69e3144a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/factory-select-column.mdx @@ -0,0 +1,101 @@ +--- +id: factory-select-column +title: Factory_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Factory" + +```graphql +enum Factory_select_column { + address + alias + chainId + db_write_timestamp + id + version +} +``` + +### Values + +#### [Factory_select_column.address](#) + +column name + +#### [Factory_select_column.alias](#) + +column name + +#### [Factory_select_column.chainId](#) + +column name + +#### [Factory_select_column.db_write_timestamp](#) + +column name + +#### [Factory_select_column.id](#) + +column name + +#### [Factory_select_column.version](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/order-by.mdx b/docs/api/airdrops/graphql/envio/enums/order-by.mdx new file mode 100644 index 00000000..bf80959b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/order-by.mdx @@ -0,0 +1,101 @@ +--- +id: order-by +title: order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +column ordering options + +```graphql +enum order_by { + asc + asc_nulls_first + asc_nulls_last + desc + desc_nulls_first + desc_nulls_last +} +``` + +### Values + +#### [order_by.asc](#) + +in ascending order, nulls last + +#### [order_by.asc_nulls_first](#) + +in ascending order, nulls first + +#### [order_by.asc_nulls_last](#) + +in ascending order, nulls last + +#### [order_by.desc](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_first](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_last](#) + +in descending order, nulls last diff --git a/docs/api/airdrops/graphql/envio/enums/persisted-state-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/persisted-state-select-column.mdx new file mode 100644 index 00000000..3a716002 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/persisted-state-select-column.mdx @@ -0,0 +1,101 @@ +--- +id: persisted-state-select-column +title: persisted_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "persisted_state" + +```graphql +enum persisted_state_select_column { + abi_files_hash + config_hash + envio_version + handler_files_hash + id + schema_hash +} +``` + +### Values + +#### [persisted_state_select_column.abi_files_hash](#) + +column name + +#### [persisted_state_select_column.config_hash](#) + +column name + +#### [persisted_state_select_column.envio_version](#) + +column name + +#### [persisted_state_select_column.handler_files_hash](#) + +column name + +#### [persisted_state_select_column.id](#) + +column name + +#### [persisted_state_select_column.schema_hash](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/raw-events-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/raw-events-select-column.mdx new file mode 100644 index 00000000..a37689ff --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/raw-events-select-column.mdx @@ -0,0 +1,141 @@ +--- +id: raw-events-select-column +title: raw_events_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "raw_events" + +```graphql +enum raw_events_select_column { + block_fields + block_hash + block_number + block_timestamp + chain_id + contract_name + db_write_timestamp + event_id + event_name + log_index + params + serial + src_address + transaction_fields +} +``` + +### Values + +#### [raw_events_select_column.block_fields](#) + +column name + +#### [raw_events_select_column.block_hash](#) + +column name + +#### [raw_events_select_column.block_number](#) + +column name + +#### [raw_events_select_column.block_timestamp](#) + +column name + +#### [raw_events_select_column.chain_id](#) + +column name + +#### [raw_events_select_column.contract_name](#) + +column name + +#### [raw_events_select_column.db_write_timestamp](#) + +column name + +#### [raw_events_select_column.event_id](#) + +column name + +#### [raw_events_select_column.event_name](#) + +column name + +#### [raw_events_select_column.log_index](#) + +column name + +#### [raw_events_select_column.params](#) + +column name + +#### [raw_events_select_column.serial](#) + +column name + +#### [raw_events_select_column.src_address](#) + +column name + +#### [raw_events_select_column.transaction_fields](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/tranche-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/tranche-select-column.mdx new file mode 100644 index 00000000..93cf0381 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/tranche-select-column.mdx @@ -0,0 +1,121 @@ +--- +id: tranche-select-column +title: Tranche_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Tranche" + +```graphql +enum Tranche_select_column { + campaign_id + db_write_timestamp + duration + endDuration + endPercentage + id + percentage + position + startDuration + startPercentage +} +``` + +### Values + +#### [Tranche_select_column.campaign_id](#) + +column name + +#### [Tranche_select_column.db_write_timestamp](#) + +column name + +#### [Tranche_select_column.duration](#) + +column name + +#### [Tranche_select_column.endDuration](#) + +column name + +#### [Tranche_select_column.endPercentage](#) + +column name + +#### [Tranche_select_column.id](#) + +column name + +#### [Tranche_select_column.percentage](#) + +column name + +#### [Tranche_select_column.position](#) + +column name + +#### [Tranche_select_column.startDuration](#) + +column name + +#### [Tranche_select_column.startPercentage](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/enums/watcher-select-column.mdx b/docs/api/airdrops/graphql/envio/enums/watcher-select-column.mdx new file mode 100644 index 00000000..4a2dd5e4 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/enums/watcher-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: watcher-select-column +title: Watcher_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +select columns of table "Watcher" + +```graphql +enum Watcher_select_column { + actionIndex + campaignIndex + chainId + db_write_timestamp + id + initialized + logs +} +``` + +### Values + +#### [Watcher_select_column.actionIndex](#) + +column name + +#### [Watcher_select_column.campaignIndex](#) + +column name + +#### [Watcher_select_column.chainId](#) + +column name + +#### [Watcher_select_column.db_write_timestamp](#) + +column name + +#### [Watcher_select_column.id](#) + +column name + +#### [Watcher_select_column.initialized](#) + +column name + +#### [Watcher_select_column.logs](#) + +column name diff --git a/docs/api/airdrops/graphql/envio/graphql-overview.md b/docs/api/airdrops/graphql/envio/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/airdrops/graphql/envio/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/airdrops/graphql/envio/inputs/_category_.yml b/docs/api/airdrops/graphql/envio/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/airdrops/graphql/envio/inputs/action-aggregate-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-aggregate-order-by.mdx new file mode 100644 index 00000000..21346cc1 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: action-aggregate-order-by +title: Action_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by aggregate values of table "Action" + +```graphql +input Action_aggregate_order_by { + avg: Action_avg_order_by + count: order_by + max: Action_max_order_by + min: Action_min_order_by + stddev: Action_stddev_order_by + stddev_pop: Action_stddev_pop_order_by + stddev_samp: Action_stddev_samp_order_by + sum: Action_sum_order_by + var_pop: Action_var_pop_order_by + var_samp: Action_var_samp_order_by + variance: Action_variance_order_by +} +``` + +### Fields + +#### [Action_aggregate_order_by.avg](#)[Action_avg_order_by](/docs/api/airdrops/graphql/envio/inputs/action-avg-order-by.mdx) + +#### [Action_aggregate_order_by.count](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_aggregate_order_by.max](#)[Action_max_order_by](/docs/api/airdrops/graphql/envio/inputs/action-max-order-by.mdx) + +#### [Action_aggregate_order_by.min](#)[Action_min_order_by](/docs/api/airdrops/graphql/envio/inputs/action-min-order-by.mdx) + +#### [Action_aggregate_order_by.stddev](#)[Action_stddev_order_by](/docs/api/airdrops/graphql/envio/inputs/action-stddev-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_pop](#)[Action_stddev_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/action-stddev-pop-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_samp](#)[Action_stddev_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/action-stddev-samp-order-by.mdx) + +#### [Action_aggregate_order_by.sum](#)[Action_sum_order_by](/docs/api/airdrops/graphql/envio/inputs/action-sum-order-by.mdx) + +#### [Action_aggregate_order_by.var_pop](#)[Action_var_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/action-var-pop-order-by.mdx) + +#### [Action_aggregate_order_by.var_samp](#)[Action_var_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/action-var-samp-order-by.mdx) + +#### [Action_aggregate_order_by.variance](#)[Action_variance_order_by](/docs/api/airdrops/graphql/envio/inputs/action-variance-order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-avg-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-avg-order-by.mdx new file mode 100644 index 00000000..b660ee96 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-avg-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-avg-order-by +title: Action_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by avg() on columns of table "Action" + +```graphql +input Action_avg_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_avg_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx new file mode 100644 index 00000000..ae186916 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx @@ -0,0 +1,140 @@ +--- +id: action-bool-exp +title: Action_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Action". All fields are combined with a logical 'AND'. + +```graphql +input Action_bool_exp { + _and: [Action_bool_exp!] + _not: Action_bool_exp + _or: [Action_bool_exp!] + block: numeric_comparison_exp + campaign: Campaign_bool_exp + campaign_id: String_comparison_exp + category: actioncategory_comparison_exp + chainId: numeric_comparison_exp + claimAmount: numeric_comparison_exp + claimIndex: numeric_comparison_exp + claimRecipient: String_comparison_exp + claimStreamId: String_comparison_exp + claimTokenId: numeric_comparison_exp + clawbackAmount: numeric_comparison_exp + clawbackFrom: String_comparison_exp + clawbackTo: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + fee: numeric_comparison_exp + from: String_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Action_bool_exp.\_and](#)[[Action_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_not](#)[Action_bool_exp](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_or](#)[[Action_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.block](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.campaign](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Action_bool_exp.campaign_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.category](#)[actioncategory_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/actioncategory-comparison-exp.mdx) + +#### [Action_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.claimAmount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.claimIndex](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.claimRecipient](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.claimStreamId](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.claimTokenId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.clawbackAmount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.clawbackFrom](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.clawbackTo](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Action_bool_exp.fee](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.from](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-max-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-max-order-by.mdx new file mode 100644 index 00000000..98715a86 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-max-order-by.mdx @@ -0,0 +1,128 @@ +--- +id: action-max-order-by +title: Action_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by max() on columns of table "Action" + +```graphql +input Action_max_order_by { + block: order_by + campaign_id: order_by + category: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimRecipient: order_by + claimStreamId: order_by + claimTokenId: order_by + clawbackAmount: order_by + clawbackFrom: order_by + clawbackTo: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_max_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.claimRecipient](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.claimStreamId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.clawbackFrom](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.clawbackTo](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.from](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-min-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-min-order-by.mdx new file mode 100644 index 00000000..0ab165ca --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-min-order-by.mdx @@ -0,0 +1,128 @@ +--- +id: action-min-order-by +title: Action_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by min() on columns of table "Action" + +```graphql +input Action_min_order_by { + block: order_by + campaign_id: order_by + category: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimRecipient: order_by + claimStreamId: order_by + claimTokenId: order_by + clawbackAmount: order_by + clawbackFrom: order_by + clawbackTo: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_min_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.claimRecipient](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.claimStreamId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.clawbackFrom](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.clawbackTo](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.from](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx new file mode 100644 index 00000000..034e3453 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx @@ -0,0 +1,131 @@ +--- +id: action-order-by +title: Action_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Action". + +```graphql +input Action_order_by { + block: order_by + campaign: Campaign_order_by + campaign_id: order_by + category: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimRecipient: order_by + claimStreamId: order_by + claimTokenId: order_by + clawbackAmount: order_by + clawbackFrom: order_by + clawbackTo: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.campaign](#)[Campaign_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +#### [Action_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.claimRecipient](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.claimStreamId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.clawbackFrom](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.clawbackTo](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.from](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-stddev-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-stddev-order-by.mdx new file mode 100644 index 00000000..8ca54b16 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-stddev-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-stddev-order-by +title: Action_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev() on columns of table "Action" + +```graphql +input Action_stddev_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-stddev-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-stddev-pop-order-by.mdx new file mode 100644 index 00000000..c8eb9ea9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-stddev-pop-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-stddev-pop-order-by +title: Action_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_pop() on columns of table "Action" + +```graphql +input Action_stddev_pop_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_pop_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-stddev-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-stddev-samp-order-by.mdx new file mode 100644 index 00000000..59ec3f59 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-stddev-samp-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-stddev-samp-order-by +title: Action_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_samp() on columns of table "Action" + +```graphql +input Action_stddev_samp_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_samp_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-input.mdx new file mode 100644 index 00000000..be02ce2a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: action-stream-cursor-input +title: Action_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Action" + +```graphql +input Action_stream_cursor_input { + initial_value: Action_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Action_stream_cursor_input.initial_value](#)[Action_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Action_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-value-input.mdx new file mode 100644 index 00000000..08e4b0e7 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-stream-cursor-value-input.mdx @@ -0,0 +1,128 @@ +--- +id: action-stream-cursor-value-input +title: Action_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Action_stream_cursor_value_input { + block: numeric + campaign_id: String + category: actioncategory + chainId: numeric + claimAmount: numeric + claimIndex: numeric + claimRecipient: String + claimStreamId: String + claimTokenId: numeric + clawbackAmount: numeric + clawbackFrom: String + clawbackTo: String + db_write_timestamp: timestamp + fee: numeric + from: String + hash: String + id: String + subgraphId: numeric + timestamp: numeric +} +``` + +### Fields + +#### [Action_stream_cursor_value_input.block](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.campaign_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.category](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [Action_stream_cursor_value_input.chainId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.claimAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.claimIndex](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.claimRecipient](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.claimStreamId](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.claimTokenId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.clawbackAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.clawbackFrom](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.clawbackTo](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Action_stream_cursor_value_input.fee](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.from](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-sum-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-sum-order-by.mdx new file mode 100644 index 00000000..7f940416 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-sum-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-sum-order-by +title: Action_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by sum() on columns of table "Action" + +```graphql +input Action_sum_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_sum_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-var-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-var-pop-order-by.mdx new file mode 100644 index 00000000..b93755d2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-var-pop-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-var-pop-order-by +title: Action_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_pop() on columns of table "Action" + +```graphql +input Action_var_pop_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_pop_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-var-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-var-samp-order-by.mdx new file mode 100644 index 00000000..02804f60 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-var-samp-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-var-samp-order-by +title: Action_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_samp() on columns of table "Action" + +```graphql +input Action_var_samp_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_samp_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/action-variance-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/action-variance-order-by.mdx new file mode 100644 index 00000000..b5747260 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/action-variance-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: action-variance-order-by +title: Action_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by variance() on columns of table "Action" + +```graphql +input Action_variance_order_by { + block: order_by + chainId: order_by + claimAmount: order_by + claimIndex: order_by + claimTokenId: order_by + clawbackAmount: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_variance_order_by.block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.claimAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.claimIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.claimTokenId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.clawbackAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/actioncategory-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/actioncategory-comparison-exp.mdx new file mode 100644 index 00000000..bb16b777 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/actioncategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: actioncategory-comparison-exp +title: actioncategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "actioncategory". All fields are combined with logical 'AND'. + +```graphql +input actioncategory_comparison_exp { + _eq: actioncategory + _gt: actioncategory + _gte: actioncategory + _in: [actioncategory!] + _is_null: Boolean + _lt: actioncategory + _lte: actioncategory + _neq: actioncategory + _nin: [actioncategory!] +} +``` + +### Fields + +#### [actioncategory_comparison_exp.\_eq](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gt](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gte](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_in](#)[[actioncategory!]](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [actioncategory_comparison_exp.\_lt](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_lte](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_neq](#)[actioncategory](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_nin](#)[[actioncategory!]](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-aggregate-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-aggregate-order-by.mdx new file mode 100644 index 00000000..6886dfd6 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: activity-aggregate-order-by +title: Activity_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by aggregate values of table "Activity" + +```graphql +input Activity_aggregate_order_by { + avg: Activity_avg_order_by + count: order_by + max: Activity_max_order_by + min: Activity_min_order_by + stddev: Activity_stddev_order_by + stddev_pop: Activity_stddev_pop_order_by + stddev_samp: Activity_stddev_samp_order_by + sum: Activity_sum_order_by + var_pop: Activity_var_pop_order_by + var_samp: Activity_var_samp_order_by + variance: Activity_variance_order_by +} +``` + +### Fields + +#### [Activity_aggregate_order_by.avg](#)[Activity_avg_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-avg-order-by.mdx) + +#### [Activity_aggregate_order_by.count](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_aggregate_order_by.max](#)[Activity_max_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-max-order-by.mdx) + +#### [Activity_aggregate_order_by.min](#)[Activity_min_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-min-order-by.mdx) + +#### [Activity_aggregate_order_by.stddev](#)[Activity_stddev_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-stddev-order-by.mdx) + +#### [Activity_aggregate_order_by.stddev_pop](#)[Activity_stddev_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-stddev-pop-order-by.mdx) + +#### [Activity_aggregate_order_by.stddev_samp](#)[Activity_stddev_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-stddev-samp-order-by.mdx) + +#### [Activity_aggregate_order_by.sum](#)[Activity_sum_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-sum-order-by.mdx) + +#### [Activity_aggregate_order_by.var_pop](#)[Activity_var_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-var-pop-order-by.mdx) + +#### [Activity_aggregate_order_by.var_samp](#)[Activity_var_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-var-samp-order-by.mdx) + +#### [Activity_aggregate_order_by.variance](#)[Activity_variance_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-variance-order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-avg-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-avg-order-by.mdx new file mode 100644 index 00000000..844969cf --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-avg-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-avg-order-by +title: Activity_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by avg() on columns of table "Activity" + +```graphql +input Activity_avg_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_avg_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_avg_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_avg_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_avg_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx new file mode 100644 index 00000000..80ce9c09 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx @@ -0,0 +1,104 @@ +--- +id: activity-bool-exp +title: Activity_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Activity". All fields are combined with a logical 'AND'. + +```graphql +input Activity_bool_exp { + _and: [Activity_bool_exp!] + _not: Activity_bool_exp + _or: [Activity_bool_exp!] + amount: numeric_comparison_exp + campaign: Campaign_bool_exp + campaign_id: String_comparison_exp + claims: numeric_comparison_exp + day: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Activity_bool_exp.\_and](#)[[Activity_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +#### [Activity_bool_exp.\_not](#)[Activity_bool_exp](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +#### [Activity_bool_exp.\_or](#)[[Activity_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +#### [Activity_bool_exp.amount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Activity_bool_exp.campaign](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Activity_bool_exp.campaign_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Activity_bool_exp.claims](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Activity_bool_exp.day](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Activity_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Activity_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Activity_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-max-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-max-order-by.mdx new file mode 100644 index 00000000..0252efe3 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-max-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: activity-max-order-by +title: Activity_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by max() on columns of table "Activity" + +```graphql +input Activity_max_order_by { + amount: order_by + campaign_id: order_by + claims: order_by + day: order_by + db_write_timestamp: order_by + id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_max_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_max_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-min-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-min-order-by.mdx new file mode 100644 index 00000000..f714c52f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-min-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: activity-min-order-by +title: Activity_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by min() on columns of table "Activity" + +```graphql +input Activity_min_order_by { + amount: order_by + campaign_id: order_by + claims: order_by + day: order_by + db_write_timestamp: order_by + id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_min_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_min_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-order-by.mdx new file mode 100644 index 00000000..6ae9b31a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: activity-order-by +title: Activity_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Activity". + +```graphql +input Activity_order_by { + amount: order_by + campaign: Campaign_order_by + campaign_id: order_by + claims: order_by + day: order_by + db_write_timestamp: order_by + id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.campaign](#)[Campaign_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +#### [Activity_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-stddev-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-order-by.mdx new file mode 100644 index 00000000..f2172da8 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-stddev-order-by +title: Activity_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev() on columns of table "Activity" + +```graphql +input Activity_stddev_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_stddev_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-stddev-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-pop-order-by.mdx new file mode 100644 index 00000000..3eec0cae --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-pop-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-stddev-pop-order-by +title: Activity_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_pop() on columns of table "Activity" + +```graphql +input Activity_stddev_pop_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_stddev_pop_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_pop_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_pop_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-stddev-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-samp-order-by.mdx new file mode 100644 index 00000000..0497fbfc --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-stddev-samp-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-stddev-samp-order-by +title: Activity_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_samp() on columns of table "Activity" + +```graphql +input Activity_stddev_samp_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_stddev_samp_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_samp_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_samp_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-input.mdx new file mode 100644 index 00000000..b858df54 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: activity-stream-cursor-input +title: Activity_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Activity" + +```graphql +input Activity_stream_cursor_input { + initial_value: Activity_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Activity_stream_cursor_input.initial_value](#)[Activity_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Activity_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-value-input.mdx new file mode 100644 index 00000000..ac762149 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: activity-stream-cursor-value-input +title: Activity_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Activity_stream_cursor_value_input { + amount: numeric + campaign_id: String + claims: numeric + day: numeric + db_write_timestamp: timestamp + id: String + timestamp: numeric +} +``` + +### Fields + +#### [Activity_stream_cursor_value_input.amount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity_stream_cursor_value_input.campaign_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Activity_stream_cursor_value_input.claims](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity_stream_cursor_value_input.day](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Activity_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Activity_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-sum-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-sum-order-by.mdx new file mode 100644 index 00000000..5b3baf49 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-sum-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-sum-order-by +title: Activity_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by sum() on columns of table "Activity" + +```graphql +input Activity_sum_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_sum_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_sum_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_sum_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_sum_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-var-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-var-pop-order-by.mdx new file mode 100644 index 00000000..bd6b8828 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-var-pop-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-var-pop-order-by +title: Activity_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_pop() on columns of table "Activity" + +```graphql +input Activity_var_pop_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_var_pop_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_pop_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_pop_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-var-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-var-samp-order-by.mdx new file mode 100644 index 00000000..ea96081c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-var-samp-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-var-samp-order-by +title: Activity_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_samp() on columns of table "Activity" + +```graphql +input Activity_var_samp_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_var_samp_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_samp_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_samp_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_var_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/activity-variance-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/activity-variance-order-by.mdx new file mode 100644 index 00000000..a85beef8 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/activity-variance-order-by.mdx @@ -0,0 +1,83 @@ +--- +id: activity-variance-order-by +title: Activity_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by variance() on columns of table "Activity" + +```graphql +input Activity_variance_order_by { + amount: order_by + claims: order_by + day: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Activity_variance_order_by.amount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_variance_order_by.claims](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_variance_order_by.day](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Activity_variance_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx new file mode 100644 index 00000000..268e6bd2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx @@ -0,0 +1,104 @@ +--- +id: asset-bool-exp +title: Asset_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Asset". All fields are combined with a logical 'AND'. + +```graphql +input Asset_bool_exp { + _and: [Asset_bool_exp!] + _not: Asset_bool_exp + _or: [Asset_bool_exp!] + address: String_comparison_exp + campaigns: Campaign_bool_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + decimals: numeric_comparison_exp + id: String_comparison_exp + name: String_comparison_exp + symbol: String_comparison_exp +} +``` + +### Fields + +#### [Asset_bool_exp.\_and](#)[[Asset_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_not](#)[Asset_bool_exp](/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_or](#)[[Asset_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.campaigns](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Asset_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Asset_bool_exp.decimals](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.symbol](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/asset-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/asset-order-by.mdx new file mode 100644 index 00000000..7db5d0fb --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/asset-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: asset-order-by +title: Asset_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Asset". + +```graphql +input Asset_order_by { + address: order_by + campaigns_aggregate: Campaign_aggregate_order_by + chainId: order_by + db_write_timestamp: order_by + decimals: order_by + id: order_by + name: order_by + symbol: order_by +} +``` + +### Fields + +#### [Asset_order_by.address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.campaigns_aggregate](#)[Campaign_aggregate_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-aggregate-order-by.mdx) + +#### [Asset_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.decimals](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.symbol](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-input.mdx new file mode 100644 index 00000000..43f4cca2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: asset-stream-cursor-input +title: Asset_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Asset" + +```graphql +input Asset_stream_cursor_input { + initial_value: Asset_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Asset_stream_cursor_input.initial_value](#)[Asset_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Asset_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-value-input.mdx new file mode 100644 index 00000000..47c15b56 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/asset-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: asset-stream-cursor-value-input +title: Asset_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Asset_stream_cursor_value_input { + address: String + chainId: numeric + db_write_timestamp: timestamp + decimals: numeric + id: String + name: String + symbol: String +} +``` + +### Fields + +#### [Asset_stream_cursor_value_input.address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.chainId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Asset_stream_cursor_value_input.decimals](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.symbol](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx new file mode 100644 index 00000000..3c7a7b90 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: boolean-comparison-exp +title: Boolean_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. + +```graphql +input Boolean_comparison_exp { + _eq: Boolean + _gt: Boolean + _gte: Boolean + _in: [Boolean!] + _is_null: Boolean + _lt: Boolean + _lte: Boolean + _neq: Boolean + _nin: [Boolean!] +} +``` + +### Fields + +#### [Boolean_comparison_exp.\_eq](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gt](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gte](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_in](#)[[Boolean!]](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lt](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lte](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_neq](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_nin](#)[[Boolean!]](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-aggregate-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-aggregate-order-by.mdx new file mode 100644 index 00000000..b6c947d9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: campaign-aggregate-order-by +title: Campaign_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by aggregate values of table "Campaign" + +```graphql +input Campaign_aggregate_order_by { + avg: Campaign_avg_order_by + count: order_by + max: Campaign_max_order_by + min: Campaign_min_order_by + stddev: Campaign_stddev_order_by + stddev_pop: Campaign_stddev_pop_order_by + stddev_samp: Campaign_stddev_samp_order_by + sum: Campaign_sum_order_by + var_pop: Campaign_var_pop_order_by + var_samp: Campaign_var_samp_order_by + variance: Campaign_variance_order_by +} +``` + +### Fields + +#### [Campaign_aggregate_order_by.avg](#)[Campaign_avg_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-avg-order-by.mdx) + +#### [Campaign_aggregate_order_by.count](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_aggregate_order_by.max](#)[Campaign_max_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-max-order-by.mdx) + +#### [Campaign_aggregate_order_by.min](#)[Campaign_min_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-min-order-by.mdx) + +#### [Campaign_aggregate_order_by.stddev](#)[Campaign_stddev_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-order-by.mdx) + +#### [Campaign_aggregate_order_by.stddev_pop](#)[Campaign_stddev_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-pop-order-by.mdx) + +#### [Campaign_aggregate_order_by.stddev_samp](#)[Campaign_stddev_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-samp-order-by.mdx) + +#### [Campaign_aggregate_order_by.sum](#)[Campaign_sum_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-sum-order-by.mdx) + +#### [Campaign_aggregate_order_by.var_pop](#)[Campaign_var_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-var-pop-order-by.mdx) + +#### [Campaign_aggregate_order_by.var_samp](#)[Campaign_var_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-var-samp-order-by.mdx) + +#### [Campaign_aggregate_order_by.variance](#)[Campaign_variance_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-variance-order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-avg-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-avg-order-by.mdx new file mode 100644 index 00000000..5846b3b4 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-avg-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-avg-order-by +title: Campaign_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by avg() on columns of table "Campaign" + +```graphql +input Campaign_avg_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_avg_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_avg_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx new file mode 100644 index 00000000..073411a0 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx @@ -0,0 +1,209 @@ +--- +id: campaign-bool-exp +title: Campaign_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Campaign". All fields are combined with a logical 'AND'. + +```graphql +input Campaign_bool_exp { + _and: [Campaign_bool_exp!] + _not: Campaign_bool_exp + _or: [Campaign_bool_exp!] + actions: Action_bool_exp + activities: Activity_bool_exp + address: String_comparison_exp + admin: String_comparison_exp + aggregateAmount: numeric_comparison_exp + asset: Asset_bool_exp + asset_id: String_comparison_exp + category: campaigncategory_comparison_exp + chainId: numeric_comparison_exp + claimedAmount: numeric_comparison_exp + claimedCount: numeric_comparison_exp + clawbackAction: Action_bool_exp + clawbackAction_id: String_comparison_exp + clawbackTime: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + expiration: numeric_comparison_exp + expires: Boolean_comparison_exp + factory: Factory_bool_exp + factory_id: String_comparison_exp + fee: numeric_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + ipfsCID: String_comparison_exp + lockup: String_comparison_exp + name: String_comparison_exp + nickname: String_comparison_exp + root: String_comparison_exp + streamCancelable: Boolean_comparison_exp + streamCliff: Boolean_comparison_exp + streamCliffDuration: numeric_comparison_exp + streamCliffPercentage: numeric_comparison_exp + streamInitial: Boolean_comparison_exp + streamInitialPercentage: numeric_comparison_exp + streamShape: String_comparison_exp + streamStart: Boolean_comparison_exp + streamStartTime: numeric_comparison_exp + streamTotalDuration: numeric_comparison_exp + streamTranches: Tranche_bool_exp + streamTransferable: Boolean_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp + totalRecipients: numeric_comparison_exp + version: String_comparison_exp +} +``` + +### Fields + +#### [Campaign_bool_exp.\_and](#)[[Campaign_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Campaign_bool_exp.\_not](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Campaign_bool_exp.\_or](#)[[Campaign_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Campaign_bool_exp.actions](#)[Action_bool_exp](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Campaign_bool_exp.activities](#)[Activity_bool_exp](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +#### [Campaign_bool_exp.address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.admin](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.aggregateAmount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.asset](#)[Asset_bool_exp](/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Campaign_bool_exp.asset_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.category](#)[campaigncategory_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/campaigncategory-comparison-exp.mdx) + +#### [Campaign_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.claimedAmount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.claimedCount](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.clawbackAction](#)[Action_bool_exp](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Campaign_bool_exp.clawbackAction_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.clawbackTime](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Campaign_bool_exp.expiration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.expires](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.factory](#)[Factory_bool_exp](/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx) + +#### [Campaign_bool_exp.factory_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.fee](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.ipfsCID](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.lockup](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.nickname](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.root](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamCancelable](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamCliff](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamCliffDuration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamCliffPercentage](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamInitial](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamInitialPercentage](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamShape](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamStart](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamStartTime](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamTotalDuration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.streamTranches](#)[Tranche_bool_exp](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Campaign_bool_exp.streamTransferable](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Campaign_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.totalRecipients](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Campaign_bool_exp.version](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-max-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-max-order-by.mdx new file mode 100644 index 00000000..085a49ff --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-max-order-by.mdx @@ -0,0 +1,164 @@ +--- +id: campaign-max-order-by +title: Campaign_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by max() on columns of table "Campaign" + +```graphql +input Campaign_max_order_by { + address: order_by + admin: order_by + aggregateAmount: order_by + asset_id: order_by + category: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackAction_id: order_by + clawbackTime: order_by + db_write_timestamp: order_by + expiration: order_by + factory_id: order_by + fee: order_by + hash: order_by + id: order_by + ipfsCID: order_by + lockup: order_by + name: order_by + nickname: order_by + root: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamShape: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by + version: order_by +} +``` + +### Fields + +#### [Campaign_max_order_by.address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.admin](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.asset_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.clawbackAction_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.factory_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.ipfsCID](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.lockup](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.nickname](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.root](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamShape](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_max_order_by.version](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-min-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-min-order-by.mdx new file mode 100644 index 00000000..6521458e --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-min-order-by.mdx @@ -0,0 +1,164 @@ +--- +id: campaign-min-order-by +title: Campaign_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by min() on columns of table "Campaign" + +```graphql +input Campaign_min_order_by { + address: order_by + admin: order_by + aggregateAmount: order_by + asset_id: order_by + category: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackAction_id: order_by + clawbackTime: order_by + db_write_timestamp: order_by + expiration: order_by + factory_id: order_by + fee: order_by + hash: order_by + id: order_by + ipfsCID: order_by + lockup: order_by + name: order_by + nickname: order_by + root: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamShape: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by + version: order_by +} +``` + +### Fields + +#### [Campaign_min_order_by.address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.admin](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.asset_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.clawbackAction_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.factory_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.ipfsCID](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.lockup](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.nickname](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.root](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamShape](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_min_order_by.version](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx new file mode 100644 index 00000000..a8244de2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx @@ -0,0 +1,200 @@ +--- +id: campaign-order-by +title: Campaign_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Campaign". + +```graphql +input Campaign_order_by { + actions_aggregate: Action_aggregate_order_by + activities_aggregate: Activity_aggregate_order_by + address: order_by + admin: order_by + aggregateAmount: order_by + asset: Asset_order_by + asset_id: order_by + category: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackAction: Action_order_by + clawbackAction_id: order_by + clawbackTime: order_by + db_write_timestamp: order_by + expiration: order_by + expires: order_by + factory: Factory_order_by + factory_id: order_by + fee: order_by + hash: order_by + id: order_by + ipfsCID: order_by + lockup: order_by + name: order_by + nickname: order_by + root: order_by + streamCancelable: order_by + streamCliff: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitial: order_by + streamInitialPercentage: order_by + streamShape: order_by + streamStart: order_by + streamStartTime: order_by + streamTotalDuration: order_by + streamTranches_aggregate: Tranche_aggregate_order_by + streamTransferable: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by + version: order_by +} +``` + +### Fields + +#### [Campaign_order_by.actions_aggregate](#)[Action_aggregate_order_by](/docs/api/airdrops/graphql/envio/inputs/action-aggregate-order-by.mdx) + +#### [Campaign_order_by.activities_aggregate](#)[Activity_aggregate_order_by](/docs/api/airdrops/graphql/envio/inputs/activity-aggregate-order-by.mdx) + +#### [Campaign_order_by.address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.admin](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.asset](#)[Asset_order_by](/docs/api/airdrops/graphql/envio/inputs/asset-order-by.mdx) + +#### [Campaign_order_by.asset_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.category](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.clawbackAction](#)[Action_order_by](/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx) + +#### [Campaign_order_by.clawbackAction_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.expires](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.factory](#)[Factory_order_by](/docs/api/airdrops/graphql/envio/inputs/factory-order-by.mdx) + +#### [Campaign_order_by.factory_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.ipfsCID](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.lockup](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.nickname](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.root](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamCancelable](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamCliff](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamInitial](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamShape](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamStart](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.streamTranches_aggregate](#)[Tranche_aggregate_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-aggregate-order-by.mdx) + +#### [Campaign_order_by.streamTransferable](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_order_by.version](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-order-by.mdx new file mode 100644 index 00000000..3c75fb0f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-stddev-order-by +title: Campaign_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev() on columns of table "Campaign" + +```graphql +input Campaign_stddev_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_stddev_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-pop-order-by.mdx new file mode 100644 index 00000000..27be4e1f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-pop-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-stddev-pop-order-by +title: Campaign_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_pop() on columns of table "Campaign" + +```graphql +input Campaign_stddev_pop_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_stddev_pop_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_pop_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-samp-order-by.mdx new file mode 100644 index 00000000..eefa866c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-stddev-samp-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-stddev-samp-order-by +title: Campaign_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_samp() on columns of table "Campaign" + +```graphql +input Campaign_stddev_samp_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_stddev_samp_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_stddev_samp_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-input.mdx new file mode 100644 index 00000000..5ab9f75c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: campaign-stream-cursor-input +title: Campaign_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Campaign" + +```graphql +input Campaign_stream_cursor_input { + initial_value: Campaign_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Campaign_stream_cursor_input.initial_value](#)[Campaign_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Campaign_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-value-input.mdx new file mode 100644 index 00000000..10bd91cd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-stream-cursor-value-input.mdx @@ -0,0 +1,182 @@ +--- +id: campaign-stream-cursor-value-input +title: Campaign_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Campaign_stream_cursor_value_input { + address: String + admin: String + aggregateAmount: numeric + asset_id: String + category: campaigncategory + chainId: numeric + claimedAmount: numeric + claimedCount: numeric + clawbackAction_id: String + clawbackTime: numeric + db_write_timestamp: timestamp + expiration: numeric + expires: Boolean + factory_id: String + fee: numeric + hash: String + id: String + ipfsCID: String + lockup: String + name: String + nickname: String + root: String + streamCancelable: Boolean + streamCliff: Boolean + streamCliffDuration: numeric + streamCliffPercentage: numeric + streamInitial: Boolean + streamInitialPercentage: numeric + streamShape: String + streamStart: Boolean + streamStartTime: numeric + streamTotalDuration: numeric + streamTransferable: Boolean + subgraphId: numeric + timestamp: numeric + totalRecipients: numeric + version: String +} +``` + +### Fields + +#### [Campaign_stream_cursor_value_input.address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.admin](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.aggregateAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.asset_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.category](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [Campaign_stream_cursor_value_input.chainId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.claimedAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.claimedCount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.clawbackAction_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.clawbackTime](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Campaign_stream_cursor_value_input.expiration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.expires](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.factory_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.fee](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.ipfsCID](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.lockup](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.nickname](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.root](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.streamCancelable](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.streamCliff](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.streamCliffDuration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.streamCliffPercentage](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.streamInitial](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.streamInitialPercentage](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.streamShape](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign_stream_cursor_value_input.streamStart](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.streamStartTime](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.streamTotalDuration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.streamTransferable](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.totalRecipients](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign_stream_cursor_value_input.version](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-sum-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-sum-order-by.mdx new file mode 100644 index 00000000..4192439e --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-sum-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-sum-order-by +title: Campaign_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by sum() on columns of table "Campaign" + +```graphql +input Campaign_sum_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_sum_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_sum_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-var-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-var-pop-order-by.mdx new file mode 100644 index 00000000..dc8c525c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-var-pop-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-var-pop-order-by +title: Campaign_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_pop() on columns of table "Campaign" + +```graphql +input Campaign_var_pop_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_var_pop_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_pop_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-var-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-var-samp-order-by.mdx new file mode 100644 index 00000000..e9c0f14e --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-var-samp-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-var-samp-order-by +title: Campaign_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_samp() on columns of table "Campaign" + +```graphql +input Campaign_var_samp_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_var_samp_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_var_samp_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaign-variance-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/campaign-variance-order-by.mdx new file mode 100644 index 00000000..5972ec88 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaign-variance-order-by.mdx @@ -0,0 +1,116 @@ +--- +id: campaign-variance-order-by +title: Campaign_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by variance() on columns of table "Campaign" + +```graphql +input Campaign_variance_order_by { + aggregateAmount: order_by + chainId: order_by + claimedAmount: order_by + claimedCount: order_by + clawbackTime: order_by + expiration: order_by + fee: order_by + streamCliffDuration: order_by + streamCliffPercentage: order_by + streamInitialPercentage: order_by + streamStartTime: order_by + streamTotalDuration: order_by + subgraphId: order_by + timestamp: order_by + totalRecipients: order_by +} +``` + +### Fields + +#### [Campaign_variance_order_by.aggregateAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.claimedAmount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.claimedCount](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.clawbackTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.expiration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.fee](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.streamCliffDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.streamCliffPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.streamInitialPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.streamStartTime](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.streamTotalDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.subgraphId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Campaign_variance_order_by.totalRecipients](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/campaigncategory-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/campaigncategory-comparison-exp.mdx new file mode 100644 index 00000000..14826aae --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/campaigncategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: campaigncategory-comparison-exp +title: campaigncategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "campaigncategory". All fields are combined with logical 'AND'. + +```graphql +input campaigncategory_comparison_exp { + _eq: campaigncategory + _gt: campaigncategory + _gte: campaigncategory + _in: [campaigncategory!] + _is_null: Boolean + _lt: campaigncategory + _lte: campaigncategory + _neq: campaigncategory + _nin: [campaigncategory!] +} +``` + +### Fields + +#### [campaigncategory_comparison_exp.\_eq](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_gt](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_gte](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_in](#)[[campaigncategory!]](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [campaigncategory_comparison_exp.\_lt](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_lte](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_neq](#)[campaigncategory](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [campaigncategory_comparison_exp.\_nin](#)[[campaigncategory!]](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx new file mode 100644 index 00000000..d7d00edd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx @@ -0,0 +1,113 @@ +--- +id: chain-metadata-bool-exp +title: chain_metadata_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "chain_metadata". All fields are combined with a logical 'AND'. + +```graphql +input chain_metadata_bool_exp { + _and: [chain_metadata_bool_exp!] + _not: chain_metadata_bool_exp + _or: [chain_metadata_bool_exp!] + block_height: Int_comparison_exp + chain_id: Int_comparison_exp + end_block: Int_comparison_exp + first_event_block_number: Int_comparison_exp + is_hyper_sync: Boolean_comparison_exp + latest_fetched_block_number: Int_comparison_exp + latest_processed_block: Int_comparison_exp + num_batches_fetched: Int_comparison_exp + num_events_processed: Int_comparison_exp + start_block: Int_comparison_exp + timestamp_caught_up_to_head_or_endblock: timestamptz_comparison_exp +} +``` + +### Fields + +#### [chain_metadata_bool_exp.\_and](#)[[chain_metadata_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_not](#)[chain_metadata_bool_exp](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_or](#)[[chain_metadata_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.block_height](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.end_block](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.first_event_block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.is_hyper_sync](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_fetched_block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_processed_block](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_batches_fetched](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_events_processed](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.start_block](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.timestamp_caught_up_to_head_or_endblock](#)[timestamptz_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamptz-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/chain-metadata-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-order-by.mdx new file mode 100644 index 00000000..1b65f9aa --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-order-by +title: chain_metadata_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "chain_metadata". + +```graphql +input chain_metadata_order_by { + block_height: order_by + chain_id: order_by + end_block: order_by + first_event_block_number: order_by + is_hyper_sync: order_by + latest_fetched_block_number: order_by + latest_processed_block: order_by + num_batches_fetched: order_by + num_events_processed: order_by + start_block: order_by + timestamp_caught_up_to_head_or_endblock: order_by +} +``` + +### Fields + +#### [chain_metadata_order_by.block_height](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.chain_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.end_block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.first_event_block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.is_hyper_sync](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_fetched_block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_processed_block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_batches_fetched](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_events_processed](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.start_block](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.timestamp_caught_up_to_head_or_endblock](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx new file mode 100644 index 00000000..166a483f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: chain-metadata-stream-cursor-input +title: chain_metadata_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "chain_metadata" + +```graphql +input chain_metadata_stream_cursor_input { + initial_value: chain_metadata_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_input.initial_value](#)[chain_metadata_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [chain_metadata_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx new file mode 100644 index 00000000..73e3598f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-stream-cursor-value-input +title: chain_metadata_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input chain_metadata_stream_cursor_value_input { + block_height: Int + chain_id: Int + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean + latest_fetched_block_number: Int + latest_processed_block: Int + num_batches_fetched: Int + num_events_processed: Int + start_block: Int + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_value_input.block_height](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.chain_id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.end_block](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.first_event_block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.is_hyper_sync](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_fetched_block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_processed_block](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_batches_fetched](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_events_processed](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.start_block](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/contract-type-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/contract-type-comparison-exp.mdx new file mode 100644 index 00000000..df28a642 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/contract-type-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: contract-type-comparison-exp +title: contract_type_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "contract_type". All fields are combined with logical 'AND'. + +```graphql +input contract_type_comparison_exp { + _eq: contract_type + _gt: contract_type + _gte: contract_type + _in: [contract_type!] + _is_null: Boolean + _lt: contract_type + _lte: contract_type + _neq: contract_type + _nin: [contract_type!] +} +``` + +### Fields + +#### [contract_type_comparison_exp.\_eq](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gt](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gte](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_in](#)[[contract_type!]](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [contract_type_comparison_exp.\_lt](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_lte](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_neq](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_nin](#)[[contract_type!]](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx new file mode 100644 index 00000000..20ece0df --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx @@ -0,0 +1,110 @@ +--- +id: dynamic-contract-registry-bool-exp +title: dynamic_contract_registry_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "dynamic_contract_registry". All fields are combined with a logical 'AND'. + +```graphql +input dynamic_contract_registry_bool_exp { + _and: [dynamic_contract_registry_bool_exp!] + _not: dynamic_contract_registry_bool_exp + _or: [dynamic_contract_registry_bool_exp!] + chain_id: Int_comparison_exp + contract_address: String_comparison_exp + contract_type: contract_type_comparison_exp + id: String_comparison_exp + registering_event_block_number: Int_comparison_exp + registering_event_block_timestamp: Int_comparison_exp + registering_event_contract_name: String_comparison_exp + registering_event_log_index: Int_comparison_exp + registering_event_name: String_comparison_exp + registering_event_src_address: String_comparison_exp +} +``` + +### Fields + +#### [dynamic_contract_registry_bool_exp.\_and](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_not](#)[dynamic_contract_registry_bool_exp](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_or](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_type](#)[contract_type_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/contract-type-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_timestamp](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_contract_name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_log_index](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_src_address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx new file mode 100644 index 00000000..47c24774 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-order-by +title: dynamic_contract_registry_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "dynamic_contract_registry". + +```graphql +input dynamic_contract_registry_order_by { + chain_id: order_by + contract_address: order_by + contract_type: order_by + id: order_by + registering_event_block_number: order_by + registering_event_block_timestamp: order_by + registering_event_contract_name: order_by + registering_event_log_index: order_by + registering_event_name: order_by + registering_event_src_address: order_by +} +``` + +### Fields + +#### [dynamic_contract_registry_order_by.chain_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_type](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_contract_name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_log_index](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_src_address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx new file mode 100644 index 00000000..d4824d1e --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: dynamic-contract-registry-stream-cursor-input +title: dynamic_contract_registry_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "dynamic_contract_registry" + +```graphql +input dynamic_contract_registry_stream_cursor_input { + initial_value: dynamic_contract_registry_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_input.initial_value](#)[dynamic_contract_registry_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [dynamic_contract_registry_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx new file mode 100644 index 00000000..4faffdb2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-stream-cursor-value-input +title: dynamic_contract_registry_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input dynamic_contract_registry_stream_cursor_value_input { + chain_id: Int + contract_address: String + contract_type: contract_type + id: String + registering_event_block_number: Int + registering_event_block_timestamp: Int + registering_event_contract_name: String + registering_event_log_index: Int + registering_event_name: String + registering_event_src_address: String +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_value_input.chain_id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_type](#)[contract_type](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_timestamp](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_contract_name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_log_index](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_src_address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx new file mode 100644 index 00000000..c0d7979b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx @@ -0,0 +1,89 @@ +--- +id: end-of-block-range-scanned-data-bool-exp +title: end_of_block_range_scanned_data_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "end_of_block_range_scanned_data". All fields are combined with a logical 'AND'. + +```graphql +input end_of_block_range_scanned_data_bool_exp { + _and: [end_of_block_range_scanned_data_bool_exp!] + _not: end_of_block_range_scanned_data_bool_exp + _or: [end_of_block_range_scanned_data_bool_exp!] + block_hash: String_comparison_exp + block_number: Int_comparison_exp + chain_id: Int_comparison_exp +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_bool_exp.\_and](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_not](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_or](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx new file mode 100644 index 00000000..367ce54a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-order-by +title: end_of_block_range_scanned_data_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "end_of_block_range_scanned_data". + +```graphql +input end_of_block_range_scanned_data_order_by { + block_hash: order_by + block_number: order_by + chain_id: order_by +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_order_by.block_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.chain_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx new file mode 100644 index 00000000..7f9a6713 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-input +title: end_of_block_range_scanned_data_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "end_of_block_range_scanned_data" + +```graphql +input end_of_block_range_scanned_data_stream_cursor_input { + initial_value: end_of_block_range_scanned_data_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_input.initial_value](#)[end_of_block_range_scanned_data_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [end_of_block_range_scanned_data_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx new file mode 100644 index 00000000..fa7837bd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-value-input +title: end_of_block_range_scanned_data_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input end_of_block_range_scanned_data_stream_cursor_value_input { + block_hash: String + block_number: Int + chain_id: Int +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.chain_id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx new file mode 100644 index 00000000..d645cd2f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx @@ -0,0 +1,95 @@ +--- +id: event-sync-state-bool-exp +title: event_sync_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "event_sync_state". All fields are combined with a logical 'AND'. + +```graphql +input event_sync_state_bool_exp { + _and: [event_sync_state_bool_exp!] + _not: event_sync_state_bool_exp + _or: [event_sync_state_bool_exp!] + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + is_pre_registering_dynamic_contracts: Boolean_comparison_exp + log_index: Int_comparison_exp +} +``` + +### Fields + +#### [event_sync_state_bool_exp.\_and](#)[[event_sync_state_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_not](#)[event_sync_state_bool_exp](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_or](#)[[event_sync_state_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.is_pre_registering_dynamic_contracts](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/event-sync-state-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-order-by.mdx new file mode 100644 index 00000000..537e391b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-order-by +title: event_sync_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "event_sync_state". + +```graphql +input event_sync_state_order_by { + block_number: order_by + block_timestamp: order_by + chain_id: order_by + is_pre_registering_dynamic_contracts: order_by + log_index: order_by +} +``` + +### Fields + +#### [event_sync_state_order_by.block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.block_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.chain_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.is_pre_registering_dynamic_contracts](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.log_index](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx new file mode 100644 index 00000000..16fdab77 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: event-sync-state-stream-cursor-input +title: event_sync_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "event_sync_state" + +```graphql +input event_sync_state_stream_cursor_input { + initial_value: event_sync_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_input.initial_value](#)[event_sync_state_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [event_sync_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..baa99065 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-stream-cursor-value-input +title: event_sync_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input event_sync_state_stream_cursor_value_input { + block_number: Int + block_timestamp: Int + chain_id: Int + is_pre_registering_dynamic_contracts: Boolean + log_index: Int +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_value_input.block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.chain_id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state_stream_cursor_value_input.log_index](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx new file mode 100644 index 00000000..0ebe193c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx @@ -0,0 +1,101 @@ +--- +id: factory-bool-exp +title: Factory_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Factory". All fields are combined with a logical 'AND'. + +```graphql +input Factory_bool_exp { + _and: [Factory_bool_exp!] + _not: Factory_bool_exp + _or: [Factory_bool_exp!] + address: String_comparison_exp + alias: String_comparison_exp + campaigns: Campaign_bool_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + version: String_comparison_exp +} +``` + +### Fields + +#### [Factory_bool_exp.\_and](#)[[Factory_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx) + +#### [Factory_bool_exp.\_not](#)[Factory_bool_exp](/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx) + +#### [Factory_bool_exp.\_or](#)[[Factory_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx) + +#### [Factory_bool_exp.address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Factory_bool_exp.alias](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Factory_bool_exp.campaigns](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Factory_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Factory_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Factory_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Factory_bool_exp.version](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/factory-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/factory-order-by.mdx new file mode 100644 index 00000000..17df5798 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/factory-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: factory-order-by +title: Factory_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Factory". + +```graphql +input Factory_order_by { + address: order_by + alias: order_by + campaigns_aggregate: Campaign_aggregate_order_by + chainId: order_by + db_write_timestamp: order_by + id: order_by + version: order_by +} +``` + +### Fields + +#### [Factory_order_by.address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Factory_order_by.alias](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Factory_order_by.campaigns_aggregate](#)[Campaign_aggregate_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-aggregate-order-by.mdx) + +#### [Factory_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Factory_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Factory_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Factory_order_by.version](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-input.mdx new file mode 100644 index 00000000..5bcafd1b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: factory-stream-cursor-input +title: Factory_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Factory" + +```graphql +input Factory_stream_cursor_input { + initial_value: Factory_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Factory_stream_cursor_input.initial_value](#)[Factory_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Factory_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-value-input.mdx new file mode 100644 index 00000000..f8a72d28 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/factory-stream-cursor-value-input.mdx @@ -0,0 +1,89 @@ +--- +id: factory-stream-cursor-value-input +title: Factory_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Factory_stream_cursor_value_input { + address: String + alias: String + chainId: numeric + db_write_timestamp: timestamp + id: String + version: String +} +``` + +### Fields + +#### [Factory_stream_cursor_value_input.address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory_stream_cursor_value_input.alias](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory_stream_cursor_value_input.chainId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Factory_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Factory_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory_stream_cursor_value_input.version](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx new file mode 100644 index 00000000..ec381d3f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: int-comparison-exp +title: Int_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. + +```graphql +input Int_comparison_exp { + _eq: Int + _gt: Int + _gte: Int + _in: [Int!] + _is_null: Boolean + _lt: Int + _lte: Int + _neq: Int + _nin: [Int!] +} +``` + +### Fields + +#### [Int_comparison_exp.\_eq](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gt](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gte](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_in](#)[[Int!]](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Int_comparison_exp.\_lt](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_lte](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_neq](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_nin](#)[[Int!]](/docs/api/airdrops/graphql/envio/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/jsonb-cast-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/jsonb-cast-exp.mdx new file mode 100644 index 00000000..cc3c8ca1 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/jsonb-cast-exp.mdx @@ -0,0 +1,74 @@ +--- +id: jsonb-cast-exp +title: jsonb_cast_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input jsonb_cast_exp { + String: String_comparison_exp +} +``` + +### Fields + +#### [jsonb_cast_exp.String](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx new file mode 100644 index 00000000..866c1373 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx @@ -0,0 +1,126 @@ +--- +id: jsonb-comparison-exp +title: jsonb_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. + +```graphql +input jsonb_comparison_exp { + _cast: jsonb_cast_exp + _contained_in: jsonb + _contains: jsonb + _eq: jsonb + _gt: jsonb + _gte: jsonb + _has_key: String + _has_keys_all: [String!] + _has_keys_any: [String!] + _in: [jsonb!] + _is_null: Boolean + _lt: jsonb + _lte: jsonb + _neq: jsonb + _nin: [jsonb!] +} +``` + +### Fields + +#### [jsonb_comparison_exp.\_cast](#)[jsonb_cast_exp](/docs/api/airdrops/graphql/envio/inputs/jsonb-cast-exp.mdx) + +#### [jsonb_comparison_exp.\_contained_in](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +is the column contained in the given json value + +#### [jsonb_comparison_exp.\_contains](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +does the column contain the given json value at the top level + +#### [jsonb_comparison_exp.\_eq](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gt](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gte](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_has_key](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the string exist as a top-level key in the column + +#### [jsonb_comparison_exp.\_has_keys_all](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +do all of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_has_keys_any](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +do any of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_in](#)[[jsonb!]](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [jsonb_comparison_exp.\_lt](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_lte](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_neq](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_nin](#)[[jsonb!]](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx new file mode 100644 index 00000000..b08ce8e7 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: numeric-comparison-exp +title: numeric_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. + +```graphql +input numeric_comparison_exp { + _eq: numeric + _gt: numeric + _gte: numeric + _in: [numeric!] + _is_null: Boolean + _lt: numeric + _lte: numeric + _neq: numeric + _nin: [numeric!] +} +``` + +### Fields + +#### [numeric_comparison_exp.\_eq](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gt](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gte](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_in](#)[[numeric!]](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [numeric_comparison_exp.\_lt](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_lte](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_neq](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_nin](#)[[numeric!]](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx new file mode 100644 index 00000000..f05cca87 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx @@ -0,0 +1,98 @@ +--- +id: persisted-state-bool-exp +title: persisted_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "persisted_state". All fields are combined with a logical 'AND'. + +```graphql +input persisted_state_bool_exp { + _and: [persisted_state_bool_exp!] + _not: persisted_state_bool_exp + _or: [persisted_state_bool_exp!] + abi_files_hash: String_comparison_exp + config_hash: String_comparison_exp + envio_version: String_comparison_exp + handler_files_hash: String_comparison_exp + id: Int_comparison_exp + schema_hash: String_comparison_exp +} +``` + +### Fields + +#### [persisted_state_bool_exp.\_and](#)[[persisted_state_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_not](#)[persisted_state_bool_exp](/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_or](#)[[persisted_state_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.abi_files_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.config_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.envio_version](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.handler_files_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [persisted_state_bool_exp.schema_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/persisted-state-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/persisted-state-order-by.mdx new file mode 100644 index 00000000..053ebd90 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/persisted-state-order-by.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-order-by +title: persisted_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "persisted_state". + +```graphql +input persisted_state_order_by { + abi_files_hash: order_by + config_hash: order_by + envio_version: order_by + handler_files_hash: order_by + id: order_by + schema_hash: order_by +} +``` + +### Fields + +#### [persisted_state_order_by.abi_files_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.config_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.envio_version](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.handler_files_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.schema_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx new file mode 100644 index 00000000..ed207fb0 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: persisted-state-stream-cursor-input +title: persisted_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "persisted_state" + +```graphql +input persisted_state_stream_cursor_input { + initial_value: persisted_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [persisted_state_stream_cursor_input.initial_value](#)[persisted_state_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [persisted_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..d99dd92f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-stream-cursor-value-input +title: persisted_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input persisted_state_stream_cursor_value_input { + abi_files_hash: String + config_hash: String + envio_version: String + handler_files_hash: String + id: Int + schema_hash: String +} +``` + +### Fields + +#### [persisted_state_stream_cursor_value_input.abi_files_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.config_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.envio_version](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.handler_files_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [persisted_state_stream_cursor_value_input.schema_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx new file mode 100644 index 00000000..679a52a3 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx @@ -0,0 +1,122 @@ +--- +id: raw-events-bool-exp +title: raw_events_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "raw_events". All fields are combined with a logical 'AND'. + +```graphql +input raw_events_bool_exp { + _and: [raw_events_bool_exp!] + _not: raw_events_bool_exp + _or: [raw_events_bool_exp!] + block_fields: jsonb_comparison_exp + block_hash: String_comparison_exp + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + contract_name: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + event_id: numeric_comparison_exp + event_name: String_comparison_exp + log_index: Int_comparison_exp + params: jsonb_comparison_exp + serial: Int_comparison_exp + src_address: String_comparison_exp + transaction_fields: jsonb_comparison_exp +} +``` + +### Fields + +#### [raw_events_bool_exp.\_and](#)[[raw_events_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_not](#)[raw_events_bool_exp](/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_or](#)[[raw_events_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.block_fields](#)[jsonb_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.contract_name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_id](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_name](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.params](#)[jsonb_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.serial](#)[Int_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.src_address](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.transaction_fields](#)[jsonb_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/jsonb-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/raw-events-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/raw-events-order-by.mdx new file mode 100644 index 00000000..baf685f9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/raw-events-order-by.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-order-by +title: raw_events_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "raw_events". + +```graphql +input raw_events_order_by { + block_fields: order_by + block_hash: order_by + block_number: order_by + block_timestamp: order_by + chain_id: order_by + contract_name: order_by + db_write_timestamp: order_by + event_id: order_by + event_name: order_by + log_index: order_by + params: order_by + serial: order_by + src_address: order_by + transaction_fields: order_by +} +``` + +### Fields + +#### [raw_events_order_by.block_fields](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_hash](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_number](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.chain_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.contract_name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_name](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.log_index](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.params](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.serial](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.src_address](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.transaction_fields](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-input.mdx new file mode 100644 index 00000000..98fa3ebe --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: raw-events-stream-cursor-input +title: raw_events_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "raw_events" + +```graphql +input raw_events_stream_cursor_input { + initial_value: raw_events_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [raw_events_stream_cursor_input.initial_value](#)[raw_events_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [raw_events_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx new file mode 100644 index 00000000..03fce041 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-stream-cursor-value-input +title: raw_events_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input raw_events_stream_cursor_value_input { + block_fields: jsonb + block_hash: String + block_number: Int + block_timestamp: Int + chain_id: Int + contract_name: String + db_write_timestamp: timestamp + event_id: numeric + event_name: String + log_index: Int + params: jsonb + serial: Int + src_address: String + transaction_fields: jsonb +} +``` + +### Fields + +#### [raw_events_stream_cursor_value_input.block_fields](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.block_hash](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.chain_id](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.contract_name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events_stream_cursor_value_input.event_id](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [raw_events_stream_cursor_value_input.event_name](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.log_index](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.params](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.serial](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.src_address](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.transaction_fields](#)[jsonb](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/string-array-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/string-array-comparison-exp.mdx new file mode 100644 index 00000000..1858aa9a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/string-array-comparison-exp.mdx @@ -0,0 +1,108 @@ +--- +id: string-array-comparison-exp +title: String_array_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_array_comparison_exp { + _contained_in: [String!] + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _is_null: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} +``` + +### Fields + +#### [String_array_comparison_exp.\_contained_in](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +is the array contained in the given array value + +#### [String_array_comparison_exp.\_contains](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the array contain the given value + +#### [String_array_comparison_exp.\_eq](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gt](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gte](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_in](#)[[[String!]!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [String_array_comparison_exp.\_lt](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_lte](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_neq](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_nin](#)[[[String!]!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx new file mode 100644 index 00000000..bcabc9a0 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx @@ -0,0 +1,148 @@ +--- +id: string-comparison-exp +title: String_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_comparison_exp { + _eq: String + _gt: String + _gte: String + _ilike: String + _in: [String!] + _iregex: String + _is_null: Boolean + _like: String + _lt: String + _lte: String + _neq: String + _nilike: String + _nin: [String!] + _niregex: String + _nlike: String + _nregex: String + _nsimilar: String + _regex: String + _similar: String +} +``` + +### Fields + +#### [String_comparison_exp.\_eq](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gt](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gte](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_ilike](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column match the given case-insensitive pattern + +#### [String_comparison_exp.\_in](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_iregex](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [String_comparison_exp.\_like](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column match the given pattern + +#### [String_comparison_exp.\_lt](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_lte](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_neq](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_nilike](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column NOT match the given case-insensitive pattern + +#### [String_comparison_exp.\_nin](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_niregex](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_nlike](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column NOT match the given pattern + +#### [String_comparison_exp.\_nregex](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_nsimilar](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column NOT match the given SQL regular expression + +#### [String_comparison_exp.\_regex](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_similar](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +does the column match the given SQL regular expression diff --git a/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx new file mode 100644 index 00000000..58b8ed48 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamp-comparison-exp +title: timestamp_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. + +```graphql +input timestamp_comparison_exp { + _eq: timestamp + _gt: timestamp + _gte: timestamp + _in: [timestamp!] + _is_null: Boolean + _lt: timestamp + _lte: timestamp + _neq: timestamp + _nin: [timestamp!] +} +``` + +### Fields + +#### [timestamp_comparison_exp.\_eq](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gt](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gte](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_in](#)[[timestamp!]](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [timestamp_comparison_exp.\_lt](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_lte](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_neq](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_nin](#)[[timestamp!]](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/timestamptz-comparison-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/timestamptz-comparison-exp.mdx new file mode 100644 index 00000000..e809a878 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/timestamptz-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamptz-comparison-exp +title: timestamptz_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. + +```graphql +input timestamptz_comparison_exp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _is_null: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} +``` + +### Fields + +#### [timestamptz_comparison_exp.\_eq](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gt](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gte](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_in](#)[[timestamptz!]](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_is_null](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [timestamptz_comparison_exp.\_lt](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_lte](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_neq](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_nin](#)[[timestamptz!]](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-aggregate-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-aggregate-order-by.mdx new file mode 100644 index 00000000..81c61ba6 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: tranche-aggregate-order-by +title: Tranche_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by aggregate values of table "Tranche" + +```graphql +input Tranche_aggregate_order_by { + avg: Tranche_avg_order_by + count: order_by + max: Tranche_max_order_by + min: Tranche_min_order_by + stddev: Tranche_stddev_order_by + stddev_pop: Tranche_stddev_pop_order_by + stddev_samp: Tranche_stddev_samp_order_by + sum: Tranche_sum_order_by + var_pop: Tranche_var_pop_order_by + var_samp: Tranche_var_samp_order_by + variance: Tranche_variance_order_by +} +``` + +### Fields + +#### [Tranche_aggregate_order_by.avg](#)[Tranche_avg_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-avg-order-by.mdx) + +#### [Tranche_aggregate_order_by.count](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_aggregate_order_by.max](#)[Tranche_max_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-max-order-by.mdx) + +#### [Tranche_aggregate_order_by.min](#)[Tranche_min_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-min-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev](#)[Tranche_stddev_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev_pop](#)[Tranche_stddev_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev_samp](#)[Tranche_stddev_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx) + +#### [Tranche_aggregate_order_by.sum](#)[Tranche_sum_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-sum-order-by.mdx) + +#### [Tranche_aggregate_order_by.var_pop](#)[Tranche_var_pop_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-var-pop-order-by.mdx) + +#### [Tranche_aggregate_order_by.var_samp](#)[Tranche_var_samp_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-var-samp-order-by.mdx) + +#### [Tranche_aggregate_order_by.variance](#)[Tranche_variance_order_by](/docs/api/airdrops/graphql/envio/inputs/tranche-variance-order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-avg-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-avg-order-by.mdx new file mode 100644 index 00000000..2a5337f4 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-avg-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-avg-order-by +title: Tranche_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by avg() on columns of table "Tranche" + +```graphql +input Tranche_avg_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_avg_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx new file mode 100644 index 00000000..1f73d6c8 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx @@ -0,0 +1,113 @@ +--- +id: tranche-bool-exp +title: Tranche_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Tranche". All fields are combined with a logical 'AND'. + +```graphql +input Tranche_bool_exp { + _and: [Tranche_bool_exp!] + _not: Tranche_bool_exp + _or: [Tranche_bool_exp!] + campaign: Campaign_bool_exp + campaign_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + duration: numeric_comparison_exp + endDuration: numeric_comparison_exp + endPercentage: numeric_comparison_exp + id: String_comparison_exp + percentage: numeric_comparison_exp + position: numeric_comparison_exp + startDuration: numeric_comparison_exp + startPercentage: numeric_comparison_exp +} +``` + +### Fields + +#### [Tranche_bool_exp.\_and](#)[[Tranche_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.\_not](#)[Tranche_bool_exp](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.\_or](#)[[Tranche_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.campaign](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +#### [Tranche_bool_exp.campaign_id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Tranche_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Tranche_bool_exp.duration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.endDuration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.endPercentage](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Tranche_bool_exp.percentage](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.position](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.startDuration](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.startPercentage](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-max-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-max-order-by.mdx new file mode 100644 index 00000000..3f9c4614 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-max-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-max-order-by +title: Tranche_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by max() on columns of table "Tranche" + +```graphql +input Tranche_max_order_by { + campaign_id: order_by + db_write_timestamp: order_by + duration: order_by + endDuration: order_by + endPercentage: order_by + id: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_max_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-min-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-min-order-by.mdx new file mode 100644 index 00000000..6c4afe9f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-min-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-min-order-by +title: Tranche_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by min() on columns of table "Tranche" + +```graphql +input Tranche_min_order_by { + campaign_id: order_by + db_write_timestamp: order_by + duration: order_by + endDuration: order_by + endPercentage: order_by + id: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_min_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-order-by.mdx new file mode 100644 index 00000000..ea531039 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: tranche-order-by +title: Tranche_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Tranche". + +```graphql +input Tranche_order_by { + campaign: Campaign_order_by + campaign_id: order_by + db_write_timestamp: order_by + duration: order_by + endDuration: order_by + endPercentage: order_by + id: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_order_by.campaign](#)[Campaign_order_by](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +#### [Tranche_order_by.campaign_id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-order-by.mdx new file mode 100644 index 00000000..e70d5f8f --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-order-by +title: Tranche_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev() on columns of table "Tranche" + +```graphql +input Tranche_stddev_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_stddev_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx new file mode 100644 index 00000000..95cfe5c7 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-pop-order-by +title: Tranche_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_pop() on columns of table "Tranche" + +```graphql +input Tranche_stddev_pop_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_stddev_pop_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx new file mode 100644 index 00000000..2f119308 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-samp-order-by +title: Tranche_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by stddev_samp() on columns of table "Tranche" + +```graphql +input Tranche_stddev_samp_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_stddev_samp_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-input.mdx new file mode 100644 index 00000000..0c2a7318 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: tranche-stream-cursor-input +title: Tranche_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Tranche" + +```graphql +input Tranche_stream_cursor_input { + initial_value: Tranche_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Tranche_stream_cursor_input.initial_value](#)[Tranche_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Tranche_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx new file mode 100644 index 00000000..c5841616 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-stream-cursor-value-input +title: Tranche_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Tranche_stream_cursor_value_input { + campaign_id: String + db_write_timestamp: timestamp + duration: numeric + endDuration: numeric + endPercentage: numeric + id: String + percentage: numeric + position: numeric + startDuration: numeric + startPercentage: numeric +} +``` + +### Fields + +#### [Tranche_stream_cursor_value_input.campaign_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Tranche_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Tranche_stream_cursor_value_input.duration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.endDuration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.endPercentage](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Tranche_stream_cursor_value_input.percentage](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.position](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.startDuration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.startPercentage](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-sum-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-sum-order-by.mdx new file mode 100644 index 00000000..25c3a1ce --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-sum-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-sum-order-by +title: Tranche_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by sum() on columns of table "Tranche" + +```graphql +input Tranche_sum_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_sum_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-var-pop-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-var-pop-order-by.mdx new file mode 100644 index 00000000..13111a08 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-var-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-var-pop-order-by +title: Tranche_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_pop() on columns of table "Tranche" + +```graphql +input Tranche_var_pop_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_var_pop_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-var-samp-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-var-samp-order-by.mdx new file mode 100644 index 00000000..f66d8ca9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-var-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-var-samp-order-by +title: Tranche_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by var_samp() on columns of table "Tranche" + +```graphql +input Tranche_var_samp_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_var_samp_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/tranche-variance-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/tranche-variance-order-by.mdx new file mode 100644 index 00000000..dcdc8fa2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/tranche-variance-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-variance-order-by +title: Tranche_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +order by variance() on columns of table "Tranche" + +```graphql +input Tranche_variance_order_by { + duration: order_by + endDuration: order_by + endPercentage: order_by + percentage: order_by + position: order_by + startDuration: order_by + startPercentage: order_by +} +``` + +### Fields + +#### [Tranche_variance_order_by.duration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.endDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.endPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.percentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.position](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.startDuration](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.startPercentage](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx b/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx new file mode 100644 index 00000000..07f73df1 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx @@ -0,0 +1,101 @@ +--- +id: watcher-bool-exp +title: Watcher_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Boolean expression to filter rows from the table "Watcher". All fields are combined with a logical 'AND'. + +```graphql +input Watcher_bool_exp { + _and: [Watcher_bool_exp!] + _not: Watcher_bool_exp + _or: [Watcher_bool_exp!] + actionIndex: numeric_comparison_exp + campaignIndex: numeric_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + initialized: Boolean_comparison_exp + logs: String_array_comparison_exp +} +``` + +### Fields + +#### [Watcher_bool_exp.\_and](#)[[Watcher_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_not](#)[Watcher_bool_exp](/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_or](#)[[Watcher_bool_exp!]](/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.actionIndex](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.campaignIndex](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Watcher_bool_exp.id](#)[String_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Watcher_bool_exp.initialized](#)[Boolean_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Watcher_bool_exp.logs](#)[String_array_comparison_exp](/docs/api/airdrops/graphql/envio/inputs/string-array-comparison-exp.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/watcher-order-by.mdx b/docs/api/airdrops/graphql/envio/inputs/watcher-order-by.mdx new file mode 100644 index 00000000..6d8b8b99 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/watcher-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-order-by +title: Watcher_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Ordering options when selecting data from "Watcher". + +```graphql +input Watcher_order_by { + actionIndex: order_by + campaignIndex: order_by + chainId: order_by + db_write_timestamp: order_by + id: order_by + initialized: order_by + logs: order_by +} +``` + +### Fields + +#### [Watcher_order_by.actionIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.campaignIndex](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.chainId](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.db_write_timestamp](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.id](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.initialized](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.logs](#)[order_by](/docs/api/airdrops/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-input.mdx b/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-input.mdx new file mode 100644 index 00000000..9cc82e33 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: watcher-stream-cursor-input +title: Watcher_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Streaming cursor of the table "Watcher" + +```graphql +input Watcher_stream_cursor_input { + initial_value: Watcher_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Watcher_stream_cursor_input.initial_value](#)[Watcher_stream_cursor_value_input!](/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Watcher_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/airdrops/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx b/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx new file mode 100644 index 00000000..deba7062 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-stream-cursor-value-input +title: Watcher_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Watcher_stream_cursor_value_input { + actionIndex: numeric + campaignIndex: numeric + chainId: numeric + db_write_timestamp: timestamp + id: String + initialized: Boolean + logs: [String!] +} +``` + +### Fields + +#### [Watcher_stream_cursor_value_input.actionIndex](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.campaignIndex](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.chainId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher_stream_cursor_value_input.id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Watcher_stream_cursor_value_input.initialized](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Watcher_stream_cursor_value_input.logs](#)[[String!]](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/_category_.yml b/docs/api/airdrops/graphql/envio/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/airdrops/graphql/envio/objects/action.mdx b/docs/api/airdrops/graphql/envio/objects/action.mdx new file mode 100644 index 00000000..8f70a692 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/action.mdx @@ -0,0 +1,133 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Action" + +```graphql +type Action { + block: numeric! + campaign: Campaign + campaign_id: String! + category: actioncategory! + chainId: numeric! + claimAmount: numeric + claimIndex: numeric + claimRecipient: String + claimStreamId: String + claimTokenId: numeric + clawbackAmount: numeric + clawbackFrom: String + clawbackTo: String + db_write_timestamp: timestamp + fee: numeric + from: String! + hash: String! + id: String! + subgraphId: numeric! + timestamp: numeric! +} +``` + +### Fields + +#### [Action.block](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.campaign](#)[Campaign](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +An object relationship + +#### [Action.campaign_id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.category](#)[actioncategory!](/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx) + +#### [Action.chainId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.claimAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.claimIndex](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.claimRecipient](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.claimStreamId](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.claimTokenId](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.clawbackAmount](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.clawbackFrom](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.clawbackTo](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Action.fee](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.from](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Action.subgraphId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Action.timestamp](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/activity.mdx b/docs/api/airdrops/graphql/envio/objects/activity.mdx new file mode 100644 index 00000000..b6a8fdbc --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/activity.mdx @@ -0,0 +1,97 @@ +--- +id: activity +title: Activity +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Activity" + +```graphql +type Activity { + amount: numeric! + campaign: Campaign + campaign_id: String! + claims: numeric! + day: numeric! + db_write_timestamp: timestamp + id: String! + timestamp: numeric! +} +``` + +### Fields + +#### [Activity.amount](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity.campaign](#)[Campaign](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +An object relationship + +#### [Activity.campaign_id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Activity.claims](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity.day](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Activity.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Activity.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Activity.timestamp](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/asset.mdx b/docs/api/airdrops/graphql/envio/objects/asset.mdx new file mode 100644 index 00000000..0ba8a6ff --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/asset.mdx @@ -0,0 +1,123 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Asset" + +```graphql +type Asset { + address: String! + campaigns( + distinct_on: [Campaign_select_column!] + limit: Int + offset: Int + order_by: [Campaign_order_by!] + where: Campaign_bool_exp + ): [Campaign!]! + chainId: numeric! + db_write_timestamp: timestamp + decimals: numeric! + id: String! + name: String! + symbol: String! +} +``` + +### Fields + +#### [Asset.address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset.campaigns](#)[[Campaign!]!](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +An array relationship + +##### [Asset.campaigns.distinct_on](#)[[Campaign_select_column!]](/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx) + +distinct select on columns + +##### [Asset.campaigns.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Asset.campaigns.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Asset.campaigns.order_by](#)[[Campaign_order_by!]](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +sort the rows by one or more columns + +##### [Asset.campaigns.where](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +filter the rows returned + +#### [Asset.chainId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Asset.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Asset.decimals](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Asset.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset.name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Asset.symbol](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/campaign.mdx b/docs/api/airdrops/graphql/envio/objects/campaign.mdx new file mode 100644 index 00000000..e7241e2a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/campaign.mdx @@ -0,0 +1,290 @@ +--- +id: campaign +title: Campaign +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Campaign" + +```graphql +type Campaign { + actions( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp + ): [Action!]! + activities( + distinct_on: [Activity_select_column!] + limit: Int + offset: Int + order_by: [Activity_order_by!] + where: Activity_bool_exp + ): [Activity!]! + address: String! + admin: String! + aggregateAmount: numeric! + asset: Asset + asset_id: String! + category: campaigncategory! + chainId: numeric! + claimedAmount: numeric! + claimedCount: numeric! + clawbackAction: Action + clawbackAction_id: String + clawbackTime: numeric + db_write_timestamp: timestamp + expiration: numeric + expires: Boolean! + factory: Factory + factory_id: String! + fee: numeric! + hash: String! + id: String! + ipfsCID: String! + lockup: String! + name: String! + nickname: String! + root: String! + streamCancelable: Boolean! + streamCliff: Boolean! + streamCliffDuration: numeric! + streamCliffPercentage: numeric! + streamInitial: Boolean! + streamInitialPercentage: numeric! + streamShape: String! + streamStart: Boolean! + streamStartTime: numeric! + streamTotalDuration: numeric! + streamTranches( + distinct_on: [Tranche_select_column!] + limit: Int + offset: Int + order_by: [Tranche_order_by!] + where: Tranche_bool_exp + ): [Tranche!]! + streamTransferable: Boolean! + subgraphId: numeric! + timestamp: numeric! + totalRecipients: numeric! + version: String! +} +``` + +### Fields + +#### [Campaign.actions](#)[[Action!]!](/docs/api/airdrops/graphql/envio/objects/action.mdx) + +An array relationship + +##### [Campaign.actions.distinct_on](#)[[Action_select_column!]](/docs/api/airdrops/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +##### [Campaign.actions.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Campaign.actions.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Campaign.actions.order_by](#)[[Action_order_by!]](/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +##### [Campaign.actions.where](#)[Action_bool_exp](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +#### [Campaign.activities](#)[[Activity!]!](/docs/api/airdrops/graphql/envio/objects/activity.mdx) + +An array relationship + +##### [Campaign.activities.distinct_on](#)[[Activity_select_column!]](/docs/api/airdrops/graphql/envio/enums/activity-select-column.mdx) + +distinct select on columns + +##### [Campaign.activities.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Campaign.activities.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Campaign.activities.order_by](#)[[Activity_order_by!]](/docs/api/airdrops/graphql/envio/inputs/activity-order-by.mdx) + +sort the rows by one or more columns + +##### [Campaign.activities.where](#)[Activity_bool_exp](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +filter the rows returned + +#### [Campaign.address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.admin](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.aggregateAmount](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.asset](#)[Asset](/docs/api/airdrops/graphql/envio/objects/asset.mdx) + +An object relationship + +#### [Campaign.asset_id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.category](#)[campaigncategory!](/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx) + +#### [Campaign.chainId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.claimedAmount](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.claimedCount](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.clawbackAction](#)[Action](/docs/api/airdrops/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Campaign.clawbackAction_id](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.clawbackTime](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Campaign.expiration](#)[numeric](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.expires](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.factory](#)[Factory](/docs/api/airdrops/graphql/envio/objects/factory.mdx) + +An object relationship + +#### [Campaign.factory_id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.fee](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.ipfsCID](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.lockup](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.nickname](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.root](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.streamCancelable](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.streamCliff](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.streamCliffDuration](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.streamCliffPercentage](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.streamInitial](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.streamInitialPercentage](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.streamShape](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Campaign.streamStart](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.streamStartTime](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.streamTotalDuration](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.streamTranches](#)[[Tranche!]!](/docs/api/airdrops/graphql/envio/objects/tranche.mdx) + +An array relationship + +##### [Campaign.streamTranches.distinct_on](#)[[Tranche_select_column!]](/docs/api/airdrops/graphql/envio/enums/tranche-select-column.mdx) + +distinct select on columns + +##### [Campaign.streamTranches.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Campaign.streamTranches.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Campaign.streamTranches.order_by](#)[[Tranche_order_by!]](/docs/api/airdrops/graphql/envio/inputs/tranche-order-by.mdx) + +sort the rows by one or more columns + +##### [Campaign.streamTranches.where](#)[Tranche_bool_exp](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +filter the rows returned + +#### [Campaign.streamTransferable](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Campaign.subgraphId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.timestamp](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.totalRecipients](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Campaign.version](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/chain-metadata.mdx b/docs/api/airdrops/graphql/envio/objects/chain-metadata.mdx new file mode 100644 index 00000000..af0858a1 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/chain-metadata.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "chain_metadata" + +```graphql +type chain_metadata { + block_height: Int! + chain_id: Int! + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean! + latest_fetched_block_number: Int! + latest_processed_block: Int + num_batches_fetched: Int! + num_events_processed: Int + start_block: Int! + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata.block_height](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.end_block](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.first_event_block_number](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.is_hyper_sync](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata.latest_fetched_block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.latest_processed_block](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_batches_fetched](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_events_processed](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.start_block](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/dynamic-contract-registry.mdx b/docs/api/airdrops/graphql/envio/objects/dynamic-contract-registry.mdx new file mode 100644 index 00000000..964667c1 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/dynamic-contract-registry.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "dynamic_contract_registry" + +```graphql +type dynamic_contract_registry { + chain_id: Int! + contract_address: String! + contract_type: contract_type! + id: String! + registering_event_block_number: Int! + registering_event_block_timestamp: Int! + registering_event_contract_name: String! + registering_event_log_index: Int! + registering_event_name: String! + registering_event_src_address: String! +} +``` + +### Fields + +#### [dynamic_contract_registry.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.contract_address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.contract_type](#)[contract_type!](/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_block_timestamp](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_contract_name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_log_index](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_src_address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/end-of-block-range-scanned-data.mdx b/docs/api/airdrops/graphql/envio/objects/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..6d456a6a --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/end-of-block-range-scanned-data.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "end_of_block_range_scanned_data" + +```graphql +type end_of_block_range_scanned_data { + block_hash: String! + block_number: Int! + chain_id: Int! +} +``` + +### Fields + +#### [end_of_block_range_scanned_data.block_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data.block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/event-sync-state.mdx b/docs/api/airdrops/graphql/envio/objects/event-sync-state.mdx new file mode 100644 index 00000000..082fd3b9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/event-sync-state.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "event_sync_state" + +```graphql +type event_sync_state { + block_number: Int! + block_timestamp: Int! + chain_id: Int! + is_pre_registering_dynamic_contracts: Boolean + log_index: Int! +} +``` + +### Fields + +#### [event_sync_state.block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.block_timestamp](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state.log_index](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/factory.mdx b/docs/api/airdrops/graphql/envio/objects/factory.mdx new file mode 100644 index 00000000..f09c596b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/factory.mdx @@ -0,0 +1,120 @@ +--- +id: factory +title: Factory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Factory" + +```graphql +type Factory { + address: String! + alias: String! + campaigns( + distinct_on: [Campaign_select_column!] + limit: Int + offset: Int + order_by: [Campaign_order_by!] + where: Campaign_bool_exp + ): [Campaign!]! + chainId: numeric! + db_write_timestamp: timestamp + id: String! + version: String! +} +``` + +### Fields + +#### [Factory.address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory.alias](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory.campaigns](#)[[Campaign!]!](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +An array relationship + +##### [Factory.campaigns.distinct_on](#)[[Campaign_select_column!]](/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx) + +distinct select on columns + +##### [Factory.campaigns.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Factory.campaigns.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Factory.campaigns.order_by](#)[[Campaign_order_by!]](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +sort the rows by one or more columns + +##### [Factory.campaigns.where](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +filter the rows returned + +#### [Factory.chainId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Factory.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Factory.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Factory.version](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/persisted-state.mdx b/docs/api/airdrops/graphql/envio/objects/persisted-state.mdx new file mode 100644 index 00000000..97b53b97 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/persisted-state.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "persisted_state" + +```graphql +type persisted_state { + abi_files_hash: String! + config_hash: String! + envio_version: String! + handler_files_hash: String! + id: Int! + schema_hash: String! +} +``` + +### Fields + +#### [persisted_state.abi_files_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state.config_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state.envio_version](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state.handler_files_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [persisted_state.id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [persisted_state.schema_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/raw-events.mdx b/docs/api/airdrops/graphql/envio/objects/raw-events.mdx new file mode 100644 index 00000000..d221a2aa --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/raw-events.mdx @@ -0,0 +1,125 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "raw_events" + +```graphql +type raw_events { + block_fields(path: String): jsonb! + block_hash: String! + block_number: Int! + block_timestamp: Int! + chain_id: Int! + contract_name: String! + db_write_timestamp: timestamp + event_id: numeric! + event_name: String! + log_index: Int! + params(path: String): jsonb! + serial: Int! + src_address: String! + transaction_fields(path: String): jsonb! +} +``` + +### Fields + +#### [raw_events.block_fields](#)[jsonb!](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.block_fields.path](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.block_hash](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events.block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events.block_timestamp](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events.contract_name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events.event_id](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [raw_events.event_name](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events.log_index](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events.params](#)[jsonb!](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.params.path](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.serial](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [raw_events.src_address](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [raw_events.transaction_fields](#)[jsonb!](/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.transaction_fields.path](#)[String](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +JSON select path diff --git a/docs/api/airdrops/graphql/envio/objects/tranche.mdx b/docs/api/airdrops/graphql/envio/objects/tranche.mdx new file mode 100644 index 00000000..327274f8 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/tranche.mdx @@ -0,0 +1,106 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Tranche" + +```graphql +type Tranche { + campaign: Campaign + campaign_id: String! + db_write_timestamp: timestamp + duration: numeric! + endDuration: numeric! + endPercentage: numeric! + id: String! + percentage: numeric! + position: numeric! + startDuration: numeric! + startPercentage: numeric! +} +``` + +### Fields + +#### [Tranche.campaign](#)[Campaign](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +An object relationship + +#### [Tranche.campaign_id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Tranche.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Tranche.duration](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.endDuration](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.endPercentage](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Tranche.percentage](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.position](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.startDuration](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.startPercentage](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/airdrops/graphql/envio/objects/watcher.mdx b/docs/api/airdrops/graphql/envio/objects/watcher.mdx new file mode 100644 index 00000000..f5b12987 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/objects/watcher.mdx @@ -0,0 +1,92 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +columns and relationships of "Watcher" + +```graphql +type Watcher { + actionIndex: numeric! + campaignIndex: numeric! + chainId: numeric! + db_write_timestamp: timestamp + id: String! + initialized: Boolean! + logs: [String!]! +} +``` + +### Fields + +#### [Watcher.actionIndex](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.campaignIndex](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.chainId](#)[numeric!](/docs/api/airdrops/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.db_write_timestamp](#)[timestamp](/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +#### [Watcher.initialized](#)[Boolean!](/docs/api/airdrops/graphql/envio/scalars/boolean.mdx) + +#### [Watcher.logs](#)[[String!]!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) diff --git a/docs/api/airdrops/graphql/envio/queries/_category_.yml b/docs/api/airdrops/graphql/envio/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/airdrops/graphql/envio/queries/action-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/action-by-pk.mdx new file mode 100644 index 00000000..e6bdb331 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/action-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: action-by-pk +title: Action_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Action" using primary key columns + +```graphql +Action_by_pk( + id: String! +): Action +``` + +### Arguments + +#### [Action_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Action](/docs/api/airdrops/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/airdrops/graphql/envio/queries/action.mdx b/docs/api/airdrops/graphql/envio/queries/action.mdx new file mode 100644 index 00000000..5b6c0283 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/action.mdx @@ -0,0 +1,102 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Action" + +```graphql +Action( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp +): [Action!]! +``` + +### Arguments + +#### [Action.distinct_on](#)[[Action_select_column!]](/docs/api/airdrops/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +#### [Action.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Action.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Action.order_by](#)[[Action_order_by!]](/docs/api/airdrops/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +#### [Action.where](#)[Action_bool_exp](/docs/api/airdrops/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Action](/docs/api/airdrops/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/airdrops/graphql/envio/queries/activity-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/activity-by-pk.mdx new file mode 100644 index 00000000..fc80e3eb --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/activity-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: activity-by-pk +title: Activity_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Activity" using primary key columns + +```graphql +Activity_by_pk( + id: String! +): Activity +``` + +### Arguments + +#### [Activity_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Activity](/docs/api/airdrops/graphql/envio/objects/activity.mdx) + +columns and relationships of "Activity" diff --git a/docs/api/airdrops/graphql/envio/queries/activity.mdx b/docs/api/airdrops/graphql/envio/queries/activity.mdx new file mode 100644 index 00000000..7c23bb03 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/activity.mdx @@ -0,0 +1,102 @@ +--- +id: activity +title: Activity +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Activity" + +```graphql +Activity( + distinct_on: [Activity_select_column!] + limit: Int + offset: Int + order_by: [Activity_order_by!] + where: Activity_bool_exp +): [Activity!]! +``` + +### Arguments + +#### [Activity.distinct_on](#)[[Activity_select_column!]](/docs/api/airdrops/graphql/envio/enums/activity-select-column.mdx) + +distinct select on columns + +#### [Activity.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Activity.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Activity.order_by](#)[[Activity_order_by!]](/docs/api/airdrops/graphql/envio/inputs/activity-order-by.mdx) + +sort the rows by one or more columns + +#### [Activity.where](#)[Activity_bool_exp](/docs/api/airdrops/graphql/envio/inputs/activity-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Activity](/docs/api/airdrops/graphql/envio/objects/activity.mdx) + +columns and relationships of "Activity" diff --git a/docs/api/airdrops/graphql/envio/queries/asset-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/asset-by-pk.mdx new file mode 100644 index 00000000..e016f8cd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/asset-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: asset-by-pk +title: Asset_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Asset" using primary key columns + +```graphql +Asset_by_pk( + id: String! +): Asset +``` + +### Arguments + +#### [Asset_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Asset](/docs/api/airdrops/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/airdrops/graphql/envio/queries/asset.mdx b/docs/api/airdrops/graphql/envio/queries/asset.mdx new file mode 100644 index 00000000..2070d765 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/asset.mdx @@ -0,0 +1,102 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Asset" + +```graphql +Asset( + distinct_on: [Asset_select_column!] + limit: Int + offset: Int + order_by: [Asset_order_by!] + where: Asset_bool_exp +): [Asset!]! +``` + +### Arguments + +#### [Asset.distinct_on](#)[[Asset_select_column!]](/docs/api/airdrops/graphql/envio/enums/asset-select-column.mdx) + +distinct select on columns + +#### [Asset.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Asset.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Asset.order_by](#)[[Asset_order_by!]](/docs/api/airdrops/graphql/envio/inputs/asset-order-by.mdx) + +sort the rows by one or more columns + +#### [Asset.where](#)[Asset_bool_exp](/docs/api/airdrops/graphql/envio/inputs/asset-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Asset](/docs/api/airdrops/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/airdrops/graphql/envio/queries/campaign-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/campaign-by-pk.mdx new file mode 100644 index 00000000..a9948890 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/campaign-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: campaign-by-pk +title: Campaign_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Campaign" using primary key columns + +```graphql +Campaign_by_pk( + id: String! +): Campaign +``` + +### Arguments + +#### [Campaign_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Campaign](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +columns and relationships of "Campaign" diff --git a/docs/api/airdrops/graphql/envio/queries/campaign.mdx b/docs/api/airdrops/graphql/envio/queries/campaign.mdx new file mode 100644 index 00000000..b7ebec16 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/campaign.mdx @@ -0,0 +1,102 @@ +--- +id: campaign +title: Campaign +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Campaign" + +```graphql +Campaign( + distinct_on: [Campaign_select_column!] + limit: Int + offset: Int + order_by: [Campaign_order_by!] + where: Campaign_bool_exp +): [Campaign!]! +``` + +### Arguments + +#### [Campaign.distinct_on](#)[[Campaign_select_column!]](/docs/api/airdrops/graphql/envio/enums/campaign-select-column.mdx) + +distinct select on columns + +#### [Campaign.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Campaign.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Campaign.order_by](#)[[Campaign_order_by!]](/docs/api/airdrops/graphql/envio/inputs/campaign-order-by.mdx) + +sort the rows by one or more columns + +#### [Campaign.where](#)[Campaign_bool_exp](/docs/api/airdrops/graphql/envio/inputs/campaign-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Campaign](/docs/api/airdrops/graphql/envio/objects/campaign.mdx) + +columns and relationships of "Campaign" diff --git a/docs/api/airdrops/graphql/envio/queries/chain-metadata-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/chain-metadata-by-pk.mdx new file mode 100644 index 00000000..2e91cfe5 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/chain-metadata-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: chain-metadata-by-pk +title: chain_metadata_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "chain_metadata" using primary key columns + +```graphql +chain_metadata_by_pk( + chain_id: Int! +): chain_metadata +``` + +### Arguments + +#### [chain_metadata_by_pk.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +### Type + +#### [chain_metadata](/docs/api/airdrops/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/airdrops/graphql/envio/queries/chain-metadata.mdx b/docs/api/airdrops/graphql/envio/queries/chain-metadata.mdx new file mode 100644 index 00000000..2669a153 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/chain-metadata.mdx @@ -0,0 +1,102 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "chain_metadata" + +```graphql +chain_metadata( + distinct_on: [chain_metadata_select_column!] + limit: Int + offset: Int + order_by: [chain_metadata_order_by!] + where: chain_metadata_bool_exp +): [chain_metadata!]! +``` + +### Arguments + +#### [chain_metadata.distinct_on](#)[[chain_metadata_select_column!]](/docs/api/airdrops/graphql/envio/enums/chain-metadata-select-column.mdx) + +distinct select on columns + +#### [chain_metadata.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [chain_metadata.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [chain_metadata.order_by](#)[[chain_metadata_order_by!]](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-order-by.mdx) + +sort the rows by one or more columns + +#### [chain_metadata.where](#)[chain_metadata_bool_exp](/docs/api/airdrops/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [chain_metadata](/docs/api/airdrops/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx new file mode 100644 index 00000000..d4d1d250 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: dynamic-contract-registry-by-pk +title: dynamic_contract_registry_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "dynamic_contract_registry" using primary key columns + +```graphql +dynamic_contract_registry_by_pk( + id: String! +): dynamic_contract_registry +``` + +### Arguments + +#### [dynamic_contract_registry_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [dynamic_contract_registry](/docs/api/airdrops/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry.mdx b/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry.mdx new file mode 100644 index 00000000..49f8a608 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/dynamic-contract-registry.mdx @@ -0,0 +1,102 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "dynamic_contract_registry" + +```graphql +dynamic_contract_registry( + distinct_on: [dynamic_contract_registry_select_column!] + limit: Int + offset: Int + order_by: [dynamic_contract_registry_order_by!] + where: dynamic_contract_registry_bool_exp +): [dynamic_contract_registry!]! +``` + +### Arguments + +#### [dynamic_contract_registry.distinct_on](#)[[dynamic_contract_registry_select_column!]](/docs/api/airdrops/graphql/envio/enums/dynamic-contract-registry-select-column.mdx) + +distinct select on columns + +#### [dynamic_contract_registry.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [dynamic_contract_registry.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [dynamic_contract_registry.order_by](#)[[dynamic_contract_registry_order_by!]](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx) + +sort the rows by one or more columns + +#### [dynamic_contract_registry.where](#)[dynamic_contract_registry_bool_exp](/docs/api/airdrops/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [dynamic_contract_registry](/docs/api/airdrops/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx new file mode 100644 index 00000000..9a2d8495 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx @@ -0,0 +1,83 @@ +--- +id: end-of-block-range-scanned-data-by-pk +title: end_of_block_range_scanned_data_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" using primary key columns + +```graphql +end_of_block_range_scanned_data_by_pk( + block_number: Int! + chain_id: Int! +): end_of_block_range_scanned_data +``` + +### Arguments + +#### [end_of_block_range_scanned_data_by_pk.block_number](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_by_pk.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/airdrops/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data.mdx b/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..d1349040 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/end-of-block-range-scanned-data.mdx @@ -0,0 +1,102 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" + +```graphql +end_of_block_range_scanned_data( + distinct_on: [end_of_block_range_scanned_data_select_column!] + limit: Int + offset: Int + order_by: [end_of_block_range_scanned_data_order_by!] + where: end_of_block_range_scanned_data_bool_exp +): [end_of_block_range_scanned_data!]! +``` + +### Arguments + +#### [end_of_block_range_scanned_data.distinct_on](#)[[end_of_block_range_scanned_data_select_column!]](/docs/api/airdrops/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx) + +distinct select on columns + +#### [end_of_block_range_scanned_data.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [end_of_block_range_scanned_data.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [end_of_block_range_scanned_data.order_by](#)[[end_of_block_range_scanned_data_order_by!]](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx) + +sort the rows by one or more columns + +#### [end_of_block_range_scanned_data.where](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/airdrops/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/airdrops/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/airdrops/graphql/envio/queries/event-sync-state-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/event-sync-state-by-pk.mdx new file mode 100644 index 00000000..e3046f0b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/event-sync-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: event-sync-state-by-pk +title: event_sync_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "event_sync_state" using primary key columns + +```graphql +event_sync_state_by_pk( + chain_id: Int! +): event_sync_state +``` + +### Arguments + +#### [event_sync_state_by_pk.chain_id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +### Type + +#### [event_sync_state](/docs/api/airdrops/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/airdrops/graphql/envio/queries/event-sync-state.mdx b/docs/api/airdrops/graphql/envio/queries/event-sync-state.mdx new file mode 100644 index 00000000..28620758 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/event-sync-state.mdx @@ -0,0 +1,102 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "event_sync_state" + +```graphql +event_sync_state( + distinct_on: [event_sync_state_select_column!] + limit: Int + offset: Int + order_by: [event_sync_state_order_by!] + where: event_sync_state_bool_exp +): [event_sync_state!]! +``` + +### Arguments + +#### [event_sync_state.distinct_on](#)[[event_sync_state_select_column!]](/docs/api/airdrops/graphql/envio/enums/event-sync-state-select-column.mdx) + +distinct select on columns + +#### [event_sync_state.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [event_sync_state.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [event_sync_state.order_by](#)[[event_sync_state_order_by!]](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-order-by.mdx) + +sort the rows by one or more columns + +#### [event_sync_state.where](#)[event_sync_state_bool_exp](/docs/api/airdrops/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [event_sync_state](/docs/api/airdrops/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/airdrops/graphql/envio/queries/factory-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/factory-by-pk.mdx new file mode 100644 index 00000000..cfa7d1e9 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/factory-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: factory-by-pk +title: Factory_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Factory" using primary key columns + +```graphql +Factory_by_pk( + id: String! +): Factory +``` + +### Arguments + +#### [Factory_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Factory](/docs/api/airdrops/graphql/envio/objects/factory.mdx) + +columns and relationships of "Factory" diff --git a/docs/api/airdrops/graphql/envio/queries/factory.mdx b/docs/api/airdrops/graphql/envio/queries/factory.mdx new file mode 100644 index 00000000..62cb1106 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/factory.mdx @@ -0,0 +1,102 @@ +--- +id: factory +title: Factory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Factory" + +```graphql +Factory( + distinct_on: [Factory_select_column!] + limit: Int + offset: Int + order_by: [Factory_order_by!] + where: Factory_bool_exp +): [Factory!]! +``` + +### Arguments + +#### [Factory.distinct_on](#)[[Factory_select_column!]](/docs/api/airdrops/graphql/envio/enums/factory-select-column.mdx) + +distinct select on columns + +#### [Factory.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Factory.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Factory.order_by](#)[[Factory_order_by!]](/docs/api/airdrops/graphql/envio/inputs/factory-order-by.mdx) + +sort the rows by one or more columns + +#### [Factory.where](#)[Factory_bool_exp](/docs/api/airdrops/graphql/envio/inputs/factory-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Factory](/docs/api/airdrops/graphql/envio/objects/factory.mdx) + +columns and relationships of "Factory" diff --git a/docs/api/airdrops/graphql/envio/queries/persisted-state-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/persisted-state-by-pk.mdx new file mode 100644 index 00000000..d31472c2 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/persisted-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: persisted-state-by-pk +title: persisted_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "persisted_state" using primary key columns + +```graphql +persisted_state_by_pk( + id: Int! +): persisted_state +``` + +### Arguments + +#### [persisted_state_by_pk.id](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +### Type + +#### [persisted_state](/docs/api/airdrops/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/airdrops/graphql/envio/queries/persisted-state.mdx b/docs/api/airdrops/graphql/envio/queries/persisted-state.mdx new file mode 100644 index 00000000..03ac4566 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/persisted-state.mdx @@ -0,0 +1,102 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "persisted_state" + +```graphql +persisted_state( + distinct_on: [persisted_state_select_column!] + limit: Int + offset: Int + order_by: [persisted_state_order_by!] + where: persisted_state_bool_exp +): [persisted_state!]! +``` + +### Arguments + +#### [persisted_state.distinct_on](#)[[persisted_state_select_column!]](/docs/api/airdrops/graphql/envio/enums/persisted-state-select-column.mdx) + +distinct select on columns + +#### [persisted_state.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [persisted_state.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [persisted_state.order_by](#)[[persisted_state_order_by!]](/docs/api/airdrops/graphql/envio/inputs/persisted-state-order-by.mdx) + +sort the rows by one or more columns + +#### [persisted_state.where](#)[persisted_state_bool_exp](/docs/api/airdrops/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [persisted_state](/docs/api/airdrops/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/airdrops/graphql/envio/queries/raw-events-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/raw-events-by-pk.mdx new file mode 100644 index 00000000..b248409b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/raw-events-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: raw-events-by-pk +title: raw_events_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "raw_events" using primary key columns + +```graphql +raw_events_by_pk( + serial: Int! +): raw_events +``` + +### Arguments + +#### [raw_events_by_pk.serial](#)[Int!](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +### Type + +#### [raw_events](/docs/api/airdrops/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/airdrops/graphql/envio/queries/raw-events.mdx b/docs/api/airdrops/graphql/envio/queries/raw-events.mdx new file mode 100644 index 00000000..efe59a39 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/raw-events.mdx @@ -0,0 +1,102 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "raw_events" + +```graphql +raw_events( + distinct_on: [raw_events_select_column!] + limit: Int + offset: Int + order_by: [raw_events_order_by!] + where: raw_events_bool_exp +): [raw_events!]! +``` + +### Arguments + +#### [raw_events.distinct_on](#)[[raw_events_select_column!]](/docs/api/airdrops/graphql/envio/enums/raw-events-select-column.mdx) + +distinct select on columns + +#### [raw_events.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [raw_events.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [raw_events.order_by](#)[[raw_events_order_by!]](/docs/api/airdrops/graphql/envio/inputs/raw-events-order-by.mdx) + +sort the rows by one or more columns + +#### [raw_events.where](#)[raw_events_bool_exp](/docs/api/airdrops/graphql/envio/inputs/raw-events-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [raw_events](/docs/api/airdrops/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/airdrops/graphql/envio/queries/tranche-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/tranche-by-pk.mdx new file mode 100644 index 00000000..0164f706 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/tranche-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: tranche-by-pk +title: Tranche_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Tranche" using primary key columns + +```graphql +Tranche_by_pk( + id: String! +): Tranche +``` + +### Arguments + +#### [Tranche_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Tranche](/docs/api/airdrops/graphql/envio/objects/tranche.mdx) + +columns and relationships of "Tranche" diff --git a/docs/api/airdrops/graphql/envio/queries/tranche.mdx b/docs/api/airdrops/graphql/envio/queries/tranche.mdx new file mode 100644 index 00000000..8dc9d48e --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/tranche.mdx @@ -0,0 +1,102 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Tranche" + +```graphql +Tranche( + distinct_on: [Tranche_select_column!] + limit: Int + offset: Int + order_by: [Tranche_order_by!] + where: Tranche_bool_exp +): [Tranche!]! +``` + +### Arguments + +#### [Tranche.distinct_on](#)[[Tranche_select_column!]](/docs/api/airdrops/graphql/envio/enums/tranche-select-column.mdx) + +distinct select on columns + +#### [Tranche.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Tranche.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Tranche.order_by](#)[[Tranche_order_by!]](/docs/api/airdrops/graphql/envio/inputs/tranche-order-by.mdx) + +sort the rows by one or more columns + +#### [Tranche.where](#)[Tranche_bool_exp](/docs/api/airdrops/graphql/envio/inputs/tranche-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Tranche](/docs/api/airdrops/graphql/envio/objects/tranche.mdx) + +columns and relationships of "Tranche" diff --git a/docs/api/airdrops/graphql/envio/queries/watcher-by-pk.mdx b/docs/api/airdrops/graphql/envio/queries/watcher-by-pk.mdx new file mode 100644 index 00000000..fa68248b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/watcher-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: watcher-by-pk +title: Watcher_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Watcher" using primary key columns + +```graphql +Watcher_by_pk( + id: String! +): Watcher +``` + +### Arguments + +#### [Watcher_by_pk.id](#)[String!](/docs/api/airdrops/graphql/envio/scalars/string.mdx) + +### Type + +#### [Watcher](/docs/api/airdrops/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/airdrops/graphql/envio/queries/watcher.mdx b/docs/api/airdrops/graphql/envio/queries/watcher.mdx new file mode 100644 index 00000000..72299966 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/queries/watcher.mdx @@ -0,0 +1,102 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +fetch data from the table: "Watcher" + +```graphql +Watcher( + distinct_on: [Watcher_select_column!] + limit: Int + offset: Int + order_by: [Watcher_order_by!] + where: Watcher_bool_exp +): [Watcher!]! +``` + +### Arguments + +#### [Watcher.distinct_on](#)[[Watcher_select_column!]](/docs/api/airdrops/graphql/envio/enums/watcher-select-column.mdx) + +distinct select on columns + +#### [Watcher.limit](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Watcher.offset](#)[Int](/docs/api/airdrops/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Watcher.order_by](#)[[Watcher_order_by!]](/docs/api/airdrops/graphql/envio/inputs/watcher-order-by.mdx) + +sort the rows by one or more columns + +#### [Watcher.where](#)[Watcher_bool_exp](/docs/api/airdrops/graphql/envio/inputs/watcher-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Watcher](/docs/api/airdrops/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/airdrops/graphql/envio/scalars/_category_.yml b/docs/api/airdrops/graphql/envio/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx b/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx new file mode 100644 index 00000000..21e4645d --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/actioncategory.mdx @@ -0,0 +1,68 @@ +--- +id: actioncategory +title: actioncategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar actioncategory +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/boolean.mdx b/docs/api/airdrops/graphql/envio/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx b/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx new file mode 100644 index 00000000..db5cc8a6 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/campaigncategory.mdx @@ -0,0 +1,68 @@ +--- +id: campaigncategory +title: campaigncategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar campaigncategory +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx b/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx new file mode 100644 index 00000000..99414710 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/contract-type.mdx @@ -0,0 +1,68 @@ +--- +id: contract-type +title: contract_type +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar contract_type +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/int.mdx b/docs/api/airdrops/graphql/envio/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx b/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx new file mode 100644 index 00000000..0949bff4 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/jsonb.mdx @@ -0,0 +1,68 @@ +--- +id: jsonb +title: jsonb +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar jsonb +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/numeric.mdx b/docs/api/airdrops/graphql/envio/scalars/numeric.mdx new file mode 100644 index 00000000..f30f26d5 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/numeric.mdx @@ -0,0 +1,68 @@ +--- +id: numeric +title: numeric +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar numeric +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/string.mdx b/docs/api/airdrops/graphql/envio/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx b/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx new file mode 100644 index 00000000..2787af52 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar timestamp +``` diff --git a/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx b/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx new file mode 100644 index 00000000..f6fafd93 --- /dev/null +++ b/docs/api/airdrops/graphql/envio/scalars/timestamptz.mdx @@ -0,0 +1,68 @@ +--- +id: timestamptz +title: timestamptz +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar timestamptz +``` diff --git a/docs/api/airdrops/graphql/the-graph/_category_.yml b/docs/api/airdrops/graphql/the-graph/_category_.yml new file mode 100644 index 00000000..3dfd192f --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: The Graph +position: 2 diff --git a/docs/api/airdrops/graphql/the-graph/enums/_category_.yml b/docs/api/airdrops/graphql/the-graph/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx b/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx new file mode 100644 index 00000000..1aee346b --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx @@ -0,0 +1,83 @@ +--- +id: action-category +title: ActionCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum ActionCategory { + Claim + Clawback + Create + TransferAdmin +} +``` + +### Values + +#### [ActionCategory.Claim](#) + +#### [ActionCategory.Clawback](#) + +#### [ActionCategory.Create](#) + +#### [ActionCategory.TransferAdmin](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/action-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/action-order-by.mdx new file mode 100644 index 00000000..b6b50461 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/action-order-by.mdx @@ -0,0 +1,242 @@ +--- +id: action-order-by +title: Action_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Action_orderBy { + id + subgraphId + block + chainId + from + hash + timestamp + campaign + campaign__id + campaign__chainId + campaign__subgraphId + campaign__hash + campaign__timestamp + campaign__category + campaign__name + campaign__nickname + campaign__address + campaign__admin + campaign__aggregateAmount + campaign__claimedAmount + campaign__claimedCount + campaign__clawbackTime + campaign__expiration + campaign__expires + campaign__fee + campaign__ipfsCID + campaign__position + campaign__root + campaign__totalRecipients + campaign__version + campaign__startTime + campaign__endTime + campaign__unlockPercentage + campaign__lockup + campaign__streamCancelable + campaign__streamCliff + campaign__streamCliffDuration + campaign__streamCliffPercentage + campaign__streamInitial + campaign__streamInitialPercentage + campaign__streamShape + campaign__streamStart + campaign__streamStartTime + campaign__streamTotalDuration + campaign__streamTransferable + category + fee + claimAmount + claimIndex + claimRecipient + claimTo + claimStreamId + claimTokenId + forgoneAmount + clawbackAmount + clawbackFrom + clawbackTo +} +``` + +### Values + +#### [Action_orderBy.id](#) + +#### [Action_orderBy.subgraphId](#) + +#### [Action_orderBy.block](#) + +#### [Action_orderBy.chainId](#) + +#### [Action_orderBy.from](#) + +#### [Action_orderBy.hash](#) + +#### [Action_orderBy.timestamp](#) + +#### [Action_orderBy.campaign](#) + +#### [Action_orderBy.campaign\_\_id](#) + +#### [Action_orderBy.campaign\_\_chainId](#) + +#### [Action_orderBy.campaign\_\_subgraphId](#) + +#### [Action_orderBy.campaign\_\_hash](#) + +#### [Action_orderBy.campaign\_\_timestamp](#) + +#### [Action_orderBy.campaign\_\_category](#) + +#### [Action_orderBy.campaign\_\_name](#) + +#### [Action_orderBy.campaign\_\_nickname](#) + +#### [Action_orderBy.campaign\_\_address](#) + +#### [Action_orderBy.campaign\_\_admin](#) + +#### [Action_orderBy.campaign\_\_aggregateAmount](#) + +#### [Action_orderBy.campaign\_\_claimedAmount](#) + +#### [Action_orderBy.campaign\_\_claimedCount](#) + +#### [Action_orderBy.campaign\_\_clawbackTime](#) + +#### [Action_orderBy.campaign\_\_expiration](#) + +#### [Action_orderBy.campaign\_\_expires](#) + +#### [Action_orderBy.campaign\_\_fee](#) + +#### [Action_orderBy.campaign\_\_ipfsCID](#) + +#### [Action_orderBy.campaign\_\_position](#) + +#### [Action_orderBy.campaign\_\_root](#) + +#### [Action_orderBy.campaign\_\_totalRecipients](#) + +#### [Action_orderBy.campaign\_\_version](#) + +#### [Action_orderBy.campaign\_\_startTime](#) + +#### [Action_orderBy.campaign\_\_endTime](#) + +#### [Action_orderBy.campaign\_\_unlockPercentage](#) + +#### [Action_orderBy.campaign\_\_lockup](#) + +#### [Action_orderBy.campaign\_\_streamCancelable](#) + +#### [Action_orderBy.campaign\_\_streamCliff](#) + +#### [Action_orderBy.campaign\_\_streamCliffDuration](#) + +#### [Action_orderBy.campaign\_\_streamCliffPercentage](#) + +#### [Action_orderBy.campaign\_\_streamInitial](#) + +#### [Action_orderBy.campaign\_\_streamInitialPercentage](#) + +#### [Action_orderBy.campaign\_\_streamShape](#) + +#### [Action_orderBy.campaign\_\_streamStart](#) + +#### [Action_orderBy.campaign\_\_streamStartTime](#) + +#### [Action_orderBy.campaign\_\_streamTotalDuration](#) + +#### [Action_orderBy.campaign\_\_streamTransferable](#) + +#### [Action_orderBy.category](#) + +#### [Action_orderBy.fee](#) + +#### [Action_orderBy.claimAmount](#) + +#### [Action_orderBy.claimIndex](#) + +#### [Action_orderBy.claimRecipient](#) + +#### [Action_orderBy.claimTo](#) + +#### [Action_orderBy.claimStreamId](#) + +#### [Action_orderBy.claimTokenId](#) + +#### [Action_orderBy.forgoneAmount](#) + +#### [Action_orderBy.clawbackAmount](#) + +#### [Action_orderBy.clawbackFrom](#) + +#### [Action_orderBy.clawbackTo](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/activity-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/activity-order-by.mdx new file mode 100644 index 00000000..d25ecc8d --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/activity-order-by.mdx @@ -0,0 +1,200 @@ +--- +id: activity-order-by +title: Activity_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Activity_orderBy { + id + amount + campaign + campaign__id + campaign__chainId + campaign__subgraphId + campaign__hash + campaign__timestamp + campaign__category + campaign__name + campaign__nickname + campaign__address + campaign__admin + campaign__aggregateAmount + campaign__claimedAmount + campaign__claimedCount + campaign__clawbackTime + campaign__expiration + campaign__expires + campaign__fee + campaign__ipfsCID + campaign__position + campaign__root + campaign__totalRecipients + campaign__version + campaign__startTime + campaign__endTime + campaign__unlockPercentage + campaign__lockup + campaign__streamCancelable + campaign__streamCliff + campaign__streamCliffDuration + campaign__streamCliffPercentage + campaign__streamInitial + campaign__streamInitialPercentage + campaign__streamShape + campaign__streamStart + campaign__streamStartTime + campaign__streamTotalDuration + campaign__streamTransferable + claims + day + timestamp +} +``` + +### Values + +#### [Activity_orderBy.id](#) + +#### [Activity_orderBy.amount](#) + +#### [Activity_orderBy.campaign](#) + +#### [Activity_orderBy.campaign\_\_id](#) + +#### [Activity_orderBy.campaign\_\_chainId](#) + +#### [Activity_orderBy.campaign\_\_subgraphId](#) + +#### [Activity_orderBy.campaign\_\_hash](#) + +#### [Activity_orderBy.campaign\_\_timestamp](#) + +#### [Activity_orderBy.campaign\_\_category](#) + +#### [Activity_orderBy.campaign\_\_name](#) + +#### [Activity_orderBy.campaign\_\_nickname](#) + +#### [Activity_orderBy.campaign\_\_address](#) + +#### [Activity_orderBy.campaign\_\_admin](#) + +#### [Activity_orderBy.campaign\_\_aggregateAmount](#) + +#### [Activity_orderBy.campaign\_\_claimedAmount](#) + +#### [Activity_orderBy.campaign\_\_claimedCount](#) + +#### [Activity_orderBy.campaign\_\_clawbackTime](#) + +#### [Activity_orderBy.campaign\_\_expiration](#) + +#### [Activity_orderBy.campaign\_\_expires](#) + +#### [Activity_orderBy.campaign\_\_fee](#) + +#### [Activity_orderBy.campaign\_\_ipfsCID](#) + +#### [Activity_orderBy.campaign\_\_position](#) + +#### [Activity_orderBy.campaign\_\_root](#) + +#### [Activity_orderBy.campaign\_\_totalRecipients](#) + +#### [Activity_orderBy.campaign\_\_version](#) + +#### [Activity_orderBy.campaign\_\_startTime](#) + +#### [Activity_orderBy.campaign\_\_endTime](#) + +#### [Activity_orderBy.campaign\_\_unlockPercentage](#) + +#### [Activity_orderBy.campaign\_\_lockup](#) + +#### [Activity_orderBy.campaign\_\_streamCancelable](#) + +#### [Activity_orderBy.campaign\_\_streamCliff](#) + +#### [Activity_orderBy.campaign\_\_streamCliffDuration](#) + +#### [Activity_orderBy.campaign\_\_streamCliffPercentage](#) + +#### [Activity_orderBy.campaign\_\_streamInitial](#) + +#### [Activity_orderBy.campaign\_\_streamInitialPercentage](#) + +#### [Activity_orderBy.campaign\_\_streamShape](#) + +#### [Activity_orderBy.campaign\_\_streamStart](#) + +#### [Activity_orderBy.campaign\_\_streamStartTime](#) + +#### [Activity_orderBy.campaign\_\_streamTotalDuration](#) + +#### [Activity_orderBy.campaign\_\_streamTransferable](#) + +#### [Activity_orderBy.claims](#) + +#### [Activity_orderBy.day](#) + +#### [Activity_orderBy.timestamp](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/aggregation-interval.mdx b/docs/api/airdrops/graphql/the-graph/enums/aggregation-interval.mdx new file mode 100644 index 00000000..5d3091f6 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/aggregation-interval.mdx @@ -0,0 +1,77 @@ +--- +id: aggregation-interval +title: Aggregation_interval +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Aggregation_interval { + hour + day +} +``` + +### Values + +#### [Aggregation_interval.hour](#) + +#### [Aggregation_interval.day](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/asset-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/asset-order-by.mdx new file mode 100644 index 00000000..8131fa50 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/asset-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: asset-order-by +title: Asset_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Asset_orderBy { + id + address + chainId + decimals + name + symbol + campaigns +} +``` + +### Values + +#### [Asset_orderBy.id](#) + +#### [Asset_orderBy.address](#) + +#### [Asset_orderBy.chainId](#) + +#### [Asset_orderBy.decimals](#) + +#### [Asset_orderBy.name](#) + +#### [Asset_orderBy.symbol](#) + +#### [Asset_orderBy.campaigns](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx b/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx new file mode 100644 index 00000000..554a6880 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx @@ -0,0 +1,83 @@ +--- +id: campaign-category +title: CampaignCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum CampaignCategory { + Instant + LockupLinear + LockupTranched + VCA +} +``` + +### Values + +#### [CampaignCategory.Instant](#) + +#### [CampaignCategory.LockupLinear](#) + +#### [CampaignCategory.LockupTranched](#) + +#### [CampaignCategory.VCA](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx new file mode 100644 index 00000000..e942bd55 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx @@ -0,0 +1,290 @@ +--- +id: campaign-order-by +title: Campaign_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Campaign_orderBy { + id + chainId + subgraphId + hash + timestamp + actions + clawbackAction + clawbackAction__id + clawbackAction__subgraphId + clawbackAction__block + clawbackAction__chainId + clawbackAction__from + clawbackAction__hash + clawbackAction__timestamp + clawbackAction__category + clawbackAction__fee + clawbackAction__claimAmount + clawbackAction__claimIndex + clawbackAction__claimRecipient + clawbackAction__claimTo + clawbackAction__claimStreamId + clawbackAction__claimTokenId + clawbackAction__forgoneAmount + clawbackAction__clawbackAmount + clawbackAction__clawbackFrom + clawbackAction__clawbackTo + category + name + nickname + activities + address + admin + aggregateAmount + asset + asset__id + asset__address + asset__chainId + asset__decimals + asset__name + asset__symbol + claimedAmount + claimedCount + clawbackTime + expiration + expires + factory + factory__id + factory__address + factory__alias + factory__campaignCounter + factory__chainId + fee + ipfsCID + position + root + totalRecipients + version + startTime + endTime + unlockPercentage + lockup + streamCancelable + streamCliff + streamCliffDuration + streamCliffPercentage + streamInitial + streamInitialPercentage + streamShape + streamStart + streamStartTime + streamTotalDuration + streamTranches + streamTransferable +} +``` + +### Values + +#### [Campaign_orderBy.id](#) + +#### [Campaign_orderBy.chainId](#) + +#### [Campaign_orderBy.subgraphId](#) + +#### [Campaign_orderBy.hash](#) + +#### [Campaign_orderBy.timestamp](#) + +#### [Campaign_orderBy.actions](#) + +#### [Campaign_orderBy.clawbackAction](#) + +#### [Campaign_orderBy.clawbackAction\_\_id](#) + +#### [Campaign_orderBy.clawbackAction\_\_subgraphId](#) + +#### [Campaign_orderBy.clawbackAction\_\_block](#) + +#### [Campaign_orderBy.clawbackAction\_\_chainId](#) + +#### [Campaign_orderBy.clawbackAction\_\_from](#) + +#### [Campaign_orderBy.clawbackAction\_\_hash](#) + +#### [Campaign_orderBy.clawbackAction\_\_timestamp](#) + +#### [Campaign_orderBy.clawbackAction\_\_category](#) + +#### [Campaign_orderBy.clawbackAction\_\_fee](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimAmount](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimIndex](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimRecipient](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimTo](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimStreamId](#) + +#### [Campaign_orderBy.clawbackAction\_\_claimTokenId](#) + +#### [Campaign_orderBy.clawbackAction\_\_forgoneAmount](#) + +#### [Campaign_orderBy.clawbackAction\_\_clawbackAmount](#) + +#### [Campaign_orderBy.clawbackAction\_\_clawbackFrom](#) + +#### [Campaign_orderBy.clawbackAction\_\_clawbackTo](#) + +#### [Campaign_orderBy.category](#) + +#### [Campaign_orderBy.name](#) + +#### [Campaign_orderBy.nickname](#) + +#### [Campaign_orderBy.activities](#) + +#### [Campaign_orderBy.address](#) + +#### [Campaign_orderBy.admin](#) + +#### [Campaign_orderBy.aggregateAmount](#) + +#### [Campaign_orderBy.asset](#) + +#### [Campaign_orderBy.asset\_\_id](#) + +#### [Campaign_orderBy.asset\_\_address](#) + +#### [Campaign_orderBy.asset\_\_chainId](#) + +#### [Campaign_orderBy.asset\_\_decimals](#) + +#### [Campaign_orderBy.asset\_\_name](#) + +#### [Campaign_orderBy.asset\_\_symbol](#) + +#### [Campaign_orderBy.claimedAmount](#) + +#### [Campaign_orderBy.claimedCount](#) + +#### [Campaign_orderBy.clawbackTime](#) + +#### [Campaign_orderBy.expiration](#) + +#### [Campaign_orderBy.expires](#) + +#### [Campaign_orderBy.factory](#) + +#### [Campaign_orderBy.factory\_\_id](#) + +#### [Campaign_orderBy.factory\_\_address](#) + +#### [Campaign_orderBy.factory\_\_alias](#) + +#### [Campaign_orderBy.factory\_\_campaignCounter](#) + +#### [Campaign_orderBy.factory\_\_chainId](#) + +#### [Campaign_orderBy.fee](#) + +#### [Campaign_orderBy.ipfsCID](#) + +#### [Campaign_orderBy.position](#) + +#### [Campaign_orderBy.root](#) + +#### [Campaign_orderBy.totalRecipients](#) + +#### [Campaign_orderBy.version](#) + +#### [Campaign_orderBy.startTime](#) + +#### [Campaign_orderBy.endTime](#) + +#### [Campaign_orderBy.unlockPercentage](#) + +#### [Campaign_orderBy.lockup](#) + +#### [Campaign_orderBy.streamCancelable](#) + +#### [Campaign_orderBy.streamCliff](#) + +#### [Campaign_orderBy.streamCliffDuration](#) + +#### [Campaign_orderBy.streamCliffPercentage](#) + +#### [Campaign_orderBy.streamInitial](#) + +#### [Campaign_orderBy.streamInitialPercentage](#) + +#### [Campaign_orderBy.streamShape](#) + +#### [Campaign_orderBy.streamStart](#) + +#### [Campaign_orderBy.streamStartTime](#) + +#### [Campaign_orderBy.streamTotalDuration](#) + +#### [Campaign_orderBy.streamTranches](#) + +#### [Campaign_orderBy.streamTransferable](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/factory-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/factory-order-by.mdx new file mode 100644 index 00000000..24717151 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/factory-order-by.mdx @@ -0,0 +1,89 @@ +--- +id: factory-order-by +title: Factory_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Factory_orderBy { + id + address + alias + campaignCounter + chainId + campaigns +} +``` + +### Values + +#### [Factory_orderBy.id](#) + +#### [Factory_orderBy.address](#) + +#### [Factory_orderBy.alias](#) + +#### [Factory_orderBy.campaignCounter](#) + +#### [Factory_orderBy.chainId](#) + +#### [Factory_orderBy.campaigns](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx b/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx new file mode 100644 index 00000000..028fa7ab --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx @@ -0,0 +1,77 @@ +--- +id: order-direction +title: OrderDirection +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Defines the order direction, either ascending or descending + +```graphql +enum OrderDirection { + asc + desc +} +``` + +### Values + +#### [OrderDirection.asc](#) + +#### [OrderDirection.desc](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx b/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx new file mode 100644 index 00000000..f1af4993 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx @@ -0,0 +1,81 @@ +--- +id: subgraph-error-policy +title: _SubgraphErrorPolicy_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum _SubgraphErrorPolicy_ { + allow + deny +} +``` + +### Values + +#### [\_SubgraphErrorPolicy\_.allow](#) + +Data will be returned even if the subgraph has indexing errors + +#### [\_SubgraphErrorPolicy\_.deny](#) + +If the subgraph has indexing errors, data will be omitted. The default. diff --git a/docs/api/airdrops/graphql/the-graph/enums/tranche-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/tranche-order-by.mdx new file mode 100644 index 00000000..fb9260ab --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/tranche-order-by.mdx @@ -0,0 +1,209 @@ +--- +id: tranche-order-by +title: Tranche_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Tranche_orderBy { + id + campaign + campaign__id + campaign__chainId + campaign__subgraphId + campaign__hash + campaign__timestamp + campaign__category + campaign__name + campaign__nickname + campaign__address + campaign__admin + campaign__aggregateAmount + campaign__claimedAmount + campaign__claimedCount + campaign__clawbackTime + campaign__expiration + campaign__expires + campaign__fee + campaign__ipfsCID + campaign__position + campaign__root + campaign__totalRecipients + campaign__version + campaign__startTime + campaign__endTime + campaign__unlockPercentage + campaign__lockup + campaign__streamCancelable + campaign__streamCliff + campaign__streamCliffDuration + campaign__streamCliffPercentage + campaign__streamInitial + campaign__streamInitialPercentage + campaign__streamShape + campaign__streamStart + campaign__streamStartTime + campaign__streamTotalDuration + campaign__streamTransferable + duration + endDuration + endPercentage + percentage + position + startDuration + startPercentage +} +``` + +### Values + +#### [Tranche_orderBy.id](#) + +#### [Tranche_orderBy.campaign](#) + +#### [Tranche_orderBy.campaign\_\_id](#) + +#### [Tranche_orderBy.campaign\_\_chainId](#) + +#### [Tranche_orderBy.campaign\_\_subgraphId](#) + +#### [Tranche_orderBy.campaign\_\_hash](#) + +#### [Tranche_orderBy.campaign\_\_timestamp](#) + +#### [Tranche_orderBy.campaign\_\_category](#) + +#### [Tranche_orderBy.campaign\_\_name](#) + +#### [Tranche_orderBy.campaign\_\_nickname](#) + +#### [Tranche_orderBy.campaign\_\_address](#) + +#### [Tranche_orderBy.campaign\_\_admin](#) + +#### [Tranche_orderBy.campaign\_\_aggregateAmount](#) + +#### [Tranche_orderBy.campaign\_\_claimedAmount](#) + +#### [Tranche_orderBy.campaign\_\_claimedCount](#) + +#### [Tranche_orderBy.campaign\_\_clawbackTime](#) + +#### [Tranche_orderBy.campaign\_\_expiration](#) + +#### [Tranche_orderBy.campaign\_\_expires](#) + +#### [Tranche_orderBy.campaign\_\_fee](#) + +#### [Tranche_orderBy.campaign\_\_ipfsCID](#) + +#### [Tranche_orderBy.campaign\_\_position](#) + +#### [Tranche_orderBy.campaign\_\_root](#) + +#### [Tranche_orderBy.campaign\_\_totalRecipients](#) + +#### [Tranche_orderBy.campaign\_\_version](#) + +#### [Tranche_orderBy.campaign\_\_startTime](#) + +#### [Tranche_orderBy.campaign\_\_endTime](#) + +#### [Tranche_orderBy.campaign\_\_unlockPercentage](#) + +#### [Tranche_orderBy.campaign\_\_lockup](#) + +#### [Tranche_orderBy.campaign\_\_streamCancelable](#) + +#### [Tranche_orderBy.campaign\_\_streamCliff](#) + +#### [Tranche_orderBy.campaign\_\_streamCliffDuration](#) + +#### [Tranche_orderBy.campaign\_\_streamCliffPercentage](#) + +#### [Tranche_orderBy.campaign\_\_streamInitial](#) + +#### [Tranche_orderBy.campaign\_\_streamInitialPercentage](#) + +#### [Tranche_orderBy.campaign\_\_streamShape](#) + +#### [Tranche_orderBy.campaign\_\_streamStart](#) + +#### [Tranche_orderBy.campaign\_\_streamStartTime](#) + +#### [Tranche_orderBy.campaign\_\_streamTotalDuration](#) + +#### [Tranche_orderBy.campaign\_\_streamTransferable](#) + +#### [Tranche_orderBy.duration](#) + +#### [Tranche_orderBy.endDuration](#) + +#### [Tranche_orderBy.endPercentage](#) + +#### [Tranche_orderBy.percentage](#) + +#### [Tranche_orderBy.position](#) + +#### [Tranche_orderBy.startDuration](#) + +#### [Tranche_orderBy.startPercentage](#) diff --git a/docs/api/airdrops/graphql/the-graph/enums/watcher-order-by.mdx b/docs/api/airdrops/graphql/the-graph/enums/watcher-order-by.mdx new file mode 100644 index 00000000..4d8f9a89 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/enums/watcher-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: watcher-order-by +title: Watcher_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +enum Watcher_orderBy { + id + actionCounter + chainId + logs + campaignCounter +} +``` + +### Values + +#### [Watcher_orderBy.id](#) + +#### [Watcher_orderBy.actionCounter](#) + +#### [Watcher_orderBy.chainId](#) + +#### [Watcher_orderBy.logs](#) + +#### [Watcher_orderBy.campaignCounter](#) diff --git a/docs/api/airdrops/graphql/the-graph/graphql-overview.md b/docs/api/airdrops/graphql/the-graph/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/airdrops/graphql/the-graph/inputs/_category_.yml b/docs/api/airdrops/graphql/the-graph/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx new file mode 100644 index 00000000..ac40fc88 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx @@ -0,0 +1,697 @@ +--- +id: action-filter +title: Action_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Action_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + from: Bytes + from_not: Bytes + from_gt: Bytes + from_lt: Bytes + from_gte: Bytes + from_lte: Bytes + from_in: [Bytes!] + from_not_in: [Bytes!] + from_contains: Bytes + from_not_contains: Bytes + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + campaign: String + campaign_not: String + campaign_gt: String + campaign_lt: String + campaign_gte: String + campaign_lte: String + campaign_in: [String!] + campaign_not_in: [String!] + campaign_contains: String + campaign_contains_nocase: String + campaign_not_contains: String + campaign_not_contains_nocase: String + campaign_starts_with: String + campaign_starts_with_nocase: String + campaign_not_starts_with: String + campaign_not_starts_with_nocase: String + campaign_ends_with: String + campaign_ends_with_nocase: String + campaign_not_ends_with: String + campaign_not_ends_with_nocase: String + campaign_: Campaign_filter + category: ActionCategory + category_not: ActionCategory + category_in: [ActionCategory!] + category_not_in: [ActionCategory!] + fee: BigInt + fee_not: BigInt + fee_gt: BigInt + fee_lt: BigInt + fee_gte: BigInt + fee_lte: BigInt + fee_in: [BigInt!] + fee_not_in: [BigInt!] + claimAmount: BigInt + claimAmount_not: BigInt + claimAmount_gt: BigInt + claimAmount_lt: BigInt + claimAmount_gte: BigInt + claimAmount_lte: BigInt + claimAmount_in: [BigInt!] + claimAmount_not_in: [BigInt!] + claimIndex: BigInt + claimIndex_not: BigInt + claimIndex_gt: BigInt + claimIndex_lt: BigInt + claimIndex_gte: BigInt + claimIndex_lte: BigInt + claimIndex_in: [BigInt!] + claimIndex_not_in: [BigInt!] + claimRecipient: Bytes + claimRecipient_not: Bytes + claimRecipient_gt: Bytes + claimRecipient_lt: Bytes + claimRecipient_gte: Bytes + claimRecipient_lte: Bytes + claimRecipient_in: [Bytes!] + claimRecipient_not_in: [Bytes!] + claimRecipient_contains: Bytes + claimRecipient_not_contains: Bytes + claimTo: Bytes + claimTo_not: Bytes + claimTo_gt: Bytes + claimTo_lt: Bytes + claimTo_gte: Bytes + claimTo_lte: Bytes + claimTo_in: [Bytes!] + claimTo_not_in: [Bytes!] + claimTo_contains: Bytes + claimTo_not_contains: Bytes + claimStreamId: String + claimStreamId_not: String + claimStreamId_gt: String + claimStreamId_lt: String + claimStreamId_gte: String + claimStreamId_lte: String + claimStreamId_in: [String!] + claimStreamId_not_in: [String!] + claimStreamId_contains: String + claimStreamId_contains_nocase: String + claimStreamId_not_contains: String + claimStreamId_not_contains_nocase: String + claimStreamId_starts_with: String + claimStreamId_starts_with_nocase: String + claimStreamId_not_starts_with: String + claimStreamId_not_starts_with_nocase: String + claimStreamId_ends_with: String + claimStreamId_ends_with_nocase: String + claimStreamId_not_ends_with: String + claimStreamId_not_ends_with_nocase: String + claimTokenId: BigInt + claimTokenId_not: BigInt + claimTokenId_gt: BigInt + claimTokenId_lt: BigInt + claimTokenId_gte: BigInt + claimTokenId_lte: BigInt + claimTokenId_in: [BigInt!] + claimTokenId_not_in: [BigInt!] + forgoneAmount: BigInt + forgoneAmount_not: BigInt + forgoneAmount_gt: BigInt + forgoneAmount_lt: BigInt + forgoneAmount_gte: BigInt + forgoneAmount_lte: BigInt + forgoneAmount_in: [BigInt!] + forgoneAmount_not_in: [BigInt!] + clawbackAmount: BigInt + clawbackAmount_not: BigInt + clawbackAmount_gt: BigInt + clawbackAmount_lt: BigInt + clawbackAmount_gte: BigInt + clawbackAmount_lte: BigInt + clawbackAmount_in: [BigInt!] + clawbackAmount_not_in: [BigInt!] + clawbackFrom: Bytes + clawbackFrom_not: Bytes + clawbackFrom_gt: Bytes + clawbackFrom_lt: Bytes + clawbackFrom_gte: Bytes + clawbackFrom_lte: Bytes + clawbackFrom_in: [Bytes!] + clawbackFrom_not_in: [Bytes!] + clawbackFrom_contains: Bytes + clawbackFrom_not_contains: Bytes + clawbackTo: Bytes + clawbackTo_not: Bytes + clawbackTo_gt: Bytes + clawbackTo_lt: Bytes + clawbackTo_gte: Bytes + clawbackTo_lte: Bytes + clawbackTo_in: [Bytes!] + clawbackTo_not_in: [Bytes!] + clawbackTo_contains: Bytes + clawbackTo_not_contains: Bytes + _change_block: BlockChangedFilter + and: [Action_filter] + or: [Action_filter] +} +``` + +### Fields + +#### [Action_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.subgraphId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.from](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.timestamp](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.campaign](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.campaign\_](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Action_filter.category](#)[ActionCategory](/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not](#)[ActionCategory](/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_in](#)[[ActionCategory!]](/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not_in](#)[[ActionCategory!]](/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.fee](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimAmount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimIndex_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimRecipient](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimRecipient_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimTo_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.claimStreamId](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimStreamId_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.claimTokenId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.claimTokenId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.forgoneAmount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackAmount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.clawbackFrom](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackFrom_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.clawbackTo_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Action_filter.and](#)[[Action_filter]](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) + +#### [Action_filter.or](#)[[Action_filter]](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx new file mode 100644 index 00000000..d0671c7e --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx @@ -0,0 +1,301 @@ +--- +id: activity-filter +title: Activity_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Activity_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + campaign: String + campaign_not: String + campaign_gt: String + campaign_lt: String + campaign_gte: String + campaign_lte: String + campaign_in: [String!] + campaign_not_in: [String!] + campaign_contains: String + campaign_contains_nocase: String + campaign_not_contains: String + campaign_not_contains_nocase: String + campaign_starts_with: String + campaign_starts_with_nocase: String + campaign_not_starts_with: String + campaign_not_starts_with_nocase: String + campaign_ends_with: String + campaign_ends_with_nocase: String + campaign_not_ends_with: String + campaign_not_ends_with_nocase: String + campaign_: Campaign_filter + claims: BigInt + claims_not: BigInt + claims_gt: BigInt + claims_lt: BigInt + claims_gte: BigInt + claims_lte: BigInt + claims_in: [BigInt!] + claims_not_in: [BigInt!] + day: BigInt + day_not: BigInt + day_gt: BigInt + day_lt: BigInt + day_gte: BigInt + day_lte: BigInt + day_in: [BigInt!] + day_not_in: [BigInt!] + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Activity_filter] + or: [Activity_filter] +} +``` + +### Fields + +#### [Activity_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.amount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.amount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.campaign](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Activity_filter.campaign\_](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Activity_filter.claims](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.claims_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.day_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Activity_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Activity_filter.and](#)[[Activity_filter]](/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx) + +#### [Activity_filter.or](#)[[Activity_filter]](/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx new file mode 100644 index 00000000..f553a355 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx @@ -0,0 +1,307 @@ +--- +id: asset-filter +title: Asset_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Asset_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_not_contains: Bytes + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + campaigns_: Campaign_filter + _change_block: BlockChangedFilter + and: [Asset_filter] + or: [Asset_filter] +} +``` + +### Fields + +#### [Asset_filter.id](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gt](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lt](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gte](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lte](#)[ID](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_in](#)[[ID!]](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not_in](#)[[ID!]](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.address](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.chainId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.name](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.campaigns\_](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Asset_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Asset_filter.and](#)[[Asset_filter]](/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Asset_filter.or](#)[[Asset_filter]](/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx new file mode 100644 index 00000000..34266de5 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx @@ -0,0 +1,74 @@ +--- +id: block-changed-filter +title: BlockChangedFilter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input BlockChangedFilter { + number_gte: Int! +} +``` + +### Fields + +#### [BlockChangedFilter.number_gte](#)[Int!](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx b/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx new file mode 100644 index 00000000..10f02049 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx @@ -0,0 +1,80 @@ +--- +id: block-height +title: Block_height +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} +``` + +### Fields + +#### [Block_height.hash](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Block_height.number](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [Block_height.number_gte](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx new file mode 100644 index 00000000..ff4b42a9 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx @@ -0,0 +1,1330 @@ +--- +id: campaign-filter +title: Campaign_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Campaign_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + actions_: Action_filter + clawbackAction: String + clawbackAction_not: String + clawbackAction_gt: String + clawbackAction_lt: String + clawbackAction_gte: String + clawbackAction_lte: String + clawbackAction_in: [String!] + clawbackAction_not_in: [String!] + clawbackAction_contains: String + clawbackAction_contains_nocase: String + clawbackAction_not_contains: String + clawbackAction_not_contains_nocase: String + clawbackAction_starts_with: String + clawbackAction_starts_with_nocase: String + clawbackAction_not_starts_with: String + clawbackAction_not_starts_with_nocase: String + clawbackAction_ends_with: String + clawbackAction_ends_with_nocase: String + clawbackAction_not_ends_with: String + clawbackAction_not_ends_with_nocase: String + clawbackAction_: Action_filter + category: CampaignCategory + category_not: CampaignCategory + category_in: [CampaignCategory!] + category_not_in: [CampaignCategory!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + nickname: String + nickname_not: String + nickname_gt: String + nickname_lt: String + nickname_gte: String + nickname_lte: String + nickname_in: [String!] + nickname_not_in: [String!] + nickname_contains: String + nickname_contains_nocase: String + nickname_not_contains: String + nickname_not_contains_nocase: String + nickname_starts_with: String + nickname_starts_with_nocase: String + nickname_not_starts_with: String + nickname_not_starts_with_nocase: String + nickname_ends_with: String + nickname_ends_with_nocase: String + nickname_not_ends_with: String + nickname_not_ends_with_nocase: String + activities_: Activity_filter + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_not_contains: Bytes + admin: Bytes + admin_not: Bytes + admin_gt: Bytes + admin_lt: Bytes + admin_gte: Bytes + admin_lte: Bytes + admin_in: [Bytes!] + admin_not_in: [Bytes!] + admin_contains: Bytes + admin_not_contains: Bytes + aggregateAmount: BigInt + aggregateAmount_not: BigInt + aggregateAmount_gt: BigInt + aggregateAmount_lt: BigInt + aggregateAmount_gte: BigInt + aggregateAmount_lte: BigInt + aggregateAmount_in: [BigInt!] + aggregateAmount_not_in: [BigInt!] + asset: String + asset_not: String + asset_gt: String + asset_lt: String + asset_gte: String + asset_lte: String + asset_in: [String!] + asset_not_in: [String!] + asset_contains: String + asset_contains_nocase: String + asset_not_contains: String + asset_not_contains_nocase: String + asset_starts_with: String + asset_starts_with_nocase: String + asset_not_starts_with: String + asset_not_starts_with_nocase: String + asset_ends_with: String + asset_ends_with_nocase: String + asset_not_ends_with: String + asset_not_ends_with_nocase: String + asset_: Asset_filter + claimedAmount: BigInt + claimedAmount_not: BigInt + claimedAmount_gt: BigInt + claimedAmount_lt: BigInt + claimedAmount_gte: BigInt + claimedAmount_lte: BigInt + claimedAmount_in: [BigInt!] + claimedAmount_not_in: [BigInt!] + claimedCount: BigInt + claimedCount_not: BigInt + claimedCount_gt: BigInt + claimedCount_lt: BigInt + claimedCount_gte: BigInt + claimedCount_lte: BigInt + claimedCount_in: [BigInt!] + claimedCount_not_in: [BigInt!] + clawbackTime: BigInt + clawbackTime_not: BigInt + clawbackTime_gt: BigInt + clawbackTime_lt: BigInt + clawbackTime_gte: BigInt + clawbackTime_lte: BigInt + clawbackTime_in: [BigInt!] + clawbackTime_not_in: [BigInt!] + expiration: BigInt + expiration_not: BigInt + expiration_gt: BigInt + expiration_lt: BigInt + expiration_gte: BigInt + expiration_lte: BigInt + expiration_in: [BigInt!] + expiration_not_in: [BigInt!] + expires: Boolean + expires_not: Boolean + expires_in: [Boolean!] + expires_not_in: [Boolean!] + factory: String + factory_not: String + factory_gt: String + factory_lt: String + factory_gte: String + factory_lte: String + factory_in: [String!] + factory_not_in: [String!] + factory_contains: String + factory_contains_nocase: String + factory_not_contains: String + factory_not_contains_nocase: String + factory_starts_with: String + factory_starts_with_nocase: String + factory_not_starts_with: String + factory_not_starts_with_nocase: String + factory_ends_with: String + factory_ends_with_nocase: String + factory_not_ends_with: String + factory_not_ends_with_nocase: String + factory_: Factory_filter + fee: BigInt + fee_not: BigInt + fee_gt: BigInt + fee_lt: BigInt + fee_gte: BigInt + fee_lte: BigInt + fee_in: [BigInt!] + fee_not_in: [BigInt!] + ipfsCID: String + ipfsCID_not: String + ipfsCID_gt: String + ipfsCID_lt: String + ipfsCID_gte: String + ipfsCID_lte: String + ipfsCID_in: [String!] + ipfsCID_not_in: [String!] + ipfsCID_contains: String + ipfsCID_contains_nocase: String + ipfsCID_not_contains: String + ipfsCID_not_contains_nocase: String + ipfsCID_starts_with: String + ipfsCID_starts_with_nocase: String + ipfsCID_not_starts_with: String + ipfsCID_not_starts_with_nocase: String + ipfsCID_ends_with: String + ipfsCID_ends_with_nocase: String + ipfsCID_not_ends_with: String + ipfsCID_not_ends_with_nocase: String + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + root: Bytes + root_not: Bytes + root_gt: Bytes + root_lt: Bytes + root_gte: Bytes + root_lte: Bytes + root_in: [Bytes!] + root_not_in: [Bytes!] + root_contains: Bytes + root_not_contains: Bytes + totalRecipients: BigInt + totalRecipients_not: BigInt + totalRecipients_gt: BigInt + totalRecipients_lt: BigInt + totalRecipients_gte: BigInt + totalRecipients_lte: BigInt + totalRecipients_in: [BigInt!] + totalRecipients_not_in: [BigInt!] + version: String + version_not: String + version_gt: String + version_lt: String + version_gte: String + version_lte: String + version_in: [String!] + version_not_in: [String!] + version_contains: String + version_contains_nocase: String + version_not_contains: String + version_not_contains_nocase: String + version_starts_with: String + version_starts_with_nocase: String + version_not_starts_with: String + version_not_starts_with_nocase: String + version_ends_with: String + version_ends_with_nocase: String + version_not_ends_with: String + version_not_ends_with_nocase: String + startTime: BigInt + startTime_not: BigInt + startTime_gt: BigInt + startTime_lt: BigInt + startTime_gte: BigInt + startTime_lte: BigInt + startTime_in: [BigInt!] + startTime_not_in: [BigInt!] + endTime: BigInt + endTime_not: BigInt + endTime_gt: BigInt + endTime_lt: BigInt + endTime_gte: BigInt + endTime_lte: BigInt + endTime_in: [BigInt!] + endTime_not_in: [BigInt!] + unlockPercentage: BigInt + unlockPercentage_not: BigInt + unlockPercentage_gt: BigInt + unlockPercentage_lt: BigInt + unlockPercentage_gte: BigInt + unlockPercentage_lte: BigInt + unlockPercentage_in: [BigInt!] + unlockPercentage_not_in: [BigInt!] + lockup: Bytes + lockup_not: Bytes + lockup_gt: Bytes + lockup_lt: Bytes + lockup_gte: Bytes + lockup_lte: Bytes + lockup_in: [Bytes!] + lockup_not_in: [Bytes!] + lockup_contains: Bytes + lockup_not_contains: Bytes + streamCancelable: Boolean + streamCancelable_not: Boolean + streamCancelable_in: [Boolean!] + streamCancelable_not_in: [Boolean!] + streamCliff: Boolean + streamCliff_not: Boolean + streamCliff_in: [Boolean!] + streamCliff_not_in: [Boolean!] + streamCliffDuration: BigInt + streamCliffDuration_not: BigInt + streamCliffDuration_gt: BigInt + streamCliffDuration_lt: BigInt + streamCliffDuration_gte: BigInt + streamCliffDuration_lte: BigInt + streamCliffDuration_in: [BigInt!] + streamCliffDuration_not_in: [BigInt!] + streamCliffPercentage: BigInt + streamCliffPercentage_not: BigInt + streamCliffPercentage_gt: BigInt + streamCliffPercentage_lt: BigInt + streamCliffPercentage_gte: BigInt + streamCliffPercentage_lte: BigInt + streamCliffPercentage_in: [BigInt!] + streamCliffPercentage_not_in: [BigInt!] + streamInitial: Boolean + streamInitial_not: Boolean + streamInitial_in: [Boolean!] + streamInitial_not_in: [Boolean!] + streamInitialPercentage: BigInt + streamInitialPercentage_not: BigInt + streamInitialPercentage_gt: BigInt + streamInitialPercentage_lt: BigInt + streamInitialPercentage_gte: BigInt + streamInitialPercentage_lte: BigInt + streamInitialPercentage_in: [BigInt!] + streamInitialPercentage_not_in: [BigInt!] + streamShape: String + streamShape_not: String + streamShape_gt: String + streamShape_lt: String + streamShape_gte: String + streamShape_lte: String + streamShape_in: [String!] + streamShape_not_in: [String!] + streamShape_contains: String + streamShape_contains_nocase: String + streamShape_not_contains: String + streamShape_not_contains_nocase: String + streamShape_starts_with: String + streamShape_starts_with_nocase: String + streamShape_not_starts_with: String + streamShape_not_starts_with_nocase: String + streamShape_ends_with: String + streamShape_ends_with_nocase: String + streamShape_not_ends_with: String + streamShape_not_ends_with_nocase: String + streamStart: Boolean + streamStart_not: Boolean + streamStart_in: [Boolean!] + streamStart_not_in: [Boolean!] + streamStartTime: BigInt + streamStartTime_not: BigInt + streamStartTime_gt: BigInt + streamStartTime_lt: BigInt + streamStartTime_gte: BigInt + streamStartTime_lte: BigInt + streamStartTime_in: [BigInt!] + streamStartTime_not_in: [BigInt!] + streamTotalDuration: BigInt + streamTotalDuration_not: BigInt + streamTotalDuration_gt: BigInt + streamTotalDuration_lt: BigInt + streamTotalDuration_gte: BigInt + streamTotalDuration_lte: BigInt + streamTotalDuration_in: [BigInt!] + streamTotalDuration_not_in: [BigInt!] + streamTranches_: Tranche_filter + streamTransferable: Boolean + streamTransferable_not: Boolean + streamTransferable_in: [Boolean!] + streamTransferable_not_in: [Boolean!] + _change_block: BlockChangedFilter + and: [Campaign_filter] + or: [Campaign_filter] +} +``` + +### Fields + +#### [Campaign_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.chainId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.chainId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.hash](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.hash_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.timestamp](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.actions\_](#)[Action_filter](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) + +#### [Campaign_filter.clawbackAction](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.clawbackAction\_](#)[Action_filter](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) + +#### [Campaign_filter.category](#)[CampaignCategory](/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx) + +#### [Campaign_filter.category_not](#)[CampaignCategory](/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx) + +#### [Campaign_filter.category_in](#)[[CampaignCategory!]](/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx) + +#### [Campaign_filter.category_not_in](#)[[CampaignCategory!]](/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx) + +#### [Campaign_filter.name](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.name_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.nickname_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.activities\_](#)[Activity_filter](/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx) + +#### [Campaign_filter.address](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.address_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.admin_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.aggregateAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.aggregateAmount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.asset](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.asset\_](#)[Asset_filter](/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Campaign_filter.claimedAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedAmount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.claimedCount_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.clawbackTime_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expiration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.expires](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.expires_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.expires_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.expires_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.factory](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.factory\_](#)[Factory_filter](/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx) + +#### [Campaign_filter.fee](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.fee_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.ipfsCID](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.ipfsCID_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.position](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.position_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.root](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.root_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.totalRecipients](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.totalRecipients_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.version](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.version_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.startTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.startTime_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.endTime_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.unlockPercentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.lockup](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.lockup_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Campaign_filter.streamCancelable](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCancelable_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCancelable_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCancelable_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCliff](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCliff_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCliff_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCliff_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamCliffDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffDuration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamCliffPercentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitial](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamInitial_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamInitial_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamInitial_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamInitialPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamInitialPercentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamShape](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamShape_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Campaign_filter.streamStart](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamStart_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamStart_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamStart_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamStartTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamStartTime_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTotalDuration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Campaign_filter.streamTranches\_](#)[Tranche_filter](/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [Campaign_filter.streamTransferable](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamTransferable_not](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamTransferable_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.streamTransferable_not_in](#)[[Boolean!]](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +#### [Campaign_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Campaign_filter.and](#)[[Campaign_filter]](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Campaign_filter.or](#)[[Campaign_filter]](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx new file mode 100644 index 00000000..5a812499 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx @@ -0,0 +1,283 @@ +--- +id: factory-filter +title: Factory_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Factory_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_not_contains: Bytes + alias: String + alias_not: String + alias_gt: String + alias_lt: String + alias_gte: String + alias_lte: String + alias_in: [String!] + alias_not_in: [String!] + alias_contains: String + alias_contains_nocase: String + alias_not_contains: String + alias_not_contains_nocase: String + alias_starts_with: String + alias_starts_with_nocase: String + alias_not_starts_with: String + alias_not_starts_with_nocase: String + alias_ends_with: String + alias_ends_with_nocase: String + alias_not_ends_with: String + alias_not_ends_with_nocase: String + campaignCounter: BigInt + campaignCounter_not: BigInt + campaignCounter_gt: BigInt + campaignCounter_lt: BigInt + campaignCounter_gte: BigInt + campaignCounter_lte: BigInt + campaignCounter_in: [BigInt!] + campaignCounter_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + campaigns_: Campaign_filter + _change_block: BlockChangedFilter + and: [Factory_filter] + or: [Factory_filter] +} +``` + +### Fields + +#### [Factory_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.address](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_not](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_gt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_lt](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_gte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_lte](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_not_in](#)[[Bytes!]](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.address_not_contains](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +#### [Factory_filter.alias](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.alias_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Factory_filter.campaignCounter](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaignCounter_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.chainId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Factory_filter.campaigns\_](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Factory_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Factory_filter.and](#)[[Factory_filter]](/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx) + +#### [Factory_filter.or](#)[[Factory_filter]](/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx new file mode 100644 index 00000000..4450ffd8 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx @@ -0,0 +1,373 @@ +--- +id: tranche-filter +title: Tranche_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Tranche_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + campaign: String + campaign_not: String + campaign_gt: String + campaign_lt: String + campaign_gte: String + campaign_lte: String + campaign_in: [String!] + campaign_not_in: [String!] + campaign_contains: String + campaign_contains_nocase: String + campaign_not_contains: String + campaign_not_contains_nocase: String + campaign_starts_with: String + campaign_starts_with_nocase: String + campaign_not_starts_with: String + campaign_not_starts_with_nocase: String + campaign_ends_with: String + campaign_ends_with_nocase: String + campaign_not_ends_with: String + campaign_not_ends_with_nocase: String + campaign_: Campaign_filter + duration: BigInt + duration_not: BigInt + duration_gt: BigInt + duration_lt: BigInt + duration_gte: BigInt + duration_lte: BigInt + duration_in: [BigInt!] + duration_not_in: [BigInt!] + endDuration: BigInt + endDuration_not: BigInt + endDuration_gt: BigInt + endDuration_lt: BigInt + endDuration_gte: BigInt + endDuration_lte: BigInt + endDuration_in: [BigInt!] + endDuration_not_in: [BigInt!] + endPercentage: BigInt + endPercentage_not: BigInt + endPercentage_gt: BigInt + endPercentage_lt: BigInt + endPercentage_gte: BigInt + endPercentage_lte: BigInt + endPercentage_in: [BigInt!] + endPercentage_not_in: [BigInt!] + percentage: BigInt + percentage_not: BigInt + percentage_gt: BigInt + percentage_lt: BigInt + percentage_gte: BigInt + percentage_lte: BigInt + percentage_in: [BigInt!] + percentage_not_in: [BigInt!] + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + startDuration: BigInt + startDuration_not: BigInt + startDuration_gt: BigInt + startDuration_lt: BigInt + startDuration_gte: BigInt + startDuration_lte: BigInt + startDuration_in: [BigInt!] + startDuration_not_in: [BigInt!] + startPercentage: BigInt + startPercentage_not: BigInt + startPercentage_gt: BigInt + startPercentage_lt: BigInt + startPercentage_gte: BigInt + startPercentage_lte: BigInt + startPercentage_in: [BigInt!] + startPercentage_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Tranche_filter] + or: [Tranche_filter] +} +``` + +### Fields + +#### [Tranche_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.campaign\_](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [Tranche_filter.duration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.duration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endDuration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endPercentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.percentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startDuration_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startPercentage_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Tranche_filter.and](#)[[Tranche_filter]](/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [Tranche_filter.or](#)[[Tranche_filter]](/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx b/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx new file mode 100644 index 00000000..d18d0939 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx @@ -0,0 +1,232 @@ +--- +id: watcher-filter +title: Watcher_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +input Watcher_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + actionCounter: BigInt + actionCounter_not: BigInt + actionCounter_gt: BigInt + actionCounter_lt: BigInt + actionCounter_gte: BigInt + actionCounter_lte: BigInt + actionCounter_in: [BigInt!] + actionCounter_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + logs: [String!] + logs_not: [String!] + logs_contains: [String!] + logs_contains_nocase: [String!] + logs_not_contains: [String!] + logs_not_contains_nocase: [String!] + campaignCounter: BigInt + campaignCounter_not: BigInt + campaignCounter_gt: BigInt + campaignCounter_lt: BigInt + campaignCounter_gte: BigInt + campaignCounter_lte: BigInt + campaignCounter_in: [BigInt!] + campaignCounter_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Watcher_filter] + or: [Watcher_filter] +} +``` + +### Fields + +#### [Watcher_filter.id](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lt](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lte](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_in](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with_nocase](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.actionCounter](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.logs](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains_nocase](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains_nocase](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.campaignCounter](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_not](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_gt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_lt](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_gte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_lte](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.campaignCounter_not_in](#)[[BigInt!]](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.\_change_block](#)[BlockChangedFilter](/docs/api/airdrops/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Watcher_filter.and](#)[[Watcher_filter]](/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [Watcher_filter.or](#)[[Watcher_filter]](/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/objects/_category_.yml b/docs/api/airdrops/graphql/the-graph/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/airdrops/graphql/the-graph/objects/action.mdx b/docs/api/airdrops/graphql/the-graph/objects/action.mdx new file mode 100644 index 00000000..56cd19c1 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/action.mdx @@ -0,0 +1,172 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. + +```graphql +type Action { + id: String! + subgraphId: BigInt! + block: BigInt! + chainId: BigInt! + from: Bytes! + hash: Bytes! + timestamp: BigInt! + campaign: Campaign! + category: ActionCategory! + fee: BigInt + claimAmount: BigInt + claimIndex: BigInt + claimRecipient: Bytes + claimTo: Bytes + claimStreamId: String + claimTokenId: BigInt + forgoneAmount: BigInt + clawbackAmount: BigInt + clawbackFrom: Bytes + clawbackTo: Bytes +} +``` + +### Fields + +#### [Action.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Unique identifier: {txHash}-{blockLogIndex} + +#### [Action.subgraphId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the `Watcher` entity. + +#### [Action.block](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Transaction details: block number + +#### [Action.chainId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g., 137 for Polygon. + +#### [Action.from](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +The msg.sender of the Ethereum transaction. + +#### [Action.hash](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Transaction details: hash + +#### [Action.timestamp](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Transaction details: timestamp + +#### [Action.campaign](#)[Campaign!](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Contract through which the stream actions has been triggered + +#### [Action.category](#)[ActionCategory!](/docs/api/airdrops/graphql/the-graph/enums/action-category.mdx) + +Category of action, e.g., Create. + +#### [Action.fee](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The Sablier fee paid in the native token of the chain, e.g., ETH for Ethereum Mainnet. +See https://docs.sablier.com/concepts/fees + +#### [Action.claimAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Claim action data: amount. + +#### [Action.claimIndex](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Claim action data: index. + +#### [Action.claimRecipient](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Claim action data: recipient. + +#### [Action.claimTo](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Claim action data: to. + +#### [Action.claimStreamId](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Claim action data: stream ID as provided by the Lockup subgraph: {contractAddress}-{chainId}-{tokenId}. + +#### [Action.claimTokenId](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Claim action data: ERC-721 token id as provided by the Lockup contract. + +#### [Action.forgoneAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Claim action data: forgoneAmount. Specific to VCA's + +#### [Action.clawbackAmount](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Clawback action data: amount + +#### [Action.clawbackFrom](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Clawback action data: from + +#### [Action.clawbackTo](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Clawback action data: to diff --git a/docs/api/airdrops/graphql/the-graph/objects/activity.mdx b/docs/api/airdrops/graphql/the-graph/objects/activity.mdx new file mode 100644 index 00000000..d148824d --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/activity.mdx @@ -0,0 +1,101 @@ +--- +id: activity +title: Activity +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +User activity grouped by day. + +```graphql +type Activity { + id: String! + amount: BigInt! + campaign: Campaign! + claims: BigInt! + day: BigInt! + timestamp: BigInt! +} +``` + +### Fields + +#### [Activity.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Unique identifier: activity-{campaignId}-{dayOfSnapshot} + +#### [Activity.amount](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total amount claimed during the day. + +#### [Activity.campaign](#)[Campaign!](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Campaign the activity is linked to. + +#### [Activity.claims](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Number of claims completed during the day. + +#### [Activity.day](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Day index: Unix timestamp / 24 \* 60 \* 60. + +#### [Activity.timestamp](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Timestamp of the start of the day. diff --git a/docs/api/airdrops/graphql/the-graph/objects/asset.mdx b/docs/api/airdrops/graphql/the-graph/objects/asset.mdx new file mode 100644 index 00000000..64660d46 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/asset.mdx @@ -0,0 +1,122 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +ERC-20 asset + +```graphql +type Asset { + id: ID! + address: Bytes! + chainId: BigInt! + decimals: BigInt! + name: String! + symbol: String! + campaigns( + skip: Int = 0 + first: Int = 100 + orderBy: Campaign_orderBy + orderDirection: OrderDirection + where: Campaign_filter + ): [Campaign!]! +} +``` + +### Fields + +#### [Asset.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +Contract address of the ERC20 token + +#### [Asset.address](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Alias for id + +#### [Asset.chainId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g. 137 for Polygon + +#### [Asset.decimals](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Decimals of the ERC20 token + +#### [Asset.name](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Name of the ERC20 token + +#### [Asset.symbol](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Symbol of the ERC20 token + +#### [Asset.campaigns](#)[[Campaign!]!](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Campaigns that rely on this asset. + +##### [Asset.campaigns.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Asset.campaigns.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Asset.campaigns.orderBy](#)[Campaign_orderBy](/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx) + +##### [Asset.campaigns.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +##### [Asset.campaigns.where](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/objects/block.mdx b/docs/api/airdrops/graphql/the-graph/objects/block.mdx new file mode 100644 index 00000000..648aa1e1 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/block.mdx @@ -0,0 +1,91 @@ +--- +id: block +title: _Block_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +type _Block_ { + hash: Bytes + number: Int! + timestamp: Int + parentHash: Bytes +} +``` + +### Fields + +#### [\_Block\_.hash](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +The hash of the block + +#### [\_Block\_.number](#)[Int!](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +The block number + +#### [\_Block\_.timestamp](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +Integer representation of the timestamp stored in blocks for the chain + +#### [\_Block\_.parentHash](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +The hash of the parent block diff --git a/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx b/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx new file mode 100644 index 00000000..87c8d6fa --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx @@ -0,0 +1,341 @@ +--- +id: campaign +title: Campaign +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Entity for Merkle campaigns. + +```graphql +type Campaign { + id: String! + chainId: BigInt! + subgraphId: BigInt! + hash: Bytes! + timestamp: BigInt! + actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + ): [Action!]! + clawbackAction: Action + category: CampaignCategory! + name: String + nickname: String! + activities( + skip: Int = 0 + first: Int = 100 + orderBy: Activity_orderBy + orderDirection: OrderDirection + where: Activity_filter + ): [Activity!]! + address: Bytes! + admin: Bytes! + aggregateAmount: BigInt! + asset: Asset! + claimedAmount: BigInt! + claimedCount: BigInt! + clawbackTime: BigInt + expiration: BigInt + expires: Boolean! + factory: Factory! + fee: BigInt + ipfsCID: String! + position: BigInt! + root: Bytes! + totalRecipients: BigInt! + version: String! + startTime: BigInt + endTime: BigInt + unlockPercentage: BigInt + lockup: Bytes + streamCancelable: Boolean + streamCliff: Boolean + streamCliffDuration: BigInt + streamCliffPercentage: BigInt + streamInitial: Boolean + streamInitialPercentage: BigInt + streamShape: String + streamStart: Boolean + streamStartTime: BigInt + streamTotalDuration: BigInt + streamTranches( + skip: Int = 0 + first: Int = 100 + orderBy: Tranche_orderBy + orderDirection: OrderDirection + where: Tranche_filter + ): [Tranche!]! + streamTransferable: Boolean +} +``` + +### Fields + +#### [Campaign.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Unique identifier: {contractAddress}-{chainId} + +#### [Campaign.chainId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g., 137 for Polygon. + +#### [Campaign.subgraphId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the subgraph watcher. + +#### [Campaign.hash](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction that created this campaign. + +#### [Campaign.timestamp](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp of the Ethereum transaction that created this campaign. + +#### [Campaign.actions](#)[[Action!]!](/docs/api/airdrops/graphql/the-graph/objects/action.mdx) + +Actions triggered by this campaign. + +##### [Campaign.actions.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.actions.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.actions.orderBy](#)[Action_orderBy](/docs/api/airdrops/graphql/the-graph/enums/action-order-by.mdx) + +##### [Campaign.actions.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +##### [Campaign.actions.where](#)[Action_filter](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) + +#### [Campaign.clawbackAction](#)[Action](/docs/api/airdrops/graphql/the-graph/objects/action.mdx) + +Action in which the admin clawed back funds from the campaign. + +#### [Campaign.category](#)[CampaignCategory!](/docs/api/airdrops/graphql/the-graph/enums/campaign-category.mdx) + +Type of campaign, e.g. Instant. + +#### [Campaign.name](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +User-provided name for the campaign, which is null in Airdrops v1.1. + +#### [Campaign.nickname](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Internal name generated by us, derived from `name` or generated from scratch in older versions. + +#### [Campaign.activities](#)[[Activity!]!](/docs/api/airdrops/graphql/the-graph/objects/activity.mdx) + +List of daily activity snapshots for days in which at least one action was triggered. + +##### [Campaign.activities.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.activities.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.activities.orderBy](#)[Activity_orderBy](/docs/api/airdrops/graphql/the-graph/enums/activity-order-by.mdx) + +##### [Campaign.activities.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +##### [Campaign.activities.where](#)[Activity_filter](/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx) + +#### [Campaign.address](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Address of the campaign contract. + +#### [Campaign.admin](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Address of the campaign admin, with permission to clawback. + +#### [Campaign.aggregateAmount](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total airdrop amount. + +#### [Campaign.asset](#)[Asset!](/docs/api/airdrops/graphql/the-graph/objects/asset.mdx) + +Underlying ERC-20 token distributed via the campaign. + +#### [Campaign.claimedAmount](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total amount claimed so far. + +#### [Campaign.claimedCount](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Number of claims made so far. + +#### [Campaign.clawbackTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp when the campaign underwent a clawback. + +#### [Campaign.expiration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp when the campaign expires and clawback becomes available (if `expires` is true). + +#### [Campaign.expires](#)[Boolean!](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating if the campaign expires or is claimable indefinitely. + +#### [Campaign.factory](#)[Factory!](/docs/api/airdrops/graphql/the-graph/objects/factory.mdx) + +The factory contract that deployed this campaign. + +#### [Campaign.fee](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Minimum fee charged by this campaign, denominated in the native token of the chain, e.g., ETH for Ethereum Mainnet. +Only available in v1.3 and later +See https://docs.sablier.com/concepts/fees + +#### [Campaign.ipfsCID](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +IPFS content identifier for the list of recipients and other static details. + +#### [Campaign.position](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Index of the campaign based on the `campaignCounter` in the `Factory` entity. + +#### [Campaign.root](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Merkle root. + +#### [Campaign.totalRecipients](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total number of recipients. + +#### [Campaign.version](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Version of the campaign contract, e.g., v1.3. + +#### [Campaign.startTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp when the campaign funds become available. + +#### [Campaign.endTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp when the campaign funds become fully available. + +#### [Campaign.unlockPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The initial unlocked amount at the specified start time of the campaign. + +#### [Campaign.lockup](#)[Bytes](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +Address of the Lockup contract through which streams are created. + +#### [Campaign.streamCancelable](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating whether the claimed streams will be cancelable initially. + +#### [Campaign.streamCliff](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating whether the claimed streams will have a cliff. +Only available for Linear streams. + +#### [Campaign.streamCliffDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The duration of the cliff that the stream will have, in seconds. +Only available for Linear streams. + +#### [Campaign.streamCliffPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The amount that will unlock at the cliff of the claimed stream, expressed as a percentage of the total amount. +Only available for Linear streams. + +#### [Campaign.streamInitial](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating whether the claimed stream will have an initial unlock. +Only available for Linear streams. + +#### [Campaign.streamInitialPercentage](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The initial unlock amount of the claimed stream, expressed as a percentage of the total. +Only available for Linear streams. + +#### [Campaign.streamShape](#)[String](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +The shape of the distribution. + +#### [Campaign.streamStart](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating if the claimed stream will have a preset start time or it will use the claim time as the start time. + +#### [Campaign.streamStartTime](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the start time. + +#### [Campaign.streamTotalDuration](#)[BigInt](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Snapshot of the duration in seconds for produced streams. + +#### [Campaign.streamTranches](#)[[Tranche!]!](/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx) + +Tranches of the claimed stream. + +##### [Campaign.streamTranches.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.streamTranches.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Campaign.streamTranches.orderBy](#)[Tranche_orderBy](/docs/api/airdrops/graphql/the-graph/enums/tranche-order-by.mdx) + +##### [Campaign.streamTranches.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +##### [Campaign.streamTranches.where](#)[Tranche_filter](/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [Campaign.streamTransferable](#)[Boolean](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating whether the claimed streams will be transferable. diff --git a/docs/api/airdrops/graphql/the-graph/objects/factory.mdx b/docs/api/airdrops/graphql/the-graph/objects/factory.mdx new file mode 100644 index 00000000..b9253299 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/factory.mdx @@ -0,0 +1,117 @@ +--- +id: factory +title: Factory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Entity for Merkle factories, which deploy campaigns. + +```graphql +type Factory { + id: String! + address: Bytes! + alias: String! + campaignCounter: BigInt! + chainId: BigInt! + campaigns( + skip: Int = 0 + first: Int = 100 + orderBy: Campaign_orderBy + orderDirection: OrderDirection + where: Campaign_filter + ): [Campaign!]! +} +``` + +### Fields + +#### [Factory.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Contract address. + +#### [Factory.address](#)[Bytes!](/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx) + +The same as `id`. + +#### [Factory.alias](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Factory alias, e.g., MSF2. + +#### [Factory.campaignCounter](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Factory index for campaigns + +#### [Factory.chainId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g., 137 for Polygon. + +#### [Factory.campaigns](#)[[Campaign!]!](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Campaigns deployed by this factory. + +##### [Factory.campaigns.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Factory.campaigns.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +##### [Factory.campaigns.orderBy](#)[Campaign_orderBy](/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx) + +##### [Factory.campaigns.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +##### [Factory.campaigns.where](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/objects/meta.mdx b/docs/api/airdrops/graphql/the-graph/objects/meta.mdx new file mode 100644 index 00000000..ec92dc9b --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/meta.mdx @@ -0,0 +1,89 @@ +--- +id: meta +title: _Meta_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The type for the top-level \_meta field + +```graphql +type _Meta_ { + block: _Block_! + deployment: String! + hasIndexingErrors: Boolean! +} +``` + +### Fields + +#### [\_Meta\_.block](#)[\_Block\_!](/docs/api/airdrops/graphql/the-graph/objects/block.mdx) + +Information about a specific subgraph block. The hash of the block +will be null if the \_meta field has a block constraint that asks for +a block number. It will be filled if the \_meta field has no block constraint +and therefore asks for the latest block + +#### [\_Meta\_.deployment](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +The deployment ID + +#### [\_Meta\_.hasIndexingErrors](#)[Boolean!](/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx) + +If `true`, the subgraph encountered indexing errors at some past block diff --git a/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx b/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx new file mode 100644 index 00000000..0fe53a75 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx @@ -0,0 +1,116 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Used in Merkle Lockup campaigns for the vesting schedule. + +```graphql +type Tranche { + id: String! + campaign: Campaign! + duration: BigInt! + endDuration: BigInt! + endPercentage: BigInt! + percentage: BigInt! + position: BigInt! + startDuration: BigInt! + startPercentage: BigInt! +} +``` + +### Fields + +#### [Tranche.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Unique identifier: {campaignId}-{position} + +#### [Tranche.campaign](#)[Campaign!](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +The campaign in which this tranche was created. + +#### [Tranche.duration](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Duration of the tranche, in seconds. + +#### [Tranche.endDuration](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total duration accrued at the end of the tranche. This is the sum of this tranche's duration and all previous tranches' durations. + +#### [Tranche.endPercentage](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total percentage unlocked at the end of the tranche. This is the sum of this tranche's percentage and all previous tranches' percentages. + +#### [Tranche.percentage](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Percentage of the total amount unlocked by this tranche. + +#### [Tranche.position](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Position of the tranche inside the array. + +#### [Tranche.startDuration](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total duration accrued at the start of the tranche. This is the sum of all previous tranches' durations. + +#### [Tranche.startPercentage](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Total percentage unlocked at the start of the tranche. This is the sum of all previous tranches' percentages. diff --git a/docs/api/airdrops/graphql/the-graph/objects/watcher.mdx b/docs/api/airdrops/graphql/the-graph/objects/watcher.mdx new file mode 100644 index 00000000..ebfcc8a9 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/objects/watcher.mdx @@ -0,0 +1,96 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +type Watcher { + id: String! + actionCounter: BigInt! + chainId: BigInt! + logs: [String!] + campaignCounter: BigInt! +} +``` + +### Fields + +#### [Watcher.id](#)[String!](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +The chain ID. There is one watcher per subgraph. + +#### [Watcher.actionCounter](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Global counter for actions. + +#### [Watcher.chainId](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Alias for id. + +#### [Watcher.logs](#)[[String!]](/docs/api/airdrops/graphql/the-graph/scalars/string.mdx) + +Used for debugging purposes. They are normally empty. + +#### [Watcher.campaignCounter](#)[BigInt!](/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx) + +Global counter. diff --git a/docs/api/airdrops/graphql/the-graph/queries/_category_.yml b/docs/api/airdrops/graphql/the-graph/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/airdrops/graphql/the-graph/queries/action.mdx b/docs/api/airdrops/graphql/the-graph/queries/action.mdx new file mode 100644 index 00000000..83c12992 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/action.mdx @@ -0,0 +1,90 @@ +--- +id: action +title: action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +action( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Action +``` + +### Arguments + +#### [action.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [action.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [action.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/airdrops/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/airdrops/graphql/the-graph/queries/actions.mdx b/docs/api/airdrops/graphql/the-graph/queries/actions.mdx new file mode 100644 index 00000000..6db1f72c --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/actions.mdx @@ -0,0 +1,102 @@ +--- +id: actions +title: actions +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Action!]! +``` + +### Arguments + +#### [actions.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [actions.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [actions.orderBy](#)[Action_orderBy](/docs/api/airdrops/graphql/the-graph/enums/action-order-by.mdx) + +#### [actions.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [actions.where](#)[Action_filter](/docs/api/airdrops/graphql/the-graph/inputs/action-filter.mdx) + +#### [actions.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [actions.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/airdrops/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/airdrops/graphql/the-graph/queries/activities.mdx b/docs/api/airdrops/graphql/the-graph/queries/activities.mdx new file mode 100644 index 00000000..0f74ae10 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/activities.mdx @@ -0,0 +1,102 @@ +--- +id: activities +title: activities +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +activities( + skip: Int = 0 + first: Int = 100 + orderBy: Activity_orderBy + orderDirection: OrderDirection + where: Activity_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Activity!]! +``` + +### Arguments + +#### [activities.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [activities.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [activities.orderBy](#)[Activity_orderBy](/docs/api/airdrops/graphql/the-graph/enums/activity-order-by.mdx) + +#### [activities.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [activities.where](#)[Activity_filter](/docs/api/airdrops/graphql/the-graph/inputs/activity-filter.mdx) + +#### [activities.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [activities.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Activity](/docs/api/airdrops/graphql/the-graph/objects/activity.mdx) + +User activity grouped by day. diff --git a/docs/api/airdrops/graphql/the-graph/queries/activity.mdx b/docs/api/airdrops/graphql/the-graph/queries/activity.mdx new file mode 100644 index 00000000..08cff0d0 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/activity.mdx @@ -0,0 +1,90 @@ +--- +id: activity +title: activity +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +activity( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Activity +``` + +### Arguments + +#### [activity.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [activity.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [activity.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Activity](/docs/api/airdrops/graphql/the-graph/objects/activity.mdx) + +User activity grouped by day. diff --git a/docs/api/airdrops/graphql/the-graph/queries/asset.mdx b/docs/api/airdrops/graphql/the-graph/queries/asset.mdx new file mode 100644 index 00000000..946b61b7 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/asset.mdx @@ -0,0 +1,90 @@ +--- +id: asset +title: asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +asset( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Asset +``` + +### Arguments + +#### [asset.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [asset.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [asset.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/airdrops/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/airdrops/graphql/the-graph/queries/assets.mdx b/docs/api/airdrops/graphql/the-graph/queries/assets.mdx new file mode 100644 index 00000000..04539db0 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/assets.mdx @@ -0,0 +1,102 @@ +--- +id: assets +title: assets +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +assets( + skip: Int = 0 + first: Int = 100 + orderBy: Asset_orderBy + orderDirection: OrderDirection + where: Asset_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Asset!]! +``` + +### Arguments + +#### [assets.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [assets.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [assets.orderBy](#)[Asset_orderBy](/docs/api/airdrops/graphql/the-graph/enums/asset-order-by.mdx) + +#### [assets.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [assets.where](#)[Asset_filter](/docs/api/airdrops/graphql/the-graph/inputs/asset-filter.mdx) + +#### [assets.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [assets.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/airdrops/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/airdrops/graphql/the-graph/queries/campaign.mdx b/docs/api/airdrops/graphql/the-graph/queries/campaign.mdx new file mode 100644 index 00000000..9129c3b8 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/campaign.mdx @@ -0,0 +1,90 @@ +--- +id: campaign +title: campaign +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +campaign( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Campaign +``` + +### Arguments + +#### [campaign.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [campaign.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [campaign.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Campaign](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Entity for Merkle campaigns. diff --git a/docs/api/airdrops/graphql/the-graph/queries/campaigns.mdx b/docs/api/airdrops/graphql/the-graph/queries/campaigns.mdx new file mode 100644 index 00000000..ecefb39c --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/campaigns.mdx @@ -0,0 +1,102 @@ +--- +id: campaigns +title: campaigns +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +campaigns( + skip: Int = 0 + first: Int = 100 + orderBy: Campaign_orderBy + orderDirection: OrderDirection + where: Campaign_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Campaign!]! +``` + +### Arguments + +#### [campaigns.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [campaigns.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [campaigns.orderBy](#)[Campaign_orderBy](/docs/api/airdrops/graphql/the-graph/enums/campaign-order-by.mdx) + +#### [campaigns.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [campaigns.where](#)[Campaign_filter](/docs/api/airdrops/graphql/the-graph/inputs/campaign-filter.mdx) + +#### [campaigns.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [campaigns.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Campaign](/docs/api/airdrops/graphql/the-graph/objects/campaign.mdx) + +Entity for Merkle campaigns. diff --git a/docs/api/airdrops/graphql/the-graph/queries/factories.mdx b/docs/api/airdrops/graphql/the-graph/queries/factories.mdx new file mode 100644 index 00000000..4552d2a9 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/factories.mdx @@ -0,0 +1,102 @@ +--- +id: factories +title: factories +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Factory!]! +``` + +### Arguments + +#### [factories.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [factories.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [factories.orderBy](#)[Factory_orderBy](/docs/api/airdrops/graphql/the-graph/enums/factory-order-by.mdx) + +#### [factories.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [factories.where](#)[Factory_filter](/docs/api/airdrops/graphql/the-graph/inputs/factory-filter.mdx) + +#### [factories.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [factories.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Factory](/docs/api/airdrops/graphql/the-graph/objects/factory.mdx) + +Entity for Merkle factories, which deploy campaigns. diff --git a/docs/api/airdrops/graphql/the-graph/queries/factory.mdx b/docs/api/airdrops/graphql/the-graph/queries/factory.mdx new file mode 100644 index 00000000..0be631db --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/factory.mdx @@ -0,0 +1,90 @@ +--- +id: factory +title: factory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +factory( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Factory +``` + +### Arguments + +#### [factory.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [factory.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [factory.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Factory](/docs/api/airdrops/graphql/the-graph/objects/factory.mdx) + +Entity for Merkle factories, which deploy campaigns. diff --git a/docs/api/airdrops/graphql/the-graph/queries/meta.mdx b/docs/api/airdrops/graphql/the-graph/queries/meta.mdx new file mode 100644 index 00000000..05ddfdaf --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/meta.mdx @@ -0,0 +1,80 @@ +--- +id: meta +title: _meta +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +Access to subgraph metadata + +```graphql +_meta( + block: Block_height +): _Meta_ +``` + +### Arguments + +#### [\_meta.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +### Type + +#### [\_Meta\_](/docs/api/airdrops/graphql/the-graph/objects/meta.mdx) + +The type for the top-level \_meta field diff --git a/docs/api/airdrops/graphql/the-graph/queries/tranche.mdx b/docs/api/airdrops/graphql/the-graph/queries/tranche.mdx new file mode 100644 index 00000000..d4af23cb --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/tranche.mdx @@ -0,0 +1,90 @@ +--- +id: tranche +title: tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +tranche( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Tranche +``` + +### Arguments + +#### [tranche.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [tranche.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [tranche.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Tranche](/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx) + +Used in Merkle Lockup campaigns for the vesting schedule. diff --git a/docs/api/airdrops/graphql/the-graph/queries/tranches.mdx b/docs/api/airdrops/graphql/the-graph/queries/tranches.mdx new file mode 100644 index 00000000..03496d1a --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/tranches.mdx @@ -0,0 +1,102 @@ +--- +id: tranches +title: tranches +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +tranches( + skip: Int = 0 + first: Int = 100 + orderBy: Tranche_orderBy + orderDirection: OrderDirection + where: Tranche_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Tranche!]! +``` + +### Arguments + +#### [tranches.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [tranches.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [tranches.orderBy](#)[Tranche_orderBy](/docs/api/airdrops/graphql/the-graph/enums/tranche-order-by.mdx) + +#### [tranches.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [tranches.where](#)[Tranche_filter](/docs/api/airdrops/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [tranches.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [tranches.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Tranche](/docs/api/airdrops/graphql/the-graph/objects/tranche.mdx) + +Used in Merkle Lockup campaigns for the vesting schedule. diff --git a/docs/api/airdrops/graphql/the-graph/queries/watcher.mdx b/docs/api/airdrops/graphql/the-graph/queries/watcher.mdx new file mode 100644 index 00000000..9d5f2ed4 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/watcher.mdx @@ -0,0 +1,88 @@ +--- +id: watcher +title: watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +watcher( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Watcher +``` + +### Arguments + +#### [watcher.id](#)[ID!](/docs/api/airdrops/graphql/the-graph/scalars/id.mdx) + +#### [watcher.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watcher.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/airdrops/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/queries/watchers.mdx b/docs/api/airdrops/graphql/the-graph/queries/watchers.mdx new file mode 100644 index 00000000..a1ed4a2d --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/queries/watchers.mdx @@ -0,0 +1,100 @@ +--- +id: watchers +title: watchers +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +watchers( + skip: Int = 0 + first: Int = 100 + orderBy: Watcher_orderBy + orderDirection: OrderDirection + where: Watcher_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Watcher!]! +``` + +### Arguments + +#### [watchers.skip](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [watchers.first](#)[Int](/docs/api/airdrops/graphql/the-graph/scalars/int.mdx) + +#### [watchers.orderBy](#)[Watcher_orderBy](/docs/api/airdrops/graphql/the-graph/enums/watcher-order-by.mdx) + +#### [watchers.orderDirection](#)[OrderDirection](/docs/api/airdrops/graphql/the-graph/enums/order-direction.mdx) + +#### [watchers.where](#)[Watcher_filter](/docs/api/airdrops/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [watchers.block](#)[Block_height](/docs/api/airdrops/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watchers.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/airdrops/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/airdrops/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/airdrops/graphql/the-graph/scalars/_category_.yml b/docs/api/airdrops/graphql/the-graph/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/airdrops/graphql/the-graph/scalars/big-decimal.mdx b/docs/api/airdrops/graphql/the-graph/scalars/big-decimal.mdx new file mode 100644 index 00000000..adcc83a4 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/big-decimal.mdx @@ -0,0 +1,68 @@ +--- +id: big-decimal +title: BigDecimal +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar BigDecimal +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx b/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx new file mode 100644 index 00000000..a8254819 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/big-int.mdx @@ -0,0 +1,68 @@ +--- +id: big-int +title: BigInt +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar BigInt +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx b/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx b/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx new file mode 100644 index 00000000..20042d51 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/bytes.mdx @@ -0,0 +1,68 @@ +--- +id: bytes +title: Bytes +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +No description + +```graphql +scalar Bytes +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/float.mdx b/docs/api/airdrops/graphql/the-graph/scalars/float.mdx new file mode 100644 index 00000000..6d939a16 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/float.mdx @@ -0,0 +1,68 @@ +--- +id: float +title: Float +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). + +```graphql +scalar Float +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/id.mdx b/docs/api/airdrops/graphql/the-graph/scalars/id.mdx new file mode 100644 index 00000000..1a7b44a0 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/id.mdx @@ -0,0 +1,68 @@ +--- +id: id +title: ID +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. + +```graphql +scalar ID +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/int-8.mdx b/docs/api/airdrops/graphql/the-graph/scalars/int-8.mdx new file mode 100644 index 00000000..8881d8cc --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/int-8.mdx @@ -0,0 +1,68 @@ +--- +id: int-8 +title: Int8 +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +8 bytes signed integer + +```graphql +scalar Int8 +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/int.mdx b/docs/api/airdrops/graphql/the-graph/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/string.mdx b/docs/api/airdrops/graphql/the-graph/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/airdrops/graphql/the-graph/scalars/timestamp.mdx b/docs/api/airdrops/graphql/the-graph/scalars/timestamp.mdx new file mode 100644 index 00000000..b7bb9a92 --- /dev/null +++ b/docs/api/airdrops/graphql/the-graph/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: Timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
+ { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
+ ); +}; + +A string representation of microseconds UNIX timestamp (16 digits) + +```graphql +scalar Timestamp +``` diff --git a/docs/api/airdrops/merkle-api/01-overview.mdx b/docs/api/airdrops/merkle-api/01-overview.mdx index a79f69f1..9d202b30 100644 --- a/docs/api/airdrops/merkle-api/01-overview.mdx +++ b/docs/api/airdrops/merkle-api/01-overview.mdx @@ -4,38 +4,26 @@ sidebar_position: 1 title: "Overview" --- -import LinkPreview from "@site/src/components/molecules/LinkPreview"; +import LinkPreviewMerkleAPI from "@site/src/components/molecules/link-previews/MerkleAPI"; -Sablier's Airdrops rely on pre-configured Merkle trees. This data structure contains the list of recipients as well as -their individual claim details. +Sablier Airdrops use pre-configured Merkle trees, a data structure that efficiently stores recipient lists and their individual claim details. -### General data flow +## General data flow -Trees allow us to store minimal data at the contract level, while being able to cryptographically prove someone is -entitled to claim from the contract, using proofs generated with a separate off-chain dataset (and the onchain root). +Merkle trees enable minimal onchain storage while maintaining cryptographic proof of eligibility. The system stores only the tree's root hash in the deployed Airstream contract, while the complete tree and recipient list reside in IPFS. -The root hash of the tree will be stored inside the deployed Airstream contract. The tree itself, as well as the initial -list will be stored in an IPFS file. +Operations like eligibility checks or claim detail requests follow this process: -Any action such as checking for eligibility or requesting the claim details of a certain user will involve reading from -the IPFS file, generating proofs based on the Merkle tree and interacting with the contract using the data obtained -previously. +1. Read data from the IPFS file +2. Generate Merkle proofs from the tree +3. Interact with the contract using the obtained data -### Open-source solution +## Open-source solution -To make this functionality available to both Sablier client interfaces and 3rd party integrators we've created a Rust -backend service called `merkle-api`. Through a REST API, it provides access to creating, storing and reading from -Airstream related Merkle trees. +We've built a Rust backend service that provides REST API access to Merkle tree functionality. This service handles tree creation, storage, and data retrieval for both the Sablier Interface and third-party applications. -#### Integrations +## Integrations -To integrate this API into your own applications, feel free to use the official endpoints or fork the repository and run -the backend in your own environment. We're keen to improve and optimize this service, so any suggestions or issues can -be flagged directly in the Github repository. +Integrate this API using our official endpoints or fork the repository to run your own instance. We actively improve and optimize this service, so submit suggestions or issues directly on GitHub. - + diff --git a/docs/api/airdrops/merkle-api/02-functionality.mdx b/docs/api/airdrops/merkle-api/02-functionality.mdx index a5402293..da380842 100644 --- a/docs/api/airdrops/merkle-api/02-functionality.mdx +++ b/docs/api/airdrops/merkle-api/02-functionality.mdx @@ -8,43 +8,37 @@ import LinkPreview from "@site/src/components/molecules/LinkPreview"; ## Architecture -The backend is written in Rust. It can run locally (or in a self-hosted environment) with -[`warp`](https://github.com/seanmonstar/warp) as well as using Vercel with its -[`rust runtime`](https://github.com/vercel-community/rust). +The backend is written in Rust and can run locally or in self-hosted environments using [`warp`](https://github.com/seanmonstar/warp), as well as on Vercel with its [`rust runtime`](https://github.com/vercel-community/rust). -You can integrate the backend functionality using the official endpoints (below) but we recommend running it in a -self-hosted environment for improved reliability (meaning you can fork and provide your own IPFS and Pinata access -keys). +You can integrate the backend functionality using our official endpoints (below), but we recommend self-hosting for improved reliability. This allows you to fork the repository and provide your own IPFS and Pinata access keys. -Feel free to reach out for any guidance or feedback. +Feel free to reach out for guidance or feedback. -The official endpoints can be seen in the [airdrops-endpoints](/api/airdrops/endpoints) registry. +The official endpoints are documented in the [Airdrops Indexers](/api/airdrops/indexers) section. ## Create: `/api/create` -Call this route to create a new Merkle/Airstream campaign. +Call this route to create a new Merkle airdrop campaign. ### Prerequisites -Before creating a new campaign, you'll need: +Before creating a campaign, you'll need: -- The `decimals` of the asset you're basing the campaign upon -- A CSV file including a list of `[address, amount]` for every campaign recipient +- The `decimals` of the token you're basing the campaign on +- A CSV file containing `[address, amount]` pairs for every campaign recipient -You can download a template for the CSV file from the link below or preview it -[here](https://github.com/sablier-labs/sablier-labs.github.io/blob/1933e3b5176c93b236d9a483683dad3a282cc39a/templates/airstream-template.csv). +Download a template CSV file from the link below or preview it [here](https://github.com/sablier-labs/sablier-labs.github.io/blob/1933e3b5176c93b236d9a483683dad3a282cc39a/templates/airstream-template.csv). :::tip -The CSV will contain a header row, followed by pairs of addresses and amounts. The amounts will be in humanized form, as -the API deals with the padding of each value (with the decimals of the token) on its own. +The CSV contains a header row, followed by address and amount pairs. Amounts should be in human-readable form—the API handles decimal padding automatically. ::: @@ -64,7 +58,7 @@ type Response = { cid: string; /** Expected number of recipients */ recipients: string; - /** HEX root fo the Merkle tree */ + /** HEX root of the Merkle tree */ root: string; /** Humanized status */ status: string; @@ -75,29 +69,29 @@ type Response = { ### Functionality -The `/api/create` route will perform the following actions: +The `/api/create` route performs the following actions: **1. Validation and processing** -- Validate the CSV file and its contents -- Add decimal padding to every amount -- Build the Merkle tree and generate a root hash -- Compute intermediary data (e.g. total expected amount, number of recipients) -- Prepare an object containing the list, the tree and the data above +- Validates the CSV file and its contents +- Adds decimal padding to every amount +- Builds the Merkle tree and generates a root hash +- Computes intermediary data (total expected amount, number of recipients) +- Prepares an object containing the list, tree, and computed data **2. Upload to IPFS** -- Upload the object in a JSON file on IPFS -- Get a hold of the IPFS CID (unique identifier of the uploaded file) +- Uploads the object as a JSON file to IPFS +- Retrieves the IPFS CID (unique identifier of the uploaded file) **3. Return data to client** -- Return the root hash, IPFS CID and intermediary data points to the client -- [Next] The client will use all these to call the factory and deploy a new campaign +- Returns the root hash, IPFS CID, and intermediary data to the client +- The client uses this data to call the factory and deploy a new campaign ### Code -For more insight, check out the implementation details. +For implementation details, check out the source code:
  • Check the [create](/reference/airdrops/contracts/interfaces/interface.ISablierMerkleFactory#events) events emitted by the Merkle factory
  • -
  • Use the Sablier [subgraphs / indexers](/api/overview) to query for that particular piece of information.
  • +
  • Use the Sablier [indexers](/api/overview) to query for that information.
  • For approach "B", run the following query against the official endpoints: - - ```GraphQL title:Example of a query for campaign data using The Graph's subgraphs - query getCampaignData($campaignId: String!){ - campaign(id: $campaignId){ - id - lockup - root - //highlight-start - ipfsCID - //highlight-end - aggregateAmount - totalRecipients - } - } + + + +```graphql +query getCampaignData($campaignId: String!){ + campaign(id: $campaignId){ + id + lockup + root + //highlight-start + ipfsCID + //highlight-end + aggregateAmount + totalRecipients + } +} ``` - - - ```GraphQL title:Example of a query for campaign data using Envio's indexers - query getCampaignData($campaignId: String!){ - Campaign(where: {id: {_eq: $campaignId}} ){ - id - lockup - root - //highlight-start - ipfsCID - //highlight-end - aggregateAmount - totalRecipients - } - } + + + + + +```graphql +query getCampaignData($campaignId: String!){ + Campaign(where: {id: {_eq: $campaignId}} ){ + id + lockup + root + //highlight-start + ipfsCID + //highlight-end + aggregateAmount + totalRecipients + } +} + ``` - + + + ## Check eligibility for an address -To check if an address is eligible, you'll have to use the [/api/eligibility](functionality#eligibility-apieligibility) -route provided by the merkle-api backend. +To check if an address is eligible, use the [/api/eligibility](functionality#eligibility-apieligibility) route provided by the merkle-api backend. #### Steps 1. Get the campaign CID (see [the example](examples#get-a-campaigns-cid) above) -2. Call the`/api/eligibility` route using the CID and the wallet address +2. Call the `/api/eligibility` route using the CID and wallet address -Please read more on the dedicated route documentation within the -[/api/eligibility](functionality#eligibility-apieligibility) section of the functionality page. +Read more in the dedicated route documentation within the [/api/eligibility](functionality#eligibility-apieligibility) section of the functionality page. -As an alternative, you can also check the eligibility of an address (and bypass the backend) by simply searching for -that address in the list stored within the IPFS file from step 1. You'll still have to download the file first, using -its CID. +Alternatively, you can check eligibility by searching for the address in the list stored within the IPFS file from step 1. You'll still need to download the file first using its CID. -## Get the tokenId after a claim +## Get the `tokenId` after a claim -After someone claims, you may want to show them a preview of the stream (or its NFT). To do that, you'll have to get a -hold of the `tokenId` (or `streamId`) related to that user's claim. +After someone claims, you may want to show them a preview of the stream or its NFT. To do this, you'll need the `tokenId` (or `streamId`) related to that user's claim. -To get a hold of a `tokenId` linked to a claim you can: +To obtain a `tokenId` linked to a claim, you can:
    1. Listen to the [claim](/reference/airdrops/contracts/interfaces/interface.ISablierMerkleLL#claim) method and the Claim event emitted by the Merkle contract instance
    2. -
    3. Use the Sablier [subgraphs / indexers](/api/overview) to query for that particular piece of information.
    4. +
    5. Use the [Sablier Indexers](/api/overview) to query for that information.
    -For approach "B", run the following query against the official endpoints (make sure the address is lowercased): +For approach "B", run the following query against the official endpoints (ensure the address is lowercase): - - ```GraphQL title:Example of a query for claim data using The Graph's subgraphs - query getClaimForRecipient($campaignId: String!, $recipient: String){ - actions(where: {campaign: $campaignId, category: Claim, claimRecipient: $recipient }){ - campaign{ - id - lockup - } - claimTokenId - claimRecipient - claimIndex - } + + + +```graphql +query getClaimForRecipient($campaignId: String!, $recipient: String) { + actions(where: { campaign: $campaignId, category: Claim, claimRecipient: $recipient }) { + campaign { + id + lockup } + claimTokenId + claimRecipient + claimIndex + } +} ``` - - - ```GraphQL title:Example of a query for claim data using Envio's indexers - query getClaimForRecipient($campaignId: String!, $recipient: String){ - Action(where: { - _and: [ - {campaign: {_eq: $campaignId}} - {category: {_eq: Claim}} - {claimRecipient: {_eq: $recipient}} - ] - }){ - campaignObject{ - id - lockup - } - claimTokenId - claimRecipient - claimIndex - } + + + + + +```graphql +query getClaimForRecipient($campaignId: String!, $recipient: String) { + Action( + where: { + _and: [{ campaign: { _eq: $campaignId } }, { category: { _eq: Claim } }, { claimRecipient: { _eq: $recipient } }] + } + ) { + campaignObject { + id + lockup } + claimTokenId + claimRecipient + claimIndex + } +} ``` - + + + #### Bonus: Stream NFT -To get the Stream NFT, using the same query as in option "B", retrieve the `lockup` contract (where the Stream NFT is -issued) and its `tokenId`. With them you can call the -[`tokenURI`](/reference/lockup/contracts/contract.LockupNFTDescriptor#tokenuri) method, which will return the SVG code -of the onchain NFT. +To get the Stream NFT, use the same query as option "B" to retrieve the `lockup` contract (where the Stream NFT is issued) and its `tokenId`. With these, you can call the [`tokenURI`](/reference/lockup/contracts/contract.LockupNFTDescriptor#tokenuri) method, which returns the SVG code of the onchain NFT. :::note Extract the SVG tags -The actual SVG tags are encoded inside the response of the `tokenURI` method. You can feed this blob to an HTML `img` -tag or choose to render the SVG tags themselves. To get a hold of this code in plain format (not in `base64`) you could -run the following Javascript code which decodes the response and +The actual SVG tags are encoded inside the `tokenURI` method response. You can feed this blob to an HTML `img` tag or render the SVG tags directly. To extract this code in plain format (not `base64`), run the following JavaScript code to decode the response: ```typescript const toPart = output.split("data:application/json;base64,").pop(); @@ -161,43 +162,36 @@ const toSVG = Buffer.from(blob || "", "base64").toString("utf-8"); ## Check if a user claimed their stream -To check if a user has already claimed their stream from a campaign you can: +To check if a user has already claimed their stream from a campaign, you can:
    1. - Call the [hasClaimed](/reference/airdrops/contracts/interfaces/interface.ISablierMerkleBase#hasclaimed) method form - the Merkle contract instance + Call the [`hasClaimed`](/reference/airdrops/contracts/interfaces/interface.ISablierMerkleBase#hasclaimed) method + from the Merkle contract instance
    2. -
    3. Use the Sablier [subgraphs / indexers](/api/overview) to query for that particular piece of information.
    4. +
    5. Use the [Sablier Indexers](/api/overview) to query for that information.
    #### Approach A -For approach "A" you'll need to perform the following actions: +For approach "A", perform the following actions: -1. Get a hold of the campaign's CID, Lockup contract address, and user address (for the first items, see the - [Get a campaign's CID](/api/airdrops/merkle-api/examples#get-a-campaigns-cid) example above) -2. Check the eligibility of a user (see - [Eligibility](/api/airdrops/merkle-api/examples#check-eligibility-for-an-address) example above) and extract their - `index` -3. Call the `hasClaimed` method inside the `lockup` contract using the `index` retrieved at step 2 +1. Get the campaign's CID, Lockup contract address, and user address (for the first items, see the [Get a campaign's CID](/api/airdrops/merkle-api/examples#get-a-campaigns-cid) example above) +2. Check user eligibility (see [Eligibility](/api/airdrops/merkle-api/examples#check-eligibility-for-an-address) example above) and extract their `index` +3. Call the `hasClaimed` method inside the `lockup` contract using the `index` from step 2 :::note -The index of a particular user represents their assigned order number in the eligibility list. We use this value to -generate a proof in case the recipient is eligible and to register their claim directly inside the contract. +A user's index represents their assigned order number in the eligibility list. We use this value to generate a proof if the recipient is eligible and to register their claim directly in the contract. ::: #### Approach B -For approach "B", run the same query as in the -[Get the tokenId after a claim](/api/airdrops/merkle-api/examples#get-the-tokenid-after-a-claim) example. If the query -yields any results, that means the user has claimed their stream. +For approach "B", run the same query as in the [Get the tokenId after a claim](/api/airdrops/merkle-api/examples#get-the-tokenid-after-a-claim) example. If the query returns results, the user has claimed their stream. :::tip -A missing claim could also mean the user wasn't eligible in the first place. We recommend checking for eligibility -alongside any existing claim checks. +A missing claim could also mean the user wasn't eligible initially. We recommend checking for eligibility alongside any existing claim checks. ::: diff --git a/docs/api/airdrops/merkle-api/_category_.json b/docs/api/airdrops/merkle-api/_category_.json index 3b5d6c5c..4e710433 100644 --- a/docs/api/airdrops/merkle-api/_category_.json +++ b/docs/api/airdrops/merkle-api/_category_.json @@ -1,5 +1,5 @@ { "collapsed": true, "label": "Merkle API", - "position": 3 + "position": 4 } diff --git a/docs/api/airdrops/the-graph/01-entities.mdx b/docs/api/airdrops/the-graph/01-entities.mdx deleted file mode 100644 index cd1cd122..00000000 --- a/docs/api/airdrops/the-graph/01-entities.mdx +++ /dev/null @@ -1,69 +0,0 @@ ---- -id: "entities" -sidebar_position: 1 -title: "Entities" ---- - -:::info - -For an introduction into the Sablier primitives and our architectural choices, check out the -[Lockup subgraph](/api/lockup/the-graph/entities) before reading about the Merkle subgraph. - -::: - -## Entity Architecture - -Inside the **Merkle** subgraph, the -[`schema.graphql`](https://github.com/sablier-labs/indexers/blob/main/apps/merkle/schema.graphql) file is responsible -of defining the following Sablier entities: - -### Primary - -| Entity | Description | -| -------- | -------------------------------------------------------------------------------------------------------------- | -| Factory | Instances of `MerkleLockupFactory` | -| Campaign | Instances of `SablierMerkleLL`, the primary entity tracking the up to date state of an Airdrop/Merkle campaign | -| Action | Emitted events transformed into historical entries (e.g. Claim, Create, Clawback) | -| Activity | An entity tracking daily usage (one item per day) for each campaign (e.g. amount claimed per day) | -| Asset | The ERC20 asset that is being streamed | - -### Secondary - -| Entity | Description | -| ------- | --------------------------------------------------------------------------------------------- | -| Watcher | A singleton data store for subgraph-level unique indexes such as the campaign or action index | - -## Structure - -The structure of these entities is built on the same rules and mindset which was applied on the -[lockup entities](/api/lockup/the-graph/entities). - -### Identifying - -Airstreams will be assigned a unique `contract address` once they are deployed by the Merkle Factory. While this makes -it easy to identify items at the contract level, we need to consider the following for both subgraphs and client -interfaces: - -- items should be uniquely identifiable across multiple chains -- items should be identifiable with short, easy to digest names - -To address the first observation, the subgraph uses the following identifier for an Airstream. - -| Type | Description | Example | -| -------------- | ------------------------------------------------------------------------------------------- | ------------------------------- | -| `Airstream.id` | A self-explanatory structure built using the following structure: `contractAddress-chainId` | `0xAB..12-1115511` | - -The example from the table above translates to: **_a stream on Ethereum Sepolia (chain id `1115511`), with the contract -address `0xAB..12`_**. - -:::info - -We've chosen not to apply aliases to Airstreams for now. In the future, we may ask the campaign creator to provide a -name or an alias to be used in the URL. - -::: - -## Architecture and Data Flow - -The data flow applied to this subgraph is identical to the one used in the -[lockup subgraph](/api/lockup/the-graph/architecture). diff --git a/docs/api/airdrops/the-graph/02-queries.md b/docs/api/airdrops/the-graph/02-queries.md deleted file mode 100644 index 4232010d..00000000 --- a/docs/api/airdrops/the-graph/02-queries.md +++ /dev/null @@ -1,168 +0,0 @@ ---- -id: "queries" -sidebar_position: 2 -title: "Queries" ---- - -Building on top of the [entity structure](/api/airdrops/the-graph/entities) defined earlier, here are some common -GraphQL queries for fetching data from the Sablier subgraph. - -## Campaigns - -### Recent campaigns - -```graphql title="The 10 most recent campaigns" -campaigns( - first: 10 - orderBy: timestamp - orderDirection: desc -) { - id -} -``` - -### Paginated campaigns - -To query campaigns in sets/pages we can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next campaigns indexed before the last seen subgraphId" -campaigns( - first: $first - skip: $skip - orderBy: subgraphId - orderDirection: desc - where: { subgraphId_lt: $subgraphId } -) { - id -} -``` - -### Campaigns by admin and asset - -To search for campaigns deployed by a certain address (e.g. a DAO or a popular token issuer), we can filter using the -`admin` field. Even more, we can use the token address to restrict the search further. - -This query includes pagination. - -:::info - -This examples is fully configured with a query "name" (and expected variables) as well as a "fragment". The fragment is -a simple GraphQL description of what a certain entity (here the campaign) looks like. - -::: - -```graphql title="The next campaigns created by an address with a certain asset" -query getCampaigns_ByAsset($first: Int!, $skip: Int!, $asset: String!, $subgraphId: BigInt!, $chainId: BigInt!) { - campaigns( - first: $first - skip: $skip - orderBy: subgraphId - orderDirection: desc - where: { asset: $asset, subgraphId_lt: $subgraphId, chainId: $chainId } - ) { - ...CampaignFragment - } -} - -const CampaignFragment = gql(/* GraphQL */ ` - fragment CampaignFragment on Campaign { - id - subgraphId - address - chainId - category - hash - timestamp - admin - lockup - root - expires - expiration - ipfsCID - aggregateAmount - totalRecipients - clawbackTime - streamCliff - streamCliffDuration - streamTotalDuration - streamCancelable - streamTransferable - claimedAmount - claimedCount - version - asset { - ...AssetFragment - } - factory { - ...FactoryFragment - } - } -`); - -``` - -## Actions (e.g. Claim) - -### Claim actions of a user on a certain campaign - -To check if a user has claimed their share from a distribution campaign we can look for a "Claim" action performed by or -on behalf of that user. If the query yields a result, it means the uses has already claimed from the Airstream. - -```graphql title="Claim actions of a user on a certain campaign" -query getClaim_ByUserByCampaign($campaignId: String!, $user: String!) { - actions(where: { campaign: $campaignId, category: Claim, claimRecipient: $user }) { - campaign { - id - lockup - } - claimStreamId - claimTokenId - claimRecipient - category - } -} -``` - -### Claim actions for campaigns with a certain asset - -This query yields all "Claim" actions for a given asset / token. These actions can be sourced from multiple airdrop -campaigns, for all users. - -```graphql title="Claim actions for campaigns with a certain token" -query getClaims_ByAsset($asset: String!) { - actions(where: { campaign_: { asset: $asset, category: "Claim" } }) { - campaign { - id - lockup - } - claimStreamId - claimTokenId - claimRecipient - category - } -} -``` - -## Streams - -### Stream identifiers for a campaign's claims (airstream) - -This query yields all the IDs of the streams claimed as part of a certain campaign (airstream). - -```graphql title="Claim actions for campaigns with a certain token" -query getStreamIds_ByCampaign($campaignId: String!) { - actions(where: { campaign: $campaignId, category: "Claim" }) { - claimStreamId - } -} -``` - -:::tip - -To source more details regarding these streams you can head over to the `Lockup` subgraph and look for streams where the -`stream.funder` is the address of your airdrop campaign. -[Here's an example query](/api/lockup/the-graph/queries/#streams-by-campaign). - -::: diff --git a/docs/api/airdrops/the-graph/_category_.json b/docs/api/airdrops/the-graph/_category_.json deleted file mode 100644 index e1c97e8b..00000000 --- a/docs/api/airdrops/the-graph/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "The Graph", - "position": 4 -} diff --git a/docs/api/flow/01-indexers.mdx b/docs/api/flow/01-indexers.mdx new file mode 100644 index 00000000..768ccfa9 --- /dev/null +++ b/docs/api/flow/01-indexers.mdx @@ -0,0 +1,39 @@ +--- +id: "indexers" +sidebar_position: 1 +title: "Indexers" +--- + +import TableEnvio from "@site/src/autogen/flow/TableEnvio.mdx"; +import TableTheGraph from "@site/src/autogen/flow/TableTheGraph.mdx"; +import LinkPreviewIndexers from "@site/src/components/molecules/link-previews/Indexers"; +import ExplainerEnvio from "@site/src/snippets/ExplainerEnvio.mdx"; +import ExplainerTheGraph from "@site/src/snippets/ExplainerTheGraph.mdx"; + +# Sablier Flow + +This page documents the indexers for the [Sablier Flow](/concepts/flow/overview) protocol, which powers the [Payments](/apps/features/payments) product in the Sablier Interfaces. + +## Envio + +### Source Code + + + +### Endpoints + + + + + +## The Graph + +### Source Code + + + +### Endpoints + + + + diff --git a/docs/api/flow/01-overview.mdx b/docs/api/flow/01-overview.mdx deleted file mode 100644 index 13006fd6..00000000 --- a/docs/api/flow/01-overview.mdx +++ /dev/null @@ -1,29 +0,0 @@ ---- -id: "overview" -sidebar_position: 1 -title: "Overview" ---- - -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Sablier Flow - -Sablier's [Flow](/concepts/flow/overview) streams enable the [Payments](/apps/features/payments) functionality of the -Sablier Interface. - -The Flow data is powered by: - -- The `@sablier/subgraphs/apps/flow` subgraph -- The `@sablier/subgraphs/apps/flow-envio` indexer - - - -#### Naming convention - -As per our endpoint [naming convention](/api/overview#endpoints--slugs), subgraph deployments of Sablier Flow will -follow the `sablier-flow-*` structure (e.g. `sablier-flow-ethereum` for Mainnet, `sablier-flow-base` for Base). diff --git a/docs/api/flow/02-flow-endpoints.mdx b/docs/api/flow/02-flow-endpoints.mdx deleted file mode 100644 index 4757bc5e..00000000 --- a/docs/api/flow/02-flow-endpoints.mdx +++ /dev/null @@ -1,225 +0,0 @@ ---- -id: "endpoints" -sidebar_position: 2 -title: "Endpoints" ---- - -import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx"; -import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx"; -import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx"; -import EnvioEndpointTable from "@site/src/components/molecules/EnvioEndpointTable"; -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Flow Endpoints - -The following indexers (Envio, The Graph) track events emitted by the Sablier Flow contracts, e.g., actions like -creating, depositing, or voiding Flow streams. - -## Envio - -### Source Code - - - -### Endpoints - - - - - -## The Graph - -### Source Code - - - -### Endpoints - - - - -| Chain | Explorer | Production Node | Testing Node[^1] | -| ---------------- | --------------------------------------------------------------- | -------------------------------------------------- | -------------------------------------- | -| Ethereum | [sablier-flow-ethereum-mainnet][explorer-flow-ethereum-mainnet] | [The Graph Network][network-flow-ethereum-mainnet] | [Studio][studio-flow-ethereum-mainnet] | -| Abstract | [sablier-flow-abstract][explorer-flow-abstract] | [The Graph Network][network-flow-abstract] | [Studio][studio-flow-abstract] | -| Arbitrum | [sablier-flow-arbitrum][explorer-flow-arbitrum] | [The Graph Network][network-flow-arbitrum] | [Studio][studio-flow-arbitrum] | -| Avalanche | [sablier-flow-avalanche][explorer-flow-avalanche] | [The Graph Network][network-flow-avalanche] | [Studio][studio-flow-avalanche] | -| Base | [sablier-flow-base][explorer-flow-base] | [The Graph Network][network-flow-base] | [Studio][studio-flow-base] | -| Berachain | [sablier-flow-berachain][explorer-flow-berachain] | [The Graph Network][network-flow-berachain] | [Studio][studio-flow-berachain] | -| Blast | [sablier-flow-blast][explorer-flow-blast] | [The Graph Network][network-flow-blast] | [Studio][studio-flow-blast] | -| BNB Chain | [sablier-flow-bsc][explorer-flow-bsc] | [The Graph Network][network-flow-bsc] | [Studio][studio-flow-bsc] | -| Chiliz Chain | [sablier-flow-chiliz][explorer-flow-chiliz] | [The Graph Network][network-flow-chiliz] | [Studio][studio-flow-chiliz] | -| Gnosis | [sablier-flow-gnosis][explorer-flow-gnosis] | [The Graph Network][network-flow-gnosis] | [Studio][studio-flow-gnosis] | -| IoTeX | [sablier-flow-iotex][explorer-flow-iotex] | [The Graph Network][network-flow-iotex] | [Studio][studio-flow-iotex] | -| Linea | [sablier-flow-linea][explorer-flow-linea] | [The Graph Network][network-flow-linea] | [Studio][studio-flow-linea] | -| Lightlink | [sablier-flow-lightlink][explorer-flow-lightlink] | [LightLink Node][custom-flow-lightlink] | N/A | -| Mode | [sablier-flow-mode][explorer-flow-mode] | [The Graph Network][network-flow-mode] | [Studio][studio-flow-mode] | -| Optimism | [sablier-flow-optimism][explorer-flow-optimism] | [The Graph Network][network-flow-optimism] | [Studio][studio-flow-optimism] | -| Polygon | [sablier-flow-polygon][explorer-flow-polygon] | [The Graph Network][network-flow-polygon] | [Studio][studio-flow-polygon] | -| Scroll | [sablier-flow-scroll][explorer-flow-scroll] | [The Graph Network][network-flow-scroll] | [Studio][studio-flow-scroll] | -| XDC | [sablier-flow-xdc][explorer-flow-xdc] | [XDC Node][custom-flow-xdc] | N/A | -| zkSync | [sablier-flow-zksync][explorer-flow-zksync] | [The Graph Network][network-flow-zksync] | [Studio][studio-flow-zksync] | -| Arbitrum Sepolia | [sablier-flow-arbitrum-sepolia][explorer-flow-arbitrum-sepolia] | [The Graph Network][network-flow-arbitrum-sepolia] | [Studio][studio-flow-arbitrum-sepolia] | -| Base Sepolia | [sablier-flow-base-sepolia][explorer-flow-base-sepolia] | [The Graph Network][network-flow-base-sepolia] | [Studio][studio-flow-base-sepolia] | -| Ethereum Sepolia | [sablier-flow-ethereum-sepolia][explorer-flow-ethereum-sepolia] | [The Graph Network][network-flow-ethereum-sepolia] | [Studio][studio-flow-ethereum-sepolia] | -| Optimism Sepolia | [sablier-flow-optimism-sepolia][explorer-flow-optimism-sepolia] | [The Graph Network][network-flow-optimism-sepolia] | [Studio][studio-flow-optimism-sepolia] | - -[^1]: The testing nodes may be rate-limited. - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* MAINNETS */} - -{/* Chain: Ethereum Mainnet */} - -[explorer-flow-ethereum-mainnet]: https://thegraph.com/explorer/subgraphs/ECxBJhKceBGaVvK6vqmK3VQAncKwPeAQutEb8TeiUiod -[network-flow-ethereum-mainnet]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/ECxBJhKceBGaVvK6vqmK3VQAncKwPeAQutEb8TeiUiod -[studio-flow-ethereum-mainnet]: https://api.studio.thegraph.com/query/112500/sablier-flow-ethereum/version/latest - -{/* Chain: Abstract */} - -[explorer-flow-abstract]: https://thegraph.com/explorer/subgraphs/Gq3e1gihMoSynURwGXQnPoKGVZzdsyomdrMH934vQHuG -[network-flow-abstract]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/Gq3e1gihMoSynURwGXQnPoKGVZzdsyomdrMH934vQHuG -[studio-flow-abstract]: https://api.studio.thegraph.com/query/112500/sablier-flow-arbitrum/version/latest - -{/* Chain: Arbitrum */} - -[explorer-flow-arbitrum]: https://thegraph.com/explorer/subgraphs/C3kBBUVtW2rxqGpAgSgEuSaT49izkH6Q8UibRt7XFTyW -[network-flow-arbitrum]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/C3kBBUVtW2rxqGpAgSgEuSaT49izkH6Q8UibRt7XFTyW -[studio-flow-arbitrum]: https://api.studio.thegraph.com/query/112500/sablier-flow-arbitrum/version/latest - -{/* Chain: Avalanche */} - -[explorer-flow-avalanche]: https://thegraph.com/explorer/subgraphs/6PAizjTALVqLLB7Ycq6XnpTeck8Z8QUpDFnVznMnisUh -[network-flow-avalanche]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/6PAizjTALVqLLB7Ycq6XnpTeck8Z8QUpDFnVznMnisUh -[studio-flow-avalanche]: https://api.studio.thegraph.com/query/112500/sablier-flow-avalanche/version/latest - -{/* Chain: Base */} - -[explorer-flow-base]: https://thegraph.com/explorer/subgraphs/4XSxXh8ZgkzaA35nrbQG9Ry3FYz3ZFD8QBdWwVg5pF9W -[network-flow-base]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/4XSxXh8ZgkzaA35nrbQG9Ry3FYz3ZFD8QBdWwVg5pF9W -[studio-flow-base]: https://api.studio.thegraph.com/query/112500/sablier-flow-base/version/latest - -{/* Chain: Berachain */} - -[explorer-flow-berachain]: https://thegraph.com/explorer/subgraphs/J87eaBLfTe7kKWgUGqe5TxntNCzA4pyWmqJowMddehuh -[network-flow-berachain]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/J87eaBLfTe7kKWgUGqe5TxntNCzA4pyWmqJowMddehuh -[studio-flow-berachain]: https://api.studio.thegraph.com/query/112500/sablier-flow-berachain/version/latest - -{/* Chain: Blast */} - -[explorer-flow-blast]: https://thegraph.com/explorer/subgraphs/8joiC9LpUbSV6eGRr3RWXDArM8p9Q65FKiFekAakkyia -[network-flow-blast]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/8joiC9LpUbSV6eGRr3RWXDArM8p9Q65FKiFekAakkyia -[studio-flow-blast]: https://api.studio.thegraph.com/query/112500/sablier-flow-blast/version/latest - -{/* Chain: BSC */} - -[explorer-flow-bsc]: https://thegraph.com/explorer/subgraphs/2vU8KF4yWh3vvFjtg7MrRXMnYF3hPX2T3cvVBdaiXhNb -[network-flow-bsc]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/2vU8KF4yWh3vvFjtg7MrRXMnYF3hPX2T3cvVBdaiXhNb -[studio-flow-bsc]: https://api.studio.thegraph.com/query/112500/sablier-flow-bsc/version/latest - -{/* Chain: Chiliz */} - -[explorer-flow-chiliz]: https://thegraph.com/explorer/subgraphs/7QX7tJsANNFpxFLLjqzmXRzfY1wPGp3Lty5xGbhgADa6 -[network-flow-chiliz]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/7QX7tJsANNFpxFLLjqzmXRzfY1wPGp3Lty5xGbhgADa6 -[studio-flow-chiliz]: https://api.studio.thegraph.com/query/112500/sablier-flow-chiliz/version/latest - -{/* Chain: Gnosis */} - -[explorer-flow-gnosis]: https://thegraph.com/explorer/subgraphs/4KiJ53cTNKdFWPBPmDNQ55tYj8hn1WQg8R4UcTY2STLL -[network-flow-gnosis]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/4KiJ53cTNKdFWPBPmDNQ55tYj8hn1WQg8R4UcTY2STLL -[studio-flow-gnosis]: https://api.studio.thegraph.com/query/112500/sablier-flow-gnosis/version/latest - -{/* Chain: Iotex */} - -[explorer-flow-iotex]: https://thegraph.com/explorer/subgraphs/6No3QmRiC8HXLEerDFoBpF47jUPRjhntmv28HHEMxcA2 -[network-flow-iotex]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/6No3QmRiC8HXLEerDFoBpF47jUPRjhntmv28HHEMxcA2 -[studio-flow-iotex]: https://api.studio.thegraph.com/query/112500/sablier-flow-iotex/version/latest - -{/* Chain: Linea */} - -[explorer-flow-linea]: https://thegraph.com/explorer/subgraphs/DV9XgcCCPKzUn6pgetg4yPetpW2fNoRKBUQC43aNeLG6 -[network-flow-linea]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/DV9XgcCCPKzUn6pgetg4yPetpW2fNoRKBUQC43aNeLG6 -[studio-flow-linea]: https://api.studio.thegraph.com/query/112500/sablier-flow-linea/version/latest - -{/* Chain: LightLink */} - -[explorer-flow-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-flow-lightlink/graphql -[custom-flow-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-flow-lightlink - -{/* Chain: Mode */} - -[explorer-flow-mode]: https://thegraph.com/explorer/subgraphs/9TwfoUZoxYUyxzDgspCPyxW6uMUKetWQDaTGsZjY1qJZ -[network-flow-mode]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/9TwfoUZoxYUyxzDgspCPyxW6uMUKetWQDaTGsZjY1qJZ -[studio-flow-mode]: https://api.studio.thegraph.com/query/112500/sablier-flow-mode/version/latest - -{/* Chain: Optimism */} - -[explorer-flow-optimism]: https://thegraph.com/explorer/subgraphs/AygPgsehNGSB4K7DYYtvBPhTpEiU4dCu3nt95bh9FhRf -[network-flow-optimism]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/AygPgsehNGSB4K7DYYtvBPhTpEiU4dCu3nt95bh9FhRf -[studio-flow-optimism]: https://api.studio.thegraph.com/query/112500/sablier-flow-optimism/version/latest - -{/* Chain: Polygon */} - -[explorer-flow-polygon]: https://thegraph.com/explorer/subgraphs/ykp38sLarwz3cpmjSSPqo7UuTjYtkZ1KiL4PM2qwmT8 -[network-flow-polygon]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/ykp38sLarwz3cpmjSSPqo7UuTjYtkZ1KiL4PM2qwmT8 -[studio-flow-polygon]: https://api.studio.thegraph.com/query/112500/sablier-flow-polygon/version/latest - -{/* Chain: Scroll */} - -[explorer-flow-scroll]: https://thegraph.com/explorer/subgraphs/HFpTrPzJyrHKWZ9ebb4VFRQSxRwpepyfz5wd138daFkF -[network-flow-scroll]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/HFpTrPzJyrHKWZ9ebb4VFRQSxRwpepyfz5wd138daFkF -[studio-flow-scroll]: https://api.studio.thegraph.com/query/112500/sablier-flow-scroll/version/latest - -{/* Chain: XDC */} - -[explorer-flow-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-flow-xdc/graphql -[custom-flow-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-flow-xdc - -{/* Chain: zkSync */} - -[explorer-flow-zksync]: https://thegraph.com/explorer/subgraphs/9DRgWhDAMovpkej3eT8izum6jxEKHE62ciArffsTAScx -[network-flow-zksync]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/9DRgWhDAMovpkej3eT8izum6jxEKHE62ciArffsTAScx -[studio-flow-zksync]: https://api.studio.thegraph.com/query/112500/sablier-flow-zksync/version/latest - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* TESTNETS */} - -{/* Chain: Arbitrum Sepolia */} - -[explorer-flow-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/2uWnxpYiDMkEMu1urxqt925mLfuax9XbvfcBoD97AU6d -[network-flow-arbitrum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/2uWnxpYiDMkEMu1urxqt925mLfuax9XbvfcBoD97AU6d -[studio-flow-arbitrum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-flow-arbitrum-sepolia/version/latest - -{/* Chain: Base Sepolia */} - -[explorer-flow-base-sepolia]: https://thegraph.com/explorer/subgraphs/AsnKT1waQMvuQxZAqfFuYwtRtAfN8uekDu75jPttfyLh -[network-flow-base-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/AsnKT1waQMvuQxZAqfFuYwtRtAfN8uekDu75jPttfyLh -[studio-flow-base-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-flow-base-sepolia/version/latest - -{/* Chain: Ethereum Sepolia */} - -[explorer-flow-ethereum-sepolia]: https://thegraph.com/explorer/subgraphs/EU9AWmJjrjMRkjxcdHfuWPZvPTNAL3hiXfNGN5MwUpvm -[network-flow-ethereum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/EU9AWmJjrjMRkjxcdHfuWPZvPTNAL3hiXfNGN5MwUpvm -[studio-flow-ethereum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-flow-sepolia/version/latest - -{/* Chain: Optimism Sepolia */} - -[explorer-flow-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/EFKqBB6TeH6etGuHCffnbMbETEgDZ6U29Lgpc4gpYvdB -[network-flow-optimism-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/EFKqBB6TeH6etGuHCffnbMbETEgDZ6U29Lgpc4gpYvdB -[studio-flow-optimism-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-flow-optimism-sepolia/version/latest diff --git a/docs/api/flow/03-previous-indexers.mdx b/docs/api/flow/03-previous-indexers.mdx new file mode 100644 index 00000000..94e8a783 --- /dev/null +++ b/docs/api/flow/03-previous-indexers.mdx @@ -0,0 +1,149 @@ +--- +id: "previous-indexers" +sidebar_position: 3 +title: "Previous Indexers" +--- + +import DeprecatedIndexers from "@site/src/snippets/DeprecatedIndexers.mdx"; + + + +| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | +| ---------------- | ---------------------------------------------------------------- | -------------------------------------- | ----------------------------------------- | +| Ethereum | [sablier-v2-fl][flow-explorer-ethereum] | [Studio][flow-studio-ethereum] | [Network][flow-network-ethereum] | +| Arbitrum | [sablier-v2-fl-arbitrum][flow-explorer-arbitrum] | [Studio][flow-studio-arbitrum] | [Network][flow-network-arbitrum] | +| Arbitrum Sepolia | [sablier-v2-fl-arbitrum-sepolia][flow-explorer-arbitrum-sepolia] | [Studio][flow-studio-arbitrum-sepolia] | [Network][flow-network-arbitrum-sepolia] | +| Avalanche | [sablier-v2-fl-avalanche][flow-explorer-avalanche] | [Studio][flow-studio-avalanche] | [Network][flow-network-avalanche] | +| Base | [sablier-v2-fl-base][flow-explorer-base] | [Studio][flow-studio-base] | [Network][flow-network-base] | +| Blast | [sablier-v2-fl-blast][flow-explorer-blast] | [Studio][flow-studio-blast] | [Network][flow-network-blast] | +| BNB Chain | [sablier-v2-fl-bsc][flow-explorer-bsc] | [Studio][flow-studio-bsc] | [Network][flow-network-bsc] | +| Chiliz Chain | [sablier-v2-fl-chiliz][flow-explorer-chiliz] | [Studio][flow-studio-chiliz] | [Network][flow-network-chiliz] | +| Gnosis | [sablier-v2-fl-gnosis][flow-explorer-gnosis] | [Studio][flow-studio-gnosis] | [Network][flow-network-gnosis] | +| Linea | [sablier-v2-fl-linea][flow-explorer-linea] | [Studio][flow-studio-linea] | [Network][flow-network-linea] | +| Lightlink | [sablier-v2-fl-lightlink\*][flow-explorer-lightlink] | N/A | [Lightlink Node\*][flow-custom-lightlink] | +| Mode | [sablier-v2-fl-mode][flow-explorer-mode] | [Studio][flow-studio-mode] | [Network][flow-network-mode] | +| Optimism | [sablier-v2-fl-optimism][flow-explorer-optimism] | [Studio][flow-studio-optimism] | [Network][flow-network-optimism] | +| Optimism Sepolia | [sablier-v2-fl-optimism-sepolia][flow-explorer-optimism-sepolia] | [Studio][flow-studio-optimism-sepolia] | [Network][flow-network-optimism-sepolia] | +| Polygon | [sablier-v2-fl-polygon][flow-explorer-polygon] | [Studio][flow-studio-polygon] | [Network][flow-network-polygon] | +| Scroll | [sablier-v2-fl-scroll][flow-explorer-scroll] | [Studio][flow-studio-scroll] | [Network][flow-network-scroll] | +| Ethereum Sepolia | [sablier-v2-fl-sepolia][flow-explorer-sepolia] | [Studio][flow-studio-sepolia] | [Network][flow-network-sepolia] | +| zkSync | [sablier-v2-fl-zksync][flow-explorer-zksync] | [Studio][flow-studio-zksync] | [Network][flow-network-zksync] | + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} + +{/* Chain: Arbitrum */} + +[flow-network-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/61wTsPJr76vzcaMMrqQq7RkHSUsQmHoqiJbkFc1iaNN1 +[flow-explorer-arbitrum]: https://thegraph.com/explorer/subgraphs/61wTsPJr76vzcaMMrqQq7RkHSUsQmHoqiJbkFc1iaNN1 +[flow-studio-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-arbitrum/version/latest + +{/* Chain: Arbitrum Sepolia */} + +[flow-network-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/Ai8sJzb4W6B19kPzqWxe47R29YGw5dACy9AJ97nZzm5W +[flow-explorer-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/Ai8sJzb4W6B19kPzqWxe47R29YGw5dACy9AJ97nZzm5W +[flow-studio-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-arbitrum-sepolia/version/latest + +{/* Chain: Avalanche */} + +[flow-network-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CUFanZFBBAaKcJDPLnCwWjo6gAruG92DcK38Y2PzARH8 +[flow-explorer-avalanche]: https://thegraph.com/explorer/subgraphs/CUFanZFBBAaKcJDPLnCwWjo6gAruG92DcK38Y2PzARH8 +[flow-studio-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-avalanche/version/latest + +{/* Chain: Base */} + +[flow-network-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DVuHKeqguX339rd6JGav7wjXBVi5R4qneHSDNu1urTKr +[flow-explorer-base]: https://thegraph.com/explorer/subgraphs/DVuHKeqguX339rd6JGav7wjXBVi5R4qneHSDNu1urTKr +[flow-studio-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-base/version/latest + +{/* Chain: Blast */} + +[flow-network-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/84gjGqyeWDG2VxvRTRjTFxrnPMuZhAYF4iETBox2ix5D +[flow-explorer-blast]: https://thegraph.com/explorer/subgraphs/84gjGqyeWDG2VxvRTRjTFxrnPMuZhAYF4iETBox2ix5D +[flow-studio-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-blast/version/latest + +{/* Chain: BSC */} + +[flow-network-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/GJvqaYwX9vGXPXDFrANs6LcDALcN22bjvvPvrcNvU8rn +[flow-explorer-bsc]: https://thegraph.com/explorer/subgraphs/GJvqaYwX9vGXPXDFrANs6LcDALcN22bjvvPvrcNvU8rn +[flow-studio-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-bsc/version/latest + +{/* Chain: Chiliz */} + +[flow-network-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/H5LERpVjK2ugD42PX774kv5shHfqd13HkBPWtASq75L4 +[flow-explorer-chiliz]: https://thegraph.com/explorer/subgraphs/H5LERpVjK2ugD42PX774kv5shHfqd13HkBPWtASq75L4 +[flow-studio-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-chiliz/version/latest + +{/* Chain: Gnosis */} + +[flow-network-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3XxHfFUMixMJTGVn1FJFFER1NFYpDDQo4QAbR2sQSpAH +[flow-explorer-gnosis]: https://thegraph.com/explorer/subgraphs/3XxHfFUMixMJTGVn1FJFFER1NFYpDDQo4QAbR2sQSpAH +[flow-studio-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-gnosis/version/latest + +{/* Chain: Linea */} + +[flow-network-linea]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/25Ry5DsjAKLXh6b8uXSu6H85Jk9d3MHxQbpDUJTstwvx +[flow-explorer-linea]: https://thegraph.com/explorer/subgraphs/25Ry5DsjAKLXh6b8uXSu6H85Jk9d3MHxQbpDUJTstwvx +[flow-studio-linea]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-linea/version/latest + +{/* Chain: Lightlink */} + +[flow-explorer-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-fl-lightlink/graphql +[flow-custom-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-fl-lightlink + +{/* Chain: Mainnet | Ethereum */} + +[flow-explorer-ethereum]: https://thegraph.com/explorer/subgraphs/DgXaXAUMFTZdwo1aZ21dmGV2vyU1Wdb1DkHyVmy3y7xi +[flow-studio-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl/version/latest +[flow-network-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DgXaXAUMFTZdwo1aZ21dmGV2vyU1Wdb1DkHyVmy3y7xi + +{/* Chain: Mode */} + +[flow-network-mode]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/H9D24a58cCZmzZTnu4VNdUoFCEMhNYjHP9uohXr9Qi65 +[flow-explorer-mode]: https://thegraph.com/explorer/subgraphs/H9D24a58cCZmzZTnu4VNdUoFCEMhNYjHP9uohXr9Qi65 +[flow-studio-mode]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-mode/version/latest + +{/* Chain: Optimism */} + +[flow-network-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/JAf9rM9bn6Z91htddJ33JAyrWdNXHmseHhvx11Bpfysg +[flow-explorer-optimism]: https://thegraph.com/explorer/subgraphs/JAf9rM9bn6Z91htddJ33JAyrWdNXHmseHhvx11Bpfysg +[flow-studio-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-optimism/version/latest + +{/* Chain: Optimism Sepolia */} + +[flow-network-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/5tosMw7VVdE9ie3Z8Hdz6Y4SqaMaKrBb3XnM9rTYUag2 +[flow-explorer-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/5tosMw7VVdE9ie3Z8Hdz6Y4SqaMaKrBb3XnM9rTYUag2 +[flow-studio-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-optimism-sepolia/version/latest + +{/* Chain: Polygon */} + +[flow-network-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/G49hZr29bZK7TAa7KK8z4sZ3ZkL93Ss6CZDG6ffCSifV +[flow-explorer-polygon]: https://thegraph.com/explorer/subgraphs/G49hZr29bZK7TAa7KK8z4sZ3ZkL93Ss6CZDG6ffCSifV +[flow-studio-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-polygon/version/latest + +{/* Chain: Scroll */} + +[flow-network-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2d1uvMnHnohZowpGwDdj6Gpk5gT8SNcZjbLfTA3JVRa8 +[flow-explorer-scroll]: https://thegraph.com/explorer/subgraphs/2d1uvMnHnohZowpGwDdj6Gpk5gT8SNcZjbLfTA3JVRa8 +[flow-studio-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-scroll/version/latest + +{/* Chain: Ethereum Sepolia */} + +[flow-network-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm +[flow-explorer-sepolia]: https://thegraph.com/explorer/subgraphs/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm +[flow-studio-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-sepolia/version/latest + +{/* Chain: zkSync */} + +[flow-network-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm +[flow-explorer-zksync]: https://thegraph.com/explorer/subgraphs/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm +[flow-studio-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-zksync/version/latest + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} + +[endpoint-flow]: https://indexer.hyperindex.xyz/3b4ea6b/v1/graphql + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} diff --git a/docs/api/flow/05-previous-endpoints.mdx b/docs/api/flow/05-previous-endpoints.mdx deleted file mode 100644 index e9a976ca..00000000 --- a/docs/api/flow/05-previous-endpoints.mdx +++ /dev/null @@ -1,149 +0,0 @@ ---- -id: "previous-endpoints" -sidebar_position: 5 -title: "Previous Endpoints" ---- - -import DeprecatedEndpoints from "@site/docs/snippets/DeprecatedEndpoints.mdx"; - - - -| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | -| ---------------- | ------------------------------------------------------------------- | ----------------------------------------- | -------------------------------------------- | -| Ethereum | [sablier-v2-fl][v2-flow-explorer-ethereum] | [Studio][v2-flow-studio-ethereum] | [Network][v2-flow-network-ethereum] | -| Arbitrum | [sablier-v2-fl-arbitrum][v2-flow-explorer-arbitrum] | [Studio][v2-flow-studio-arbitrum] | [Network][v2-flow-network-arbitrum] | -| Arbitrum Sepolia | [sablier-v2-fl-arbitrum-sepolia][v2-flow-explorer-arbitrum-sepolia] | [Studio][v2-flow-studio-arbitrum-sepolia] | [Network][v2-flow-network-arbitrum-sepolia] | -| Avalanche | [sablier-v2-fl-avalanche][v2-flow-explorer-avalanche] | [Studio][v2-flow-studio-avalanche] | [Network][v2-flow-network-avalanche] | -| Base | [sablier-v2-fl-base][v2-flow-explorer-base] | [Studio][v2-flow-studio-base] | [Network][v2-flow-network-base] | -| Blast | [sablier-v2-fl-blast][v2-flow-explorer-blast] | [Studio][v2-flow-studio-blast] | [Network][v2-flow-network-blast] | -| BNB Chain | [sablier-v2-fl-bsc][v2-flow-explorer-bsc] | [Studio][v2-flow-studio-bsc] | [Network][v2-flow-network-bsc] | -| Chiliz Chain | [sablier-v2-fl-chiliz][v2-flow-explorer-chiliz] | [Studio][v2-flow-studio-chiliz] | [Network][v2-flow-network-chiliz] | -| Gnosis | [sablier-v2-fl-gnosis][v2-flow-explorer-gnosis] | [Studio][v2-flow-studio-gnosis] | [Network][v2-flow-network-gnosis] | -| Linea | [sablier-v2-fl-linea][v2-flow-explorer-linea] | [Studio][v2-flow-studio-linea] | [Network][v2-flow-network-linea] | -| Lightlink | [sablier-v2-fl-lightlink\*][v2-flow-explorer-lightlink] | N/A | [Lightlink Node\*][v2-flow-custom-lightlink] | -| Mode | [sablier-v2-fl-mode][v2-flow-explorer-mode] | [Studio][v2-flow-studio-mode] | [Network][v2-flow-network-mode] | -| Optimism | [sablier-v2-fl-optimism][v2-flow-explorer-optimism] | [Studio][v2-flow-studio-optimism] | [Network][v2-flow-network-optimism] | -| Optimism Sepolia | [sablier-v2-fl-optimism-sepolia][v2-flow-explorer-optimism-sepolia] | [Studio][v2-flow-studio-optimism-sepolia] | [Network][v2-flow-network-optimism-sepolia] | -| Polygon | [sablier-v2-fl-polygon][v2-flow-explorer-polygon] | [Studio][v2-flow-studio-polygon] | [Network][v2-flow-network-polygon] | -| Scroll | [sablier-v2-fl-scroll][v2-flow-explorer-scroll] | [Studio][v2-flow-studio-scroll] | [Network][v2-flow-network-scroll] | -| Ethereum Sepolia | [sablier-v2-fl-sepolia][v2-flow-explorer-sepolia] | [Studio][v2-flow-studio-sepolia] | [Network][v2-flow-network-sepolia] | -| zkSync | [sablier-v2-fl-zksync][v2-flow-explorer-zksync] | [Studio][v2-flow-studio-zksync] | [Network][v2-flow-network-zksync] | - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* Chain: Arbitrum */} - -[v2-flow-network-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/61wTsPJr76vzcaMMrqQq7RkHSUsQmHoqiJbkFc1iaNN1 -[v2-flow-explorer-arbitrum]: https://thegraph.com/explorer/subgraphs/61wTsPJr76vzcaMMrqQq7RkHSUsQmHoqiJbkFc1iaNN1 -[v2-flow-studio-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-arbitrum/version/latest - -{/* Chain: Arbitrum Sepolia */} - -[v2-flow-network-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/Ai8sJzb4W6B19kPzqWxe47R29YGw5dACy9AJ97nZzm5W -[v2-flow-explorer-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/Ai8sJzb4W6B19kPzqWxe47R29YGw5dACy9AJ97nZzm5W -[v2-flow-studio-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-arbitrum-sepolia/version/latest - -{/* Chain: Avalanche */} - -[v2-flow-network-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CUFanZFBBAaKcJDPLnCwWjo6gAruG92DcK38Y2PzARH8 -[v2-flow-explorer-avalanche]: https://thegraph.com/explorer/subgraphs/CUFanZFBBAaKcJDPLnCwWjo6gAruG92DcK38Y2PzARH8 -[v2-flow-studio-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-avalanche/version/latest - -{/* Chain: Base */} - -[v2-flow-network-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DVuHKeqguX339rd6JGav7wjXBVi5R4qneHSDNu1urTKr -[v2-flow-explorer-base]: https://thegraph.com/explorer/subgraphs/DVuHKeqguX339rd6JGav7wjXBVi5R4qneHSDNu1urTKr -[v2-flow-studio-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-base/version/latest - -{/* Chain: Blast */} - -[v2-flow-network-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/84gjGqyeWDG2VxvRTRjTFxrnPMuZhAYF4iETBox2ix5D -[v2-flow-explorer-blast]: https://thegraph.com/explorer/subgraphs/84gjGqyeWDG2VxvRTRjTFxrnPMuZhAYF4iETBox2ix5D -[v2-flow-studio-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-blast/version/latest - -{/* Chain: BSC */} - -[v2-flow-network-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/GJvqaYwX9vGXPXDFrANs6LcDALcN22bjvvPvrcNvU8rn -[v2-flow-explorer-bsc]: https://thegraph.com/explorer/subgraphs/GJvqaYwX9vGXPXDFrANs6LcDALcN22bjvvPvrcNvU8rn -[v2-flow-studio-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-bsc/version/latest - -{/* Chain: Chiliz */} - -[v2-flow-network-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/H5LERpVjK2ugD42PX774kv5shHfqd13HkBPWtASq75L4 -[v2-flow-explorer-chiliz]: https://thegraph.com/explorer/subgraphs/H5LERpVjK2ugD42PX774kv5shHfqd13HkBPWtASq75L4 -[v2-flow-studio-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-chiliz/version/latest - -{/* Chain: Gnosis */} - -[v2-flow-network-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3XxHfFUMixMJTGVn1FJFFER1NFYpDDQo4QAbR2sQSpAH -[v2-flow-explorer-gnosis]: https://thegraph.com/explorer/subgraphs/3XxHfFUMixMJTGVn1FJFFER1NFYpDDQo4QAbR2sQSpAH -[v2-flow-studio-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-gnosis/version/latest - -{/* Chain: Linea */} - -[v2-flow-network-linea]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/25Ry5DsjAKLXh6b8uXSu6H85Jk9d3MHxQbpDUJTstwvx -[v2-flow-explorer-linea]: https://thegraph.com/explorer/subgraphs/25Ry5DsjAKLXh6b8uXSu6H85Jk9d3MHxQbpDUJTstwvx -[v2-flow-studio-linea]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-linea/version/latest - -{/* Chain: Lightlink */} - -[v2-flow-explorer-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-fl-lightlink/graphql -[v2-flow-custom-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-fl-lightlink - -{/* Chain: Mainnet | Ethereum */} - -[v2-flow-explorer-ethereum]: https://thegraph.com/explorer/subgraphs/DgXaXAUMFTZdwo1aZ21dmGV2vyU1Wdb1DkHyVmy3y7xi -[v2-flow-studio-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl/version/latest -[v2-flow-network-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/DgXaXAUMFTZdwo1aZ21dmGV2vyU1Wdb1DkHyVmy3y7xi - -{/* Chain: Mode */} - -[v2-flow-network-mode]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/H9D24a58cCZmzZTnu4VNdUoFCEMhNYjHP9uohXr9Qi65 -[v2-flow-explorer-mode]: https://thegraph.com/explorer/subgraphs/H9D24a58cCZmzZTnu4VNdUoFCEMhNYjHP9uohXr9Qi65 -[v2-flow-studio-mode]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-mode/version/latest - -{/* Chain: Optimism */} - -[v2-flow-network-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/JAf9rM9bn6Z91htddJ33JAyrWdNXHmseHhvx11Bpfysg -[v2-flow-explorer-optimism]: https://thegraph.com/explorer/subgraphs/JAf9rM9bn6Z91htddJ33JAyrWdNXHmseHhvx11Bpfysg -[v2-flow-studio-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-optimism/version/latest - -{/* Chain: Optimism Sepolia */} - -[v2-flow-network-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/5tosMw7VVdE9ie3Z8Hdz6Y4SqaMaKrBb3XnM9rTYUag2 -[v2-flow-explorer-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/5tosMw7VVdE9ie3Z8Hdz6Y4SqaMaKrBb3XnM9rTYUag2 -[v2-flow-studio-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-optimism-sepolia/version/latest - -{/* Chain: Polygon */} - -[v2-flow-network-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/G49hZr29bZK7TAa7KK8z4sZ3ZkL93Ss6CZDG6ffCSifV -[v2-flow-explorer-polygon]: https://thegraph.com/explorer/subgraphs/G49hZr29bZK7TAa7KK8z4sZ3ZkL93Ss6CZDG6ffCSifV -[v2-flow-studio-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-polygon/version/latest - -{/* Chain: Scroll */} - -[v2-flow-network-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2d1uvMnHnohZowpGwDdj6Gpk5gT8SNcZjbLfTA3JVRa8 -[v2-flow-explorer-scroll]: https://thegraph.com/explorer/subgraphs/2d1uvMnHnohZowpGwDdj6Gpk5gT8SNcZjbLfTA3JVRa8 -[v2-flow-studio-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-scroll/version/latest - -{/* Chain: Ethereum Sepolia */} - -[v2-flow-network-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm -[v2-flow-explorer-sepolia]: https://thegraph.com/explorer/subgraphs/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm -[v2-flow-studio-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-sepolia/version/latest - -{/* Chain: zkSync */} - -[v2-flow-network-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm -[v2-flow-explorer-zksync]: https://thegraph.com/explorer/subgraphs/iYRc4ETBqkeiyVhMeXktJ9jxEuQhQ1eJb2Bv68mGkQm -[v2-flow-studio-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-fl-zksync/version/latest - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -[endpoint-flow]: https://indexer.hyperindex.xyz/3b4ea6b/v1/graphql - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} diff --git a/docs/api/flow/_category_.json b/docs/api/flow/_category_.json index 63b6c805..b5507557 100644 --- a/docs/api/flow/_category_.json +++ b/docs/api/flow/_category_.json @@ -1,5 +1,5 @@ { "collapsed": false, "label": "Flow", - "position": 3 + "position": 6 } diff --git a/docs/api/flow/envio/01-similarities.mdx b/docs/api/flow/envio/01-similarities.mdx deleted file mode 100644 index f8faf70c..00000000 --- a/docs/api/flow/envio/01-similarities.mdx +++ /dev/null @@ -1,17 +0,0 @@ ---- -id: "similarities" -sidebar_position: 1 -title: "Similarities" ---- - -# Similarities - -Envio indexers are designed to mirror the functionality and structure of the The Graph subgraphs. - -For an introduction into the Sablier primitives and our architectural choices, check out the -[Flow subgraph](/api/flow/the-graph/entities) before reading about the `flow-envio` indexer. - -Similar entities are used between The Graph and Envio setups. - -- [Entities](/api/flow/the-graph/entities) -- [Structure](/api/flow/the-graph/structure) diff --git a/docs/api/flow/envio/02-architecture.mdx b/docs/api/flow/envio/02-architecture.mdx deleted file mode 100644 index 4d894f88..00000000 --- a/docs/api/flow/envio/02-architecture.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -id: "architecture" -sidebar_position: 3 -title: "Architecture" ---- - -The flow-envio architecture respects the same principles with lockup-envio. You can find more information -[here](/api/lockup/envio/architecture) diff --git a/docs/api/flow/envio/03-queries.mdx b/docs/api/flow/envio/03-queries.mdx deleted file mode 100644 index 71bf4432..00000000 --- a/docs/api/flow/envio/03-queries.mdx +++ /dev/null @@ -1,158 +0,0 @@ ---- -id: "queries" -sidebar_position: 4 -title: "Queries" ---- - -Building on top of the [entity structure](/api/flow/the-graph/structure) defined earlier, here are some common GraphQL -queries for fetching data from the Sablier subgraph. - -### Recent streams - -```graphql title="The 10 most recent streams" -query getStreams { - Stream(limit: 10, distinct_on: [subgraphId], order_by: { subgraphId: desc }) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Paginated streams - -To query streams in sets/pages (and avoid edge cases where using timestamps may skip simultaneous batched streams), we -can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next streams indexed before the last seen subgraphId" -query getStreams($first: Int!, $subgraphId: numeric!) { - Stream( - limit: $first - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { subgraphId: { _lt: $subgraphId } } - ) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Streams by sender - -This query includes pagination. - -:::warning - -Some queries, especially those using `OR` will potentially yield duplicate results. To make sure we only retrieve unique -streams/entities with a query, we make use of the `distinct_on` filter (and apply it on keys included in `order_by`). - -::: - -```graphql title="The next streams created by an address" -Stream( - limit: $first - offset: $skip - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { - _and: [{ sender: {_eq: $sender} }, { subgraphId: {_lt: $subgraphId} }] - } -) { - id - alias - category -} -``` - -### Streams by sender or recipient - -To show all streams that have an address marked as a sender (all cases) or a recipient, extend the example above to -account for the recipient aspect. - -This query includes pagination. - -```graphql title="The next streams related to an address, as a sender or recipient" -Stream( - limit: $first - offset: $skip - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { - or: [ - { _and: [{ sender: {_eq: $sender} }, { subgraphId: {_lt: $subgraphId} }] } - { _and: [{ recipient: {_eq: $recipient} }, { subgraphId: {_lt: $subgraphId} }] } - ] - } -) { - id - alias - category - } -``` - -### Streams by filters - -The official V2 Interfaces will provide a search interface where one may query for a list of streams using the following -filters (the conditions will be combined) - -- the sender address -- the recipient address -- a list of stream identifiers - -This query includes pagination. - -```graphql title="The 'where' clause for a complex paginated search filter" -where: { - _or: [ - { - _and: [ - { chainId: { _eq: $chainId } } - { sender: { _eq: $sender } } - { subgraphId: { _lt: $subgraphId } } - ] - } - { - _and: [ - { chainId: { _eq: $chainId } } - { recipient: { _eq: $recipient } } - { subgraphId: { _lt: $subgraphId } } - ] - } - ] - } -``` - -### Actions by stream - -:::tip - -To avoid writing the same entity definitions over and over again, check out Fragments. - -::: - -```graphql title="Most recent 100 stream actions such as withdrawals or transfers" -Action( - limit: 100 - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { stream_id: {_eq: $streamId} } -) { - id - category - stream { - ...StreamFragment - } -} -``` diff --git a/docs/api/flow/envio/_category_.json b/docs/api/flow/envio/_category_.json deleted file mode 100644 index 84b76022..00000000 --- a/docs/api/flow/envio/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "Envio", - "position": 4 -} diff --git a/docs/api/flow/graphql/01-schema.mdx b/docs/api/flow/graphql/01-schema.mdx new file mode 100644 index 00000000..027adaa7 --- /dev/null +++ b/docs/api/flow/graphql/01-schema.mdx @@ -0,0 +1,13 @@ +--- +id: "schema" +sidebar_position: 1 +title: "Schema" +--- + +import GraphQLSchema from "../../_common/GraphQLSchema.mdx"; + + + +```graphql reference title="Sablier Flow - GraphQL Schema Entities" +https://github.com/sablier-labs/indexers/tree/prb-refactor/src/exports/schemas/flow.graphql +``` diff --git a/docs/api/flow/graphql/_category_.json b/docs/api/flow/graphql/_category_.json new file mode 100644 index 00000000..e6d0a7e0 --- /dev/null +++ b/docs/api/flow/graphql/_category_.json @@ -0,0 +1,5 @@ +{ + "collapsed": true, + "label": "GraphQL", + "position": 2 +} diff --git a/docs/api/flow/graphql/envio/_category_.yml b/docs/api/flow/graphql/envio/_category_.yml new file mode 100644 index 00000000..6f563191 --- /dev/null +++ b/docs/api/flow/graphql/envio/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Envio +position: 3 diff --git a/docs/api/flow/graphql/envio/enums/_category_.yml b/docs/api/flow/graphql/envio/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/flow/graphql/envio/enums/action-select-column.mdx b/docs/api/flow/graphql/envio/enums/action-select-column.mdx new file mode 100644 index 00000000..8b9223da --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/action-select-column.mdx @@ -0,0 +1,151 @@ +--- +id: action-select-column +title: Action_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Action" + +```graphql +enum Action_select_column { + addressA + addressB + amountA + amountB + block + category + chainId + contract_id + db_write_timestamp + fee + from + hash + id + stream_id + subgraphId + timestamp +} +``` + +### Values + +#### [Action_select_column.addressA](#) + +column name + +#### [Action_select_column.addressB](#) + +column name + +#### [Action_select_column.amountA](#) + +column name + +#### [Action_select_column.amountB](#) + +column name + +#### [Action_select_column.block](#) + +column name + +#### [Action_select_column.category](#) + +column name + +#### [Action_select_column.chainId](#) + +column name + +#### [Action_select_column.contract_id](#) + +column name + +#### [Action_select_column.db_write_timestamp](#) + +column name + +#### [Action_select_column.fee](#) + +column name + +#### [Action_select_column.from](#) + +column name + +#### [Action_select_column.hash](#) + +column name + +#### [Action_select_column.id](#) + +column name + +#### [Action_select_column.stream_id](#) + +column name + +#### [Action_select_column.subgraphId](#) + +column name + +#### [Action_select_column.timestamp](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/asset-select-column.mdx b/docs/api/flow/graphql/envio/enums/asset-select-column.mdx new file mode 100644 index 00000000..2e8a9d97 --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/asset-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: asset-select-column +title: Asset_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Asset" + +```graphql +enum Asset_select_column { + address + chainId + db_write_timestamp + decimals + id + name + symbol +} +``` + +### Values + +#### [Asset_select_column.address](#) + +column name + +#### [Asset_select_column.chainId](#) + +column name + +#### [Asset_select_column.db_write_timestamp](#) + +column name + +#### [Asset_select_column.decimals](#) + +column name + +#### [Asset_select_column.id](#) + +column name + +#### [Asset_select_column.name](#) + +column name + +#### [Asset_select_column.symbol](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/batch-select-column.mdx b/docs/api/flow/graphql/envio/enums/batch-select-column.mdx new file mode 100644 index 00000000..753a5fbe --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/batch-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: batch-select-column +title: Batch_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Batch" + +```graphql +enum Batch_select_column { + batcher_id + db_write_timestamp + hash + id + label + size + timestamp +} +``` + +### Values + +#### [Batch_select_column.batcher_id](#) + +column name + +#### [Batch_select_column.db_write_timestamp](#) + +column name + +#### [Batch_select_column.hash](#) + +column name + +#### [Batch_select_column.id](#) + +column name + +#### [Batch_select_column.label](#) + +column name + +#### [Batch_select_column.size](#) + +column name + +#### [Batch_select_column.timestamp](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/batcher-select-column.mdx b/docs/api/flow/graphql/envio/enums/batcher-select-column.mdx new file mode 100644 index 00000000..0199ed33 --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/batcher-select-column.mdx @@ -0,0 +1,91 @@ +--- +id: batcher-select-column +title: Batcher_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Batcher" + +```graphql +enum Batcher_select_column { + address + batchIndex + db_write_timestamp + id +} +``` + +### Values + +#### [Batcher_select_column.address](#) + +column name + +#### [Batcher_select_column.batchIndex](#) + +column name + +#### [Batcher_select_column.db_write_timestamp](#) + +column name + +#### [Batcher_select_column.id](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/chain-metadata-select-column.mdx b/docs/api/flow/graphql/envio/enums/chain-metadata-select-column.mdx new file mode 100644 index 00000000..46a6a025 --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/chain-metadata-select-column.mdx @@ -0,0 +1,126 @@ +--- +id: chain-metadata-select-column +title: chain_metadata_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "chain_metadata" + +```graphql +enum chain_metadata_select_column { + block_height + chain_id + end_block + first_event_block_number + is_hyper_sync + latest_fetched_block_number + latest_processed_block + num_batches_fetched + num_events_processed + start_block + timestamp_caught_up_to_head_or_endblock +} +``` + +### Values + +#### [chain_metadata_select_column.block_height](#) + +column name + +#### [chain_metadata_select_column.chain_id](#) + +column name + +#### [chain_metadata_select_column.end_block](#) + +column name + +#### [chain_metadata_select_column.first_event_block_number](#) + +column name + +#### [chain_metadata_select_column.is_hyper_sync](#) + +column name + +#### [chain_metadata_select_column.latest_fetched_block_number](#) + +column name + +#### [chain_metadata_select_column.latest_processed_block](#) + +column name + +#### [chain_metadata_select_column.num_batches_fetched](#) + +column name + +#### [chain_metadata_select_column.num_events_processed](#) + +column name + +#### [chain_metadata_select_column.start_block](#) + +column name + +#### [chain_metadata_select_column.timestamp_caught_up_to_head_or_endblock](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/contract-select-column.mdx b/docs/api/flow/graphql/envio/enums/contract-select-column.mdx new file mode 100644 index 00000000..11cd200f --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/contract-select-column.mdx @@ -0,0 +1,101 @@ +--- +id: contract-select-column +title: Contract_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Contract" + +```graphql +enum Contract_select_column { + address + admin + alias + db_write_timestamp + id + version +} +``` + +### Values + +#### [Contract_select_column.address](#) + +column name + +#### [Contract_select_column.admin](#) + +column name + +#### [Contract_select_column.alias](#) + +column name + +#### [Contract_select_column.db_write_timestamp](#) + +column name + +#### [Contract_select_column.id](#) + +column name + +#### [Contract_select_column.version](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx b/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx new file mode 100644 index 00000000..79a949cb --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx @@ -0,0 +1,81 @@ +--- +id: cursor-ordering +title: cursor_ordering +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +ordering argument of a cursor + +```graphql +enum cursor_ordering { + ASC + DESC +} +``` + +### Values + +#### [cursor_ordering.ASC](#) + +ascending ordering of the cursor + +#### [cursor_ordering.DESC](#) + +descending ordering of the cursor diff --git a/docs/api/flow/graphql/envio/enums/dynamic-contract-registry-select-column.mdx b/docs/api/flow/graphql/envio/enums/dynamic-contract-registry-select-column.mdx new file mode 100644 index 00000000..32a2bdcf --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/dynamic-contract-registry-select-column.mdx @@ -0,0 +1,121 @@ +--- +id: dynamic-contract-registry-select-column +title: dynamic_contract_registry_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "dynamic_contract_registry" + +```graphql +enum dynamic_contract_registry_select_column { + chain_id + contract_address + contract_type + id + registering_event_block_number + registering_event_block_timestamp + registering_event_contract_name + registering_event_log_index + registering_event_name + registering_event_src_address +} +``` + +### Values + +#### [dynamic_contract_registry_select_column.chain_id](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_address](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_type](#) + +column name + +#### [dynamic_contract_registry_select_column.id](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_number](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_timestamp](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_contract_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_log_index](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_src_address](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx b/docs/api/flow/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx new file mode 100644 index 00000000..fdd7a95f --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx @@ -0,0 +1,86 @@ +--- +id: end-of-block-range-scanned-data-select-column +title: end_of_block_range_scanned_data_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "end_of_block_range_scanned_data" + +```graphql +enum end_of_block_range_scanned_data_select_column { + block_hash + block_number + chain_id +} +``` + +### Values + +#### [end_of_block_range_scanned_data_select_column.block_hash](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.block_number](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.chain_id](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/event-sync-state-select-column.mdx b/docs/api/flow/graphql/envio/enums/event-sync-state-select-column.mdx new file mode 100644 index 00000000..b012157b --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/event-sync-state-select-column.mdx @@ -0,0 +1,96 @@ +--- +id: event-sync-state-select-column +title: event_sync_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "event_sync_state" + +```graphql +enum event_sync_state_select_column { + block_number + block_timestamp + chain_id + is_pre_registering_dynamic_contracts + log_index +} +``` + +### Values + +#### [event_sync_state_select_column.block_number](#) + +column name + +#### [event_sync_state_select_column.block_timestamp](#) + +column name + +#### [event_sync_state_select_column.chain_id](#) + +column name + +#### [event_sync_state_select_column.is_pre_registering_dynamic_contracts](#) + +column name + +#### [event_sync_state_select_column.log_index](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/order-by.mdx b/docs/api/flow/graphql/envio/enums/order-by.mdx new file mode 100644 index 00000000..bf80959b --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/order-by.mdx @@ -0,0 +1,101 @@ +--- +id: order-by +title: order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +column ordering options + +```graphql +enum order_by { + asc + asc_nulls_first + asc_nulls_last + desc + desc_nulls_first + desc_nulls_last +} +``` + +### Values + +#### [order_by.asc](#) + +in ascending order, nulls last + +#### [order_by.asc_nulls_first](#) + +in ascending order, nulls first + +#### [order_by.asc_nulls_last](#) + +in ascending order, nulls last + +#### [order_by.desc](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_first](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_last](#) + +in descending order, nulls last diff --git a/docs/api/flow/graphql/envio/enums/persisted-state-select-column.mdx b/docs/api/flow/graphql/envio/enums/persisted-state-select-column.mdx new file mode 100644 index 00000000..3a716002 --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/persisted-state-select-column.mdx @@ -0,0 +1,101 @@ +--- +id: persisted-state-select-column +title: persisted_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "persisted_state" + +```graphql +enum persisted_state_select_column { + abi_files_hash + config_hash + envio_version + handler_files_hash + id + schema_hash +} +``` + +### Values + +#### [persisted_state_select_column.abi_files_hash](#) + +column name + +#### [persisted_state_select_column.config_hash](#) + +column name + +#### [persisted_state_select_column.envio_version](#) + +column name + +#### [persisted_state_select_column.handler_files_hash](#) + +column name + +#### [persisted_state_select_column.id](#) + +column name + +#### [persisted_state_select_column.schema_hash](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/raw-events-select-column.mdx b/docs/api/flow/graphql/envio/enums/raw-events-select-column.mdx new file mode 100644 index 00000000..a37689ff --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/raw-events-select-column.mdx @@ -0,0 +1,141 @@ +--- +id: raw-events-select-column +title: raw_events_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "raw_events" + +```graphql +enum raw_events_select_column { + block_fields + block_hash + block_number + block_timestamp + chain_id + contract_name + db_write_timestamp + event_id + event_name + log_index + params + serial + src_address + transaction_fields +} +``` + +### Values + +#### [raw_events_select_column.block_fields](#) + +column name + +#### [raw_events_select_column.block_hash](#) + +column name + +#### [raw_events_select_column.block_number](#) + +column name + +#### [raw_events_select_column.block_timestamp](#) + +column name + +#### [raw_events_select_column.chain_id](#) + +column name + +#### [raw_events_select_column.contract_name](#) + +column name + +#### [raw_events_select_column.db_write_timestamp](#) + +column name + +#### [raw_events_select_column.event_id](#) + +column name + +#### [raw_events_select_column.event_name](#) + +column name + +#### [raw_events_select_column.log_index](#) + +column name + +#### [raw_events_select_column.params](#) + +column name + +#### [raw_events_select_column.serial](#) + +column name + +#### [raw_events_select_column.src_address](#) + +column name + +#### [raw_events_select_column.transaction_fields](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/stream-select-column.mdx b/docs/api/flow/graphql/envio/enums/stream-select-column.mdx new file mode 100644 index 00000000..47358b5e --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/stream-select-column.mdx @@ -0,0 +1,251 @@ +--- +id: stream-select-column +title: Stream_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Stream" + +```graphql +enum Stream_select_column { + alias + asset_id + availableAmount + batch_id + category + chainId + contract_id + creator + db_write_timestamp + depletionTime + depositedAmount + forgivenDebt + hash + id + lastAdjustmentAction_id + lastAdjustmentTimestamp + paused + pausedAction_id + pausedTime + position + protocolFeeAmount + ratePerSecond + recipient + refundedAmount + sender + snapshotAmount + startTime + subgraphId + timestamp + tokenId + transferable + version + voided + voidedAction_id + voidedTime + withdrawnAmount +} +``` + +### Values + +#### [Stream_select_column.alias](#) + +column name + +#### [Stream_select_column.asset_id](#) + +column name + +#### [Stream_select_column.availableAmount](#) + +column name + +#### [Stream_select_column.batch_id](#) + +column name + +#### [Stream_select_column.category](#) + +column name + +#### [Stream_select_column.chainId](#) + +column name + +#### [Stream_select_column.contract_id](#) + +column name + +#### [Stream_select_column.creator](#) + +column name + +#### [Stream_select_column.db_write_timestamp](#) + +column name + +#### [Stream_select_column.depletionTime](#) + +column name + +#### [Stream_select_column.depositedAmount](#) + +column name + +#### [Stream_select_column.forgivenDebt](#) + +column name + +#### [Stream_select_column.hash](#) + +column name + +#### [Stream_select_column.id](#) + +column name + +#### [Stream_select_column.lastAdjustmentAction_id](#) + +column name + +#### [Stream_select_column.lastAdjustmentTimestamp](#) + +column name + +#### [Stream_select_column.paused](#) + +column name + +#### [Stream_select_column.pausedAction_id](#) + +column name + +#### [Stream_select_column.pausedTime](#) + +column name + +#### [Stream_select_column.position](#) + +column name + +#### [Stream_select_column.protocolFeeAmount](#) + +column name + +#### [Stream_select_column.ratePerSecond](#) + +column name + +#### [Stream_select_column.recipient](#) + +column name + +#### [Stream_select_column.refundedAmount](#) + +column name + +#### [Stream_select_column.sender](#) + +column name + +#### [Stream_select_column.snapshotAmount](#) + +column name + +#### [Stream_select_column.startTime](#) + +column name + +#### [Stream_select_column.subgraphId](#) + +column name + +#### [Stream_select_column.timestamp](#) + +column name + +#### [Stream_select_column.tokenId](#) + +column name + +#### [Stream_select_column.transferable](#) + +column name + +#### [Stream_select_column.version](#) + +column name + +#### [Stream_select_column.voided](#) + +column name + +#### [Stream_select_column.voidedAction_id](#) + +column name + +#### [Stream_select_column.voidedTime](#) + +column name + +#### [Stream_select_column.withdrawnAmount](#) + +column name diff --git a/docs/api/flow/graphql/envio/enums/watcher-select-column.mdx b/docs/api/flow/graphql/envio/enums/watcher-select-column.mdx new file mode 100644 index 00000000..c50afb8b --- /dev/null +++ b/docs/api/flow/graphql/envio/enums/watcher-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: watcher-select-column +title: Watcher_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Watcher" + +```graphql +enum Watcher_select_column { + actionIndex + chainId + db_write_timestamp + id + initialized + logs + streamIndex +} +``` + +### Values + +#### [Watcher_select_column.actionIndex](#) + +column name + +#### [Watcher_select_column.chainId](#) + +column name + +#### [Watcher_select_column.db_write_timestamp](#) + +column name + +#### [Watcher_select_column.id](#) + +column name + +#### [Watcher_select_column.initialized](#) + +column name + +#### [Watcher_select_column.logs](#) + +column name + +#### [Watcher_select_column.streamIndex](#) + +column name diff --git a/docs/api/flow/graphql/envio/graphql-overview.md b/docs/api/flow/graphql/envio/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/flow/graphql/envio/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/flow/graphql/envio/inputs/_category_.yml b/docs/api/flow/graphql/envio/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/flow/graphql/envio/inputs/action-aggregate-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-aggregate-order-by.mdx new file mode 100644 index 00000000..e67c4a16 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: action-aggregate-order-by +title: Action_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Action" + +```graphql +input Action_aggregate_order_by { + avg: Action_avg_order_by + count: order_by + max: Action_max_order_by + min: Action_min_order_by + stddev: Action_stddev_order_by + stddev_pop: Action_stddev_pop_order_by + stddev_samp: Action_stddev_samp_order_by + sum: Action_sum_order_by + var_pop: Action_var_pop_order_by + var_samp: Action_var_samp_order_by + variance: Action_variance_order_by +} +``` + +### Fields + +#### [Action_aggregate_order_by.avg](#)[Action_avg_order_by](/docs/api/flow/graphql/envio/inputs/action-avg-order-by.mdx) + +#### [Action_aggregate_order_by.count](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_aggregate_order_by.max](#)[Action_max_order_by](/docs/api/flow/graphql/envio/inputs/action-max-order-by.mdx) + +#### [Action_aggregate_order_by.min](#)[Action_min_order_by](/docs/api/flow/graphql/envio/inputs/action-min-order-by.mdx) + +#### [Action_aggregate_order_by.stddev](#)[Action_stddev_order_by](/docs/api/flow/graphql/envio/inputs/action-stddev-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_pop](#)[Action_stddev_pop_order_by](/docs/api/flow/graphql/envio/inputs/action-stddev-pop-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_samp](#)[Action_stddev_samp_order_by](/docs/api/flow/graphql/envio/inputs/action-stddev-samp-order-by.mdx) + +#### [Action_aggregate_order_by.sum](#)[Action_sum_order_by](/docs/api/flow/graphql/envio/inputs/action-sum-order-by.mdx) + +#### [Action_aggregate_order_by.var_pop](#)[Action_var_pop_order_by](/docs/api/flow/graphql/envio/inputs/action-var-pop-order-by.mdx) + +#### [Action_aggregate_order_by.var_samp](#)[Action_var_samp_order_by](/docs/api/flow/graphql/envio/inputs/action-var-samp-order-by.mdx) + +#### [Action_aggregate_order_by.variance](#)[Action_variance_order_by](/docs/api/flow/graphql/envio/inputs/action-variance-order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-avg-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-avg-order-by.mdx new file mode 100644 index 00000000..ac5ac66c --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-avg-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-avg-order-by +title: Action_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Action" + +```graphql +input Action_avg_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_avg_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx new file mode 100644 index 00000000..059c2f6d --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx @@ -0,0 +1,134 @@ +--- +id: action-bool-exp +title: Action_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Action". All fields are combined with a logical 'AND'. + +```graphql +input Action_bool_exp { + _and: [Action_bool_exp!] + _not: Action_bool_exp + _or: [Action_bool_exp!] + addressA: String_comparison_exp + addressB: String_comparison_exp + amountA: numeric_comparison_exp + amountB: numeric_comparison_exp + block: numeric_comparison_exp + category: actioncategory_comparison_exp + chainId: numeric_comparison_exp + contract: Contract_bool_exp + contract_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + fee: numeric_comparison_exp + from: String_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + stream: Stream_bool_exp + stream_id: String_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Action_bool_exp.\_and](#)[[Action_bool_exp!]](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_not](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_or](#)[[Action_bool_exp!]](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.addressA](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.addressB](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.amountA](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.amountB](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.block](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.category](#)[actioncategory_comparison_exp](/docs/api/flow/graphql/envio/inputs/actioncategory-comparison-exp.mdx) + +#### [Action_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.contract](#)[Contract_bool_exp](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Action_bool_exp.contract_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Action_bool_exp.fee](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.from](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.stream](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Action_bool_exp.stream_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-max-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-max-order-by.mdx new file mode 100644 index 00000000..bc3f8a07 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-max-order-by.mdx @@ -0,0 +1,119 @@ +--- +id: action-max-order-by +title: Action_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Action" + +```graphql +input Action_max_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_max_order_by.addressA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.addressB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.from](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.stream_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-min-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-min-order-by.mdx new file mode 100644 index 00000000..1dd252ce --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-min-order-by.mdx @@ -0,0 +1,119 @@ +--- +id: action-min-order-by +title: Action_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Action" + +```graphql +input Action_min_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_min_order_by.addressA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.addressB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.from](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.stream_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-order-by.mdx new file mode 100644 index 00000000..d2ff9469 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: action-order-by +title: Action_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Action". + +```graphql +input Action_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract: Contract_order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream: Stream_order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_order_by.addressA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.addressB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.contract](#)[Contract_order_by](/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx) + +#### [Action_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.from](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.stream](#)[Stream_order_by](/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx) + +#### [Action_order_by.stream_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-stddev-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-stddev-order-by.mdx new file mode 100644 index 00000000..1a4dea18 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-stddev-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-order-by +title: Action_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Action" + +```graphql +input Action_stddev_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-stddev-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-stddev-pop-order-by.mdx new file mode 100644 index 00000000..0ded2497 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-stddev-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-pop-order-by +title: Action_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Action" + +```graphql +input Action_stddev_pop_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_pop_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-stddev-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-stddev-samp-order-by.mdx new file mode 100644 index 00000000..0aae0150 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-stddev-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-samp-order-by +title: Action_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Action" + +```graphql +input Action_stddev_samp_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_samp_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/action-stream-cursor-input.mdx new file mode 100644 index 00000000..0bb8eb42 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: action-stream-cursor-input +title: Action_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Action" + +```graphql +input Action_stream_cursor_input { + initial_value: Action_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Action_stream_cursor_input.initial_value](#)[Action_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/action-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Action_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/action-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/action-stream-cursor-value-input.mdx new file mode 100644 index 00000000..238d1ec9 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-stream-cursor-value-input.mdx @@ -0,0 +1,119 @@ +--- +id: action-stream-cursor-value-input +title: Action_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Action_stream_cursor_value_input { + addressA: String + addressB: String + amountA: numeric + amountB: numeric + block: numeric + category: actioncategory + chainId: numeric + contract_id: String + db_write_timestamp: timestamp + fee: numeric + from: String + hash: String + id: String + stream_id: String + subgraphId: numeric + timestamp: numeric +} +``` + +### Fields + +#### [Action_stream_cursor_value_input.addressA](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.addressB](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.amountA](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.amountB](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.block](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.category](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [Action_stream_cursor_value_input.chainId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.contract_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Action_stream_cursor_value_input.fee](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.from](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.stream_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-sum-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-sum-order-by.mdx new file mode 100644 index 00000000..4da16c1f --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-sum-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-sum-order-by +title: Action_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Action" + +```graphql +input Action_sum_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_sum_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-var-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-var-pop-order-by.mdx new file mode 100644 index 00000000..385d8f8e --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-var-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-var-pop-order-by +title: Action_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Action" + +```graphql +input Action_var_pop_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_pop_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-var-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-var-samp-order-by.mdx new file mode 100644 index 00000000..3f68c7dd --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-var-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-var-samp-order-by +title: Action_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Action" + +```graphql +input Action_var_samp_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_samp_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/action-variance-order-by.mdx b/docs/api/flow/graphql/envio/inputs/action-variance-order-by.mdx new file mode 100644 index 00000000..99d8e21a --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/action-variance-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-variance-order-by +title: Action_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Action" + +```graphql +input Action_variance_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_variance_order_by.amountA](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.amountB](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.fee](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/actioncategory-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/actioncategory-comparison-exp.mdx new file mode 100644 index 00000000..85976bd5 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/actioncategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: actioncategory-comparison-exp +title: actioncategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "actioncategory". All fields are combined with logical 'AND'. + +```graphql +input actioncategory_comparison_exp { + _eq: actioncategory + _gt: actioncategory + _gte: actioncategory + _in: [actioncategory!] + _is_null: Boolean + _lt: actioncategory + _lte: actioncategory + _neq: actioncategory + _nin: [actioncategory!] +} +``` + +### Fields + +#### [actioncategory_comparison_exp.\_eq](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gt](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gte](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_in](#)[[actioncategory!]](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [actioncategory_comparison_exp.\_lt](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_lte](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_neq](#)[actioncategory](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_nin](#)[[actioncategory!]](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx new file mode 100644 index 00000000..452c51b6 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx @@ -0,0 +1,104 @@ +--- +id: asset-bool-exp +title: Asset_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Asset". All fields are combined with a logical 'AND'. + +```graphql +input Asset_bool_exp { + _and: [Asset_bool_exp!] + _not: Asset_bool_exp + _or: [Asset_bool_exp!] + address: String_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + decimals: numeric_comparison_exp + id: String_comparison_exp + name: String_comparison_exp + streams: Stream_bool_exp + symbol: String_comparison_exp +} +``` + +### Fields + +#### [Asset_bool_exp.\_and](#)[[Asset_bool_exp!]](/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_not](#)[Asset_bool_exp](/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_or](#)[[Asset_bool_exp!]](/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Asset_bool_exp.decimals](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.name](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.streams](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Asset_bool_exp.symbol](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/asset-order-by.mdx b/docs/api/flow/graphql/envio/inputs/asset-order-by.mdx new file mode 100644 index 00000000..5f3eca25 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/asset-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: asset-order-by +title: Asset_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Asset". + +```graphql +input Asset_order_by { + address: order_by + chainId: order_by + db_write_timestamp: order_by + decimals: order_by + id: order_by + name: order_by + streams_aggregate: Stream_aggregate_order_by + symbol: order_by +} +``` + +### Fields + +#### [Asset_order_by.address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.decimals](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.name](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Asset_order_by.symbol](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-input.mdx new file mode 100644 index 00000000..6ade1f82 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: asset-stream-cursor-input +title: Asset_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Asset" + +```graphql +input Asset_stream_cursor_input { + initial_value: Asset_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Asset_stream_cursor_input.initial_value](#)[Asset_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Asset_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-value-input.mdx new file mode 100644 index 00000000..dd9f9318 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/asset-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: asset-stream-cursor-value-input +title: Asset_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Asset_stream_cursor_value_input { + address: String + chainId: numeric + db_write_timestamp: timestamp + decimals: numeric + id: String + name: String + symbol: String +} +``` + +### Fields + +#### [Asset_stream_cursor_value_input.address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.chainId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Asset_stream_cursor_value_input.decimals](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.name](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.symbol](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-aggregate-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-aggregate-order-by.mdx new file mode 100644 index 00000000..7ce0300f --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: batch-aggregate-order-by +title: Batch_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Batch" + +```graphql +input Batch_aggregate_order_by { + avg: Batch_avg_order_by + count: order_by + max: Batch_max_order_by + min: Batch_min_order_by + stddev: Batch_stddev_order_by + stddev_pop: Batch_stddev_pop_order_by + stddev_samp: Batch_stddev_samp_order_by + sum: Batch_sum_order_by + var_pop: Batch_var_pop_order_by + var_samp: Batch_var_samp_order_by + variance: Batch_variance_order_by +} +``` + +### Fields + +#### [Batch_aggregate_order_by.avg](#)[Batch_avg_order_by](/docs/api/flow/graphql/envio/inputs/batch-avg-order-by.mdx) + +#### [Batch_aggregate_order_by.count](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_aggregate_order_by.max](#)[Batch_max_order_by](/docs/api/flow/graphql/envio/inputs/batch-max-order-by.mdx) + +#### [Batch_aggregate_order_by.min](#)[Batch_min_order_by](/docs/api/flow/graphql/envio/inputs/batch-min-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev](#)[Batch_stddev_order_by](/docs/api/flow/graphql/envio/inputs/batch-stddev-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev_pop](#)[Batch_stddev_pop_order_by](/docs/api/flow/graphql/envio/inputs/batch-stddev-pop-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev_samp](#)[Batch_stddev_samp_order_by](/docs/api/flow/graphql/envio/inputs/batch-stddev-samp-order-by.mdx) + +#### [Batch_aggregate_order_by.sum](#)[Batch_sum_order_by](/docs/api/flow/graphql/envio/inputs/batch-sum-order-by.mdx) + +#### [Batch_aggregate_order_by.var_pop](#)[Batch_var_pop_order_by](/docs/api/flow/graphql/envio/inputs/batch-var-pop-order-by.mdx) + +#### [Batch_aggregate_order_by.var_samp](#)[Batch_var_samp_order_by](/docs/api/flow/graphql/envio/inputs/batch-var-samp-order-by.mdx) + +#### [Batch_aggregate_order_by.variance](#)[Batch_variance_order_by](/docs/api/flow/graphql/envio/inputs/batch-variance-order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-avg-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-avg-order-by.mdx new file mode 100644 index 00000000..50ea31b1 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-avg-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-avg-order-by +title: Batch_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Batch" + +```graphql +input Batch_avg_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_avg_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_avg_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx new file mode 100644 index 00000000..51412ebf --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx @@ -0,0 +1,107 @@ +--- +id: batch-bool-exp +title: Batch_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Batch". All fields are combined with a logical 'AND'. + +```graphql +input Batch_bool_exp { + _and: [Batch_bool_exp!] + _not: Batch_bool_exp + _or: [Batch_bool_exp!] + batcher: Batcher_bool_exp + batcher_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + label: String_comparison_exp + size: numeric_comparison_exp + streams: Stream_bool_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Batch_bool_exp.\_and](#)[[Batch_bool_exp!]](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.\_not](#)[Batch_bool_exp](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.\_or](#)[[Batch_bool_exp!]](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.batcher](#)[Batcher_bool_exp](/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batch_bool_exp.batcher_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Batch_bool_exp.hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.label](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.size](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Batch_bool_exp.streams](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Batch_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-max-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-max-order-by.mdx new file mode 100644 index 00000000..ceca5ddc --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-max-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: batch-max-order-by +title: Batch_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Batch" + +```graphql +input Batch_max_order_by { + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_max_order_by.batcher_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.label](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-min-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-min-order-by.mdx new file mode 100644 index 00000000..36cd43cd --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-min-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: batch-min-order-by +title: Batch_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Batch" + +```graphql +input Batch_min_order_by { + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_min_order_by.batcher_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.label](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx new file mode 100644 index 00000000..024269e3 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: batch-order-by +title: Batch_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Batch". + +```graphql +input Batch_order_by { + batcher: Batcher_order_by + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + streams_aggregate: Stream_aggregate_order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_order_by.batcher](#)[Batcher_order_by](/docs/api/flow/graphql/envio/inputs/batcher-order-by.mdx) + +#### [Batch_order_by.batcher_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.label](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Batch_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-stddev-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-stddev-order-by.mdx new file mode 100644 index 00000000..6d6fe45c --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-stddev-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-order-by +title: Batch_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Batch" + +```graphql +input Batch_stddev_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-stddev-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-stddev-pop-order-by.mdx new file mode 100644 index 00000000..a2375d12 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-stddev-pop-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-pop-order-by +title: Batch_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Batch" + +```graphql +input Batch_stddev_pop_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_pop_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-stddev-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-stddev-samp-order-by.mdx new file mode 100644 index 00000000..354dcfeb --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-stddev-samp-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-samp-order-by +title: Batch_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Batch" + +```graphql +input Batch_stddev_samp_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_samp_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-input.mdx new file mode 100644 index 00000000..2dafefa0 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: batch-stream-cursor-input +title: Batch_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Batch" + +```graphql +input Batch_stream_cursor_input { + initial_value: Batch_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Batch_stream_cursor_input.initial_value](#)[Batch_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Batch_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-value-input.mdx new file mode 100644 index 00000000..48e2bb59 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: batch-stream-cursor-value-input +title: Batch_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Batch_stream_cursor_value_input { + batcher_id: String + db_write_timestamp: timestamp + hash: String + id: String + label: String + size: numeric + timestamp: numeric +} +``` + +### Fields + +#### [Batch_stream_cursor_value_input.batcher_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Batch_stream_cursor_value_input.hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.label](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.size](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Batch_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-sum-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-sum-order-by.mdx new file mode 100644 index 00000000..7a6dd6d6 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-sum-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-sum-order-by +title: Batch_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Batch" + +```graphql +input Batch_sum_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_sum_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_sum_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-var-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-var-pop-order-by.mdx new file mode 100644 index 00000000..19f94a32 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-var-pop-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-var-pop-order-by +title: Batch_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Batch" + +```graphql +input Batch_var_pop_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_var_pop_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_var_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-var-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-var-samp-order-by.mdx new file mode 100644 index 00000000..4c0912b2 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-var-samp-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-var-samp-order-by +title: Batch_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Batch" + +```graphql +input Batch_var_samp_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_var_samp_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_var_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batch-variance-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batch-variance-order-by.mdx new file mode 100644 index 00000000..697a6181 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batch-variance-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-variance-order-by +title: Batch_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Batch" + +```graphql +input Batch_variance_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_variance_order_by.size](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batch_variance_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx new file mode 100644 index 00000000..265827d5 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx @@ -0,0 +1,95 @@ +--- +id: batcher-bool-exp +title: Batcher_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Batcher". All fields are combined with a logical 'AND'. + +```graphql +input Batcher_bool_exp { + _and: [Batcher_bool_exp!] + _not: Batcher_bool_exp + _or: [Batcher_bool_exp!] + address: String_comparison_exp + batchIndex: numeric_comparison_exp + batches: Batch_bool_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp +} +``` + +### Fields + +#### [Batcher_bool_exp.\_and](#)[[Batcher_bool_exp!]](/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.\_not](#)[Batcher_bool_exp](/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.\_or](#)[[Batcher_bool_exp!]](/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batcher_bool_exp.batchIndex](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Batcher_bool_exp.batches](#)[Batch_bool_exp](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batcher_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Batcher_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batcher-order-by.mdx b/docs/api/flow/graphql/envio/inputs/batcher-order-by.mdx new file mode 100644 index 00000000..e6fd8522 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batcher-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: batcher-order-by +title: Batcher_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Batcher". + +```graphql +input Batcher_order_by { + address: order_by + batchIndex: order_by + batches_aggregate: Batch_aggregate_order_by + db_write_timestamp: order_by + id: order_by +} +``` + +### Fields + +#### [Batcher_order_by.address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.batchIndex](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.batches_aggregate](#)[Batch_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/batch-aggregate-order-by.mdx) + +#### [Batcher_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-input.mdx new file mode 100644 index 00000000..12b763d2 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: batcher-stream-cursor-input +title: Batcher_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Batcher" + +```graphql +input Batcher_stream_cursor_input { + initial_value: Batcher_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Batcher_stream_cursor_input.initial_value](#)[Batcher_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Batcher_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx new file mode 100644 index 00000000..c6ee04b9 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx @@ -0,0 +1,83 @@ +--- +id: batcher-stream-cursor-value-input +title: Batcher_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Batcher_stream_cursor_value_input { + address: String + batchIndex: numeric + db_write_timestamp: timestamp + id: String +} +``` + +### Fields + +#### [Batcher_stream_cursor_value_input.address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batcher_stream_cursor_value_input.batchIndex](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Batcher_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Batcher_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx new file mode 100644 index 00000000..e348d66e --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: boolean-comparison-exp +title: Boolean_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. + +```graphql +input Boolean_comparison_exp { + _eq: Boolean + _gt: Boolean + _gte: Boolean + _in: [Boolean!] + _is_null: Boolean + _lt: Boolean + _lte: Boolean + _neq: Boolean + _nin: [Boolean!] +} +``` + +### Fields + +#### [Boolean_comparison_exp.\_eq](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gt](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gte](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_in](#)[[Boolean!]](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lt](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lte](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_neq](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_nin](#)[[Boolean!]](/docs/api/flow/graphql/envio/scalars/boolean.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx new file mode 100644 index 00000000..bffa7914 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx @@ -0,0 +1,113 @@ +--- +id: chain-metadata-bool-exp +title: chain_metadata_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "chain_metadata". All fields are combined with a logical 'AND'. + +```graphql +input chain_metadata_bool_exp { + _and: [chain_metadata_bool_exp!] + _not: chain_metadata_bool_exp + _or: [chain_metadata_bool_exp!] + block_height: Int_comparison_exp + chain_id: Int_comparison_exp + end_block: Int_comparison_exp + first_event_block_number: Int_comparison_exp + is_hyper_sync: Boolean_comparison_exp + latest_fetched_block_number: Int_comparison_exp + latest_processed_block: Int_comparison_exp + num_batches_fetched: Int_comparison_exp + num_events_processed: Int_comparison_exp + start_block: Int_comparison_exp + timestamp_caught_up_to_head_or_endblock: timestamptz_comparison_exp +} +``` + +### Fields + +#### [chain_metadata_bool_exp.\_and](#)[[chain_metadata_bool_exp!]](/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_not](#)[chain_metadata_bool_exp](/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_or](#)[[chain_metadata_bool_exp!]](/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.block_height](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.end_block](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.first_event_block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.is_hyper_sync](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_fetched_block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_processed_block](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_batches_fetched](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_events_processed](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.start_block](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.timestamp_caught_up_to_head_or_endblock](#)[timestamptz_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamptz-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/chain-metadata-order-by.mdx b/docs/api/flow/graphql/envio/inputs/chain-metadata-order-by.mdx new file mode 100644 index 00000000..9730de6d --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/chain-metadata-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-order-by +title: chain_metadata_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "chain_metadata". + +```graphql +input chain_metadata_order_by { + block_height: order_by + chain_id: order_by + end_block: order_by + first_event_block_number: order_by + is_hyper_sync: order_by + latest_fetched_block_number: order_by + latest_processed_block: order_by + num_batches_fetched: order_by + num_events_processed: order_by + start_block: order_by + timestamp_caught_up_to_head_or_endblock: order_by +} +``` + +### Fields + +#### [chain_metadata_order_by.block_height](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.chain_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.end_block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.first_event_block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.is_hyper_sync](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_fetched_block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_processed_block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_batches_fetched](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_events_processed](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.start_block](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.timestamp_caught_up_to_head_or_endblock](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx new file mode 100644 index 00000000..34a16538 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: chain-metadata-stream-cursor-input +title: chain_metadata_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "chain_metadata" + +```graphql +input chain_metadata_stream_cursor_input { + initial_value: chain_metadata_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_input.initial_value](#)[chain_metadata_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [chain_metadata_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx new file mode 100644 index 00000000..414d8080 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-stream-cursor-value-input +title: chain_metadata_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input chain_metadata_stream_cursor_value_input { + block_height: Int + chain_id: Int + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean + latest_fetched_block_number: Int + latest_processed_block: Int + num_batches_fetched: Int + num_events_processed: Int + start_block: Int + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_value_input.block_height](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.chain_id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.end_block](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.first_event_block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.is_hyper_sync](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_fetched_block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_processed_block](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_batches_fetched](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_events_processed](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.start_block](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx new file mode 100644 index 00000000..02ef9ae3 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx @@ -0,0 +1,104 @@ +--- +id: contract-bool-exp +title: Contract_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Contract". All fields are combined with a logical 'AND'. + +```graphql +input Contract_bool_exp { + _and: [Contract_bool_exp!] + _not: Contract_bool_exp + _or: [Contract_bool_exp!] + actions: Action_bool_exp + address: String_comparison_exp + admin: String_comparison_exp + alias: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + streams: Stream_bool_exp + version: String_comparison_exp +} +``` + +### Fields + +#### [Contract_bool_exp.\_and](#)[[Contract_bool_exp!]](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.\_not](#)[Contract_bool_exp](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.\_or](#)[[Contract_bool_exp!]](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.actions](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Contract_bool_exp.address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.admin](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.alias](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Contract_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.streams](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Contract_bool_exp.version](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx b/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx new file mode 100644 index 00000000..dfe29694 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: contract-order-by +title: Contract_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Contract". + +```graphql +input Contract_order_by { + actions_aggregate: Action_aggregate_order_by + address: order_by + admin: order_by + alias: order_by + db_write_timestamp: order_by + id: order_by + streams_aggregate: Stream_aggregate_order_by + version: order_by +} +``` + +### Fields + +#### [Contract_order_by.actions_aggregate](#)[Action_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/action-aggregate-order-by.mdx) + +#### [Contract_order_by.address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.admin](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.alias](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Contract_order_by.version](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-input.mdx new file mode 100644 index 00000000..44649cc7 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: contract-stream-cursor-input +title: Contract_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Contract" + +```graphql +input Contract_stream_cursor_input { + initial_value: Contract_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Contract_stream_cursor_input.initial_value](#)[Contract_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Contract_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-value-input.mdx new file mode 100644 index 00000000..7859e545 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/contract-stream-cursor-value-input.mdx @@ -0,0 +1,89 @@ +--- +id: contract-stream-cursor-value-input +title: Contract_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Contract_stream_cursor_value_input { + address: String + admin: String + alias: String + db_write_timestamp: timestamp + id: String + version: String +} +``` + +### Fields + +#### [Contract_stream_cursor_value_input.address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.admin](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.alias](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Contract_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.version](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/contract-type-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/contract-type-comparison-exp.mdx new file mode 100644 index 00000000..75ff5d00 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/contract-type-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: contract-type-comparison-exp +title: contract_type_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "contract_type". All fields are combined with logical 'AND'. + +```graphql +input contract_type_comparison_exp { + _eq: contract_type + _gt: contract_type + _gte: contract_type + _in: [contract_type!] + _is_null: Boolean + _lt: contract_type + _lte: contract_type + _neq: contract_type + _nin: [contract_type!] +} +``` + +### Fields + +#### [contract_type_comparison_exp.\_eq](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gt](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gte](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_in](#)[[contract_type!]](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [contract_type_comparison_exp.\_lt](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_lte](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_neq](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_nin](#)[[contract_type!]](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx new file mode 100644 index 00000000..dd66d52b --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx @@ -0,0 +1,110 @@ +--- +id: dynamic-contract-registry-bool-exp +title: dynamic_contract_registry_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "dynamic_contract_registry". All fields are combined with a logical 'AND'. + +```graphql +input dynamic_contract_registry_bool_exp { + _and: [dynamic_contract_registry_bool_exp!] + _not: dynamic_contract_registry_bool_exp + _or: [dynamic_contract_registry_bool_exp!] + chain_id: Int_comparison_exp + contract_address: String_comparison_exp + contract_type: contract_type_comparison_exp + id: String_comparison_exp + registering_event_block_number: Int_comparison_exp + registering_event_block_timestamp: Int_comparison_exp + registering_event_contract_name: String_comparison_exp + registering_event_log_index: Int_comparison_exp + registering_event_name: String_comparison_exp + registering_event_src_address: String_comparison_exp +} +``` + +### Fields + +#### [dynamic_contract_registry_bool_exp.\_and](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_not](#)[dynamic_contract_registry_bool_exp](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_or](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_type](#)[contract_type_comparison_exp](/docs/api/flow/graphql/envio/inputs/contract-type-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_timestamp](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_contract_name](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_log_index](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_name](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_src_address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx new file mode 100644 index 00000000..7d5498f1 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-order-by +title: dynamic_contract_registry_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "dynamic_contract_registry". + +```graphql +input dynamic_contract_registry_order_by { + chain_id: order_by + contract_address: order_by + contract_type: order_by + id: order_by + registering_event_block_number: order_by + registering_event_block_timestamp: order_by + registering_event_contract_name: order_by + registering_event_log_index: order_by + registering_event_name: order_by + registering_event_src_address: order_by +} +``` + +### Fields + +#### [dynamic_contract_registry_order_by.chain_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_type](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_contract_name](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_log_index](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_name](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_src_address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx new file mode 100644 index 00000000..018e4fda --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: dynamic-contract-registry-stream-cursor-input +title: dynamic_contract_registry_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "dynamic_contract_registry" + +```graphql +input dynamic_contract_registry_stream_cursor_input { + initial_value: dynamic_contract_registry_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_input.initial_value](#)[dynamic_contract_registry_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [dynamic_contract_registry_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx new file mode 100644 index 00000000..439c5f93 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-stream-cursor-value-input +title: dynamic_contract_registry_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input dynamic_contract_registry_stream_cursor_value_input { + chain_id: Int + contract_address: String + contract_type: contract_type + id: String + registering_event_block_number: Int + registering_event_block_timestamp: Int + registering_event_contract_name: String + registering_event_log_index: Int + registering_event_name: String + registering_event_src_address: String +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_value_input.chain_id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_type](#)[contract_type](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_timestamp](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_contract_name](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_log_index](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_name](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_src_address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx new file mode 100644 index 00000000..eedb6782 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx @@ -0,0 +1,89 @@ +--- +id: end-of-block-range-scanned-data-bool-exp +title: end_of_block_range_scanned_data_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "end_of_block_range_scanned_data". All fields are combined with a logical 'AND'. + +```graphql +input end_of_block_range_scanned_data_bool_exp { + _and: [end_of_block_range_scanned_data_bool_exp!] + _not: end_of_block_range_scanned_data_bool_exp + _or: [end_of_block_range_scanned_data_bool_exp!] + block_hash: String_comparison_exp + block_number: Int_comparison_exp + chain_id: Int_comparison_exp +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_bool_exp.\_and](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_not](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_or](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx new file mode 100644 index 00000000..be4f81b5 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-order-by +title: end_of_block_range_scanned_data_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "end_of_block_range_scanned_data". + +```graphql +input end_of_block_range_scanned_data_order_by { + block_hash: order_by + block_number: order_by + chain_id: order_by +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_order_by.block_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.chain_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx new file mode 100644 index 00000000..459bb53a --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-input +title: end_of_block_range_scanned_data_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "end_of_block_range_scanned_data" + +```graphql +input end_of_block_range_scanned_data_stream_cursor_input { + initial_value: end_of_block_range_scanned_data_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_input.initial_value](#)[end_of_block_range_scanned_data_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [end_of_block_range_scanned_data_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx new file mode 100644 index 00000000..a5392465 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-value-input +title: end_of_block_range_scanned_data_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input end_of_block_range_scanned_data_stream_cursor_value_input { + block_hash: String + block_number: Int + chain_id: Int +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.chain_id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx new file mode 100644 index 00000000..d21f9506 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx @@ -0,0 +1,95 @@ +--- +id: event-sync-state-bool-exp +title: event_sync_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "event_sync_state". All fields are combined with a logical 'AND'. + +```graphql +input event_sync_state_bool_exp { + _and: [event_sync_state_bool_exp!] + _not: event_sync_state_bool_exp + _or: [event_sync_state_bool_exp!] + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + is_pre_registering_dynamic_contracts: Boolean_comparison_exp + log_index: Int_comparison_exp +} +``` + +### Fields + +#### [event_sync_state_bool_exp.\_and](#)[[event_sync_state_bool_exp!]](/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_not](#)[event_sync_state_bool_exp](/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_or](#)[[event_sync_state_bool_exp!]](/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.is_pre_registering_dynamic_contracts](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/event-sync-state-order-by.mdx b/docs/api/flow/graphql/envio/inputs/event-sync-state-order-by.mdx new file mode 100644 index 00000000..26413482 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/event-sync-state-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-order-by +title: event_sync_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "event_sync_state". + +```graphql +input event_sync_state_order_by { + block_number: order_by + block_timestamp: order_by + chain_id: order_by + is_pre_registering_dynamic_contracts: order_by + log_index: order_by +} +``` + +### Fields + +#### [event_sync_state_order_by.block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.block_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.chain_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.is_pre_registering_dynamic_contracts](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.log_index](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx new file mode 100644 index 00000000..cfe1aaa7 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: event-sync-state-stream-cursor-input +title: event_sync_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "event_sync_state" + +```graphql +input event_sync_state_stream_cursor_input { + initial_value: event_sync_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_input.initial_value](#)[event_sync_state_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [event_sync_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..d645308f --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-stream-cursor-value-input +title: event_sync_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input event_sync_state_stream_cursor_value_input { + block_number: Int + block_timestamp: Int + chain_id: Int + is_pre_registering_dynamic_contracts: Boolean + log_index: Int +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_value_input.block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.chain_id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state_stream_cursor_value_input.log_index](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx new file mode 100644 index 00000000..d5a384c2 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: int-comparison-exp +title: Int_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. + +```graphql +input Int_comparison_exp { + _eq: Int + _gt: Int + _gte: Int + _in: [Int!] + _is_null: Boolean + _lt: Int + _lte: Int + _neq: Int + _nin: [Int!] +} +``` + +### Fields + +#### [Int_comparison_exp.\_eq](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gt](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gte](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_in](#)[[Int!]](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Int_comparison_exp.\_lt](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_lte](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_neq](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_nin](#)[[Int!]](/docs/api/flow/graphql/envio/scalars/int.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/jsonb-cast-exp.mdx b/docs/api/flow/graphql/envio/inputs/jsonb-cast-exp.mdx new file mode 100644 index 00000000..29f5a205 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/jsonb-cast-exp.mdx @@ -0,0 +1,74 @@ +--- +id: jsonb-cast-exp +title: jsonb_cast_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input jsonb_cast_exp { + String: String_comparison_exp +} +``` + +### Fields + +#### [jsonb_cast_exp.String](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx new file mode 100644 index 00000000..4ca05142 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx @@ -0,0 +1,126 @@ +--- +id: jsonb-comparison-exp +title: jsonb_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. + +```graphql +input jsonb_comparison_exp { + _cast: jsonb_cast_exp + _contained_in: jsonb + _contains: jsonb + _eq: jsonb + _gt: jsonb + _gte: jsonb + _has_key: String + _has_keys_all: [String!] + _has_keys_any: [String!] + _in: [jsonb!] + _is_null: Boolean + _lt: jsonb + _lte: jsonb + _neq: jsonb + _nin: [jsonb!] +} +``` + +### Fields + +#### [jsonb_comparison_exp.\_cast](#)[jsonb_cast_exp](/docs/api/flow/graphql/envio/inputs/jsonb-cast-exp.mdx) + +#### [jsonb_comparison_exp.\_contained_in](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +is the column contained in the given json value + +#### [jsonb_comparison_exp.\_contains](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +does the column contain the given json value at the top level + +#### [jsonb_comparison_exp.\_eq](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gt](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gte](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_has_key](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the string exist as a top-level key in the column + +#### [jsonb_comparison_exp.\_has_keys_all](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +do all of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_has_keys_any](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +do any of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_in](#)[[jsonb!]](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [jsonb_comparison_exp.\_lt](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_lte](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_neq](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_nin](#)[[jsonb!]](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx new file mode 100644 index 00000000..9a652919 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: numeric-comparison-exp +title: numeric_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. + +```graphql +input numeric_comparison_exp { + _eq: numeric + _gt: numeric + _gte: numeric + _in: [numeric!] + _is_null: Boolean + _lt: numeric + _lte: numeric + _neq: numeric + _nin: [numeric!] +} +``` + +### Fields + +#### [numeric_comparison_exp.\_eq](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gt](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gte](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_in](#)[[numeric!]](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [numeric_comparison_exp.\_lt](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_lte](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_neq](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_nin](#)[[numeric!]](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx new file mode 100644 index 00000000..4687aac4 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx @@ -0,0 +1,98 @@ +--- +id: persisted-state-bool-exp +title: persisted_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "persisted_state". All fields are combined with a logical 'AND'. + +```graphql +input persisted_state_bool_exp { + _and: [persisted_state_bool_exp!] + _not: persisted_state_bool_exp + _or: [persisted_state_bool_exp!] + abi_files_hash: String_comparison_exp + config_hash: String_comparison_exp + envio_version: String_comparison_exp + handler_files_hash: String_comparison_exp + id: Int_comparison_exp + schema_hash: String_comparison_exp +} +``` + +### Fields + +#### [persisted_state_bool_exp.\_and](#)[[persisted_state_bool_exp!]](/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_not](#)[persisted_state_bool_exp](/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_or](#)[[persisted_state_bool_exp!]](/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.abi_files_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.config_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.envio_version](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.handler_files_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [persisted_state_bool_exp.schema_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/persisted-state-order-by.mdx b/docs/api/flow/graphql/envio/inputs/persisted-state-order-by.mdx new file mode 100644 index 00000000..081e7a2d --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/persisted-state-order-by.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-order-by +title: persisted_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "persisted_state". + +```graphql +input persisted_state_order_by { + abi_files_hash: order_by + config_hash: order_by + envio_version: order_by + handler_files_hash: order_by + id: order_by + schema_hash: order_by +} +``` + +### Fields + +#### [persisted_state_order_by.abi_files_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.config_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.envio_version](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.handler_files_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.schema_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx new file mode 100644 index 00000000..fc5f21a3 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: persisted-state-stream-cursor-input +title: persisted_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "persisted_state" + +```graphql +input persisted_state_stream_cursor_input { + initial_value: persisted_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [persisted_state_stream_cursor_input.initial_value](#)[persisted_state_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [persisted_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..3aaab1d0 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-stream-cursor-value-input +title: persisted_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input persisted_state_stream_cursor_value_input { + abi_files_hash: String + config_hash: String + envio_version: String + handler_files_hash: String + id: Int + schema_hash: String +} +``` + +### Fields + +#### [persisted_state_stream_cursor_value_input.abi_files_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.config_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.envio_version](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.handler_files_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [persisted_state_stream_cursor_value_input.schema_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx new file mode 100644 index 00000000..62ec7dcc --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx @@ -0,0 +1,122 @@ +--- +id: raw-events-bool-exp +title: raw_events_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "raw_events". All fields are combined with a logical 'AND'. + +```graphql +input raw_events_bool_exp { + _and: [raw_events_bool_exp!] + _not: raw_events_bool_exp + _or: [raw_events_bool_exp!] + block_fields: jsonb_comparison_exp + block_hash: String_comparison_exp + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + contract_name: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + event_id: numeric_comparison_exp + event_name: String_comparison_exp + log_index: Int_comparison_exp + params: jsonb_comparison_exp + serial: Int_comparison_exp + src_address: String_comparison_exp + transaction_fields: jsonb_comparison_exp +} +``` + +### Fields + +#### [raw_events_bool_exp.\_and](#)[[raw_events_bool_exp!]](/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_not](#)[raw_events_bool_exp](/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_or](#)[[raw_events_bool_exp!]](/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.block_fields](#)[jsonb_comparison_exp](/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.contract_name](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_id](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_name](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.params](#)[jsonb_comparison_exp](/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.serial](#)[Int_comparison_exp](/docs/api/flow/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.src_address](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.transaction_fields](#)[jsonb_comparison_exp](/docs/api/flow/graphql/envio/inputs/jsonb-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/raw-events-order-by.mdx b/docs/api/flow/graphql/envio/inputs/raw-events-order-by.mdx new file mode 100644 index 00000000..2de26ebf --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/raw-events-order-by.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-order-by +title: raw_events_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "raw_events". + +```graphql +input raw_events_order_by { + block_fields: order_by + block_hash: order_by + block_number: order_by + block_timestamp: order_by + chain_id: order_by + contract_name: order_by + db_write_timestamp: order_by + event_id: order_by + event_name: order_by + log_index: order_by + params: order_by + serial: order_by + src_address: order_by + transaction_fields: order_by +} +``` + +### Fields + +#### [raw_events_order_by.block_fields](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_number](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.chain_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.contract_name](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_name](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.log_index](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.params](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.serial](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.src_address](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.transaction_fields](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-input.mdx new file mode 100644 index 00000000..638ee081 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: raw-events-stream-cursor-input +title: raw_events_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "raw_events" + +```graphql +input raw_events_stream_cursor_input { + initial_value: raw_events_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [raw_events_stream_cursor_input.initial_value](#)[raw_events_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [raw_events_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx new file mode 100644 index 00000000..bd608d3e --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-stream-cursor-value-input +title: raw_events_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input raw_events_stream_cursor_value_input { + block_fields: jsonb + block_hash: String + block_number: Int + block_timestamp: Int + chain_id: Int + contract_name: String + db_write_timestamp: timestamp + event_id: numeric + event_name: String + log_index: Int + params: jsonb + serial: Int + src_address: String + transaction_fields: jsonb +} +``` + +### Fields + +#### [raw_events_stream_cursor_value_input.block_fields](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.block_hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.chain_id](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.contract_name](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events_stream_cursor_value_input.event_id](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [raw_events_stream_cursor_value_input.event_name](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.log_index](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.params](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.serial](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.src_address](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.transaction_fields](#)[jsonb](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx new file mode 100644 index 00000000..9ce72b6e --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: stream-aggregate-order-by +title: Stream_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Stream" + +```graphql +input Stream_aggregate_order_by { + avg: Stream_avg_order_by + count: order_by + max: Stream_max_order_by + min: Stream_min_order_by + stddev: Stream_stddev_order_by + stddev_pop: Stream_stddev_pop_order_by + stddev_samp: Stream_stddev_samp_order_by + sum: Stream_sum_order_by + var_pop: Stream_var_pop_order_by + var_samp: Stream_var_samp_order_by + variance: Stream_variance_order_by +} +``` + +### Fields + +#### [Stream_aggregate_order_by.avg](#)[Stream_avg_order_by](/docs/api/flow/graphql/envio/inputs/stream-avg-order-by.mdx) + +#### [Stream_aggregate_order_by.count](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_aggregate_order_by.max](#)[Stream_max_order_by](/docs/api/flow/graphql/envio/inputs/stream-max-order-by.mdx) + +#### [Stream_aggregate_order_by.min](#)[Stream_min_order_by](/docs/api/flow/graphql/envio/inputs/stream-min-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev](#)[Stream_stddev_order_by](/docs/api/flow/graphql/envio/inputs/stream-stddev-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev_pop](#)[Stream_stddev_pop_order_by](/docs/api/flow/graphql/envio/inputs/stream-stddev-pop-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev_samp](#)[Stream_stddev_samp_order_by](/docs/api/flow/graphql/envio/inputs/stream-stddev-samp-order-by.mdx) + +#### [Stream_aggregate_order_by.sum](#)[Stream_sum_order_by](/docs/api/flow/graphql/envio/inputs/stream-sum-order-by.mdx) + +#### [Stream_aggregate_order_by.var_pop](#)[Stream_var_pop_order_by](/docs/api/flow/graphql/envio/inputs/stream-var-pop-order-by.mdx) + +#### [Stream_aggregate_order_by.var_samp](#)[Stream_var_samp_order_by](/docs/api/flow/graphql/envio/inputs/stream-var-samp-order-by.mdx) + +#### [Stream_aggregate_order_by.variance](#)[Stream_variance_order_by](/docs/api/flow/graphql/envio/inputs/stream-variance-order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-avg-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-avg-order-by.mdx new file mode 100644 index 00000000..4aa2e3d3 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-avg-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-avg-order-by +title: Stream_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Stream" + +```graphql +input Stream_avg_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_avg_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx new file mode 100644 index 00000000..b749e6ae --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx @@ -0,0 +1,209 @@ +--- +id: stream-bool-exp +title: Stream_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Stream". All fields are combined with a logical 'AND'. + +```graphql +input Stream_bool_exp { + _and: [Stream_bool_exp!] + _not: Stream_bool_exp + _or: [Stream_bool_exp!] + actions: Action_bool_exp + alias: String_comparison_exp + asset: Asset_bool_exp + asset_id: String_comparison_exp + availableAmount: numeric_comparison_exp + batch: Batch_bool_exp + batch_id: String_comparison_exp + category: streamcategory_comparison_exp + chainId: numeric_comparison_exp + contract: Contract_bool_exp + contract_id: String_comparison_exp + creator: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + depletionTime: numeric_comparison_exp + depositedAmount: numeric_comparison_exp + forgivenDebt: numeric_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + lastAdjustmentAction: Action_bool_exp + lastAdjustmentAction_id: String_comparison_exp + lastAdjustmentTimestamp: numeric_comparison_exp + paused: Boolean_comparison_exp + pausedAction: Action_bool_exp + pausedAction_id: String_comparison_exp + pausedTime: numeric_comparison_exp + position: numeric_comparison_exp + protocolFeeAmount: numeric_comparison_exp + ratePerSecond: numeric_comparison_exp + recipient: String_comparison_exp + refundedAmount: numeric_comparison_exp + sender: String_comparison_exp + snapshotAmount: numeric_comparison_exp + startTime: numeric_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp + tokenId: numeric_comparison_exp + transferable: Boolean_comparison_exp + version: String_comparison_exp + voided: Boolean_comparison_exp + voidedAction: Action_bool_exp + voidedAction_id: String_comparison_exp + voidedTime: numeric_comparison_exp + withdrawnAmount: numeric_comparison_exp +} +``` + +### Fields + +#### [Stream_bool_exp.\_and](#)[[Stream_bool_exp!]](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.\_not](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.\_or](#)[[Stream_bool_exp!]](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.actions](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.alias](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.asset](#)[Asset_bool_exp](/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Stream_bool_exp.asset_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.availableAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.batch](#)[Batch_bool_exp](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Stream_bool_exp.batch_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.category](#)[streamcategory_comparison_exp](/docs/api/flow/graphql/envio/inputs/streamcategory-comparison-exp.mdx) + +#### [Stream_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.contract](#)[Contract_bool_exp](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Stream_bool_exp.contract_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.creator](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Stream_bool_exp.depletionTime](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.depositedAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.forgivenDebt](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.hash](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.lastAdjustmentAction](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.lastAdjustmentAction_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.lastAdjustmentTimestamp](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.paused](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.pausedAction](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.pausedAction_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.pausedTime](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.position](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.protocolFeeAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.ratePerSecond](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.recipient](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.refundedAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.sender](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.snapshotAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.startTime](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.tokenId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.transferable](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.version](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.voided](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.voidedAction](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.voidedAction_id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.voidedTime](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.withdrawnAmount](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-max-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-max-order-by.mdx new file mode 100644 index 00000000..2ba632cd --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-max-order-by.mdx @@ -0,0 +1,170 @@ +--- +id: stream-max-order-by +title: Stream_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Stream" + +```graphql +input Stream_max_order_by { + alias: order_by + asset_id: order_by + availableAmount: order_by + batch_id: order_by + category: order_by + chainId: order_by + contract_id: order_by + creator: order_by + db_write_timestamp: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + hash: order_by + id: order_by + lastAdjustmentAction_id: order_by + lastAdjustmentTimestamp: order_by + pausedAction_id: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + recipient: order_by + refundedAmount: order_by + sender: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + version: order_by + voidedAction_id: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_max_order_by.alias](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.asset_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.batch_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.creator](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.lastAdjustmentAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.pausedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.recipient](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.sender](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.version](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.voidedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-min-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-min-order-by.mdx new file mode 100644 index 00000000..84fcc2d3 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-min-order-by.mdx @@ -0,0 +1,170 @@ +--- +id: stream-min-order-by +title: Stream_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Stream" + +```graphql +input Stream_min_order_by { + alias: order_by + asset_id: order_by + availableAmount: order_by + batch_id: order_by + category: order_by + chainId: order_by + contract_id: order_by + creator: order_by + db_write_timestamp: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + hash: order_by + id: order_by + lastAdjustmentAction_id: order_by + lastAdjustmentTimestamp: order_by + pausedAction_id: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + recipient: order_by + refundedAmount: order_by + sender: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + version: order_by + voidedAction_id: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_min_order_by.alias](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.asset_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.batch_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.creator](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.lastAdjustmentAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.pausedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.recipient](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.sender](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.version](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.voidedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx new file mode 100644 index 00000000..8bc044a1 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx @@ -0,0 +1,200 @@ +--- +id: stream-order-by +title: Stream_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Stream". + +```graphql +input Stream_order_by { + actions_aggregate: Action_aggregate_order_by + alias: order_by + asset: Asset_order_by + asset_id: order_by + availableAmount: order_by + batch: Batch_order_by + batch_id: order_by + category: order_by + chainId: order_by + contract: Contract_order_by + contract_id: order_by + creator: order_by + db_write_timestamp: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + hash: order_by + id: order_by + lastAdjustmentAction: Action_order_by + lastAdjustmentAction_id: order_by + lastAdjustmentTimestamp: order_by + paused: order_by + pausedAction: Action_order_by + pausedAction_id: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + recipient: order_by + refundedAmount: order_by + sender: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + transferable: order_by + version: order_by + voided: order_by + voidedAction: Action_order_by + voidedAction_id: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_order_by.actions_aggregate](#)[Action_aggregate_order_by](/docs/api/flow/graphql/envio/inputs/action-aggregate-order-by.mdx) + +#### [Stream_order_by.alias](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.asset](#)[Asset_order_by](/docs/api/flow/graphql/envio/inputs/asset-order-by.mdx) + +#### [Stream_order_by.asset_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.batch](#)[Batch_order_by](/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx) + +#### [Stream_order_by.batch_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.category](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.contract](#)[Contract_order_by](/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx) + +#### [Stream_order_by.contract_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.creator](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.hash](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.lastAdjustmentAction](#)[Action_order_by](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +#### [Stream_order_by.lastAdjustmentAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.paused](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.pausedAction](#)[Action_order_by](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +#### [Stream_order_by.pausedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.recipient](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.sender](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.transferable](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.version](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.voided](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.voidedAction](#)[Action_order_by](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +#### [Stream_order_by.voidedAction_id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-stddev-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-stddev-order-by.mdx new file mode 100644 index 00000000..02b5e3f9 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-stddev-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-order-by +title: Stream_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Stream" + +```graphql +input Stream_stddev_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-stddev-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-stddev-pop-order-by.mdx new file mode 100644 index 00000000..d8df86e8 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-stddev-pop-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-pop-order-by +title: Stream_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Stream" + +```graphql +input Stream_stddev_pop_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_pop_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-stddev-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-stddev-samp-order-by.mdx new file mode 100644 index 00000000..81f22dc0 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-stddev-samp-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-samp-order-by +title: Stream_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Stream" + +```graphql +input Stream_stddev_samp_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_samp_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-input.mdx new file mode 100644 index 00000000..54b74ba8 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: stream-stream-cursor-input +title: Stream_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Stream" + +```graphql +input Stream_stream_cursor_input { + initial_value: Stream_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Stream_stream_cursor_input.initial_value](#)[Stream_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Stream_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-value-input.mdx new file mode 100644 index 00000000..e637ccf0 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-stream-cursor-value-input.mdx @@ -0,0 +1,179 @@ +--- +id: stream-stream-cursor-value-input +title: Stream_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Stream_stream_cursor_value_input { + alias: String + asset_id: String + availableAmount: numeric + batch_id: String + category: streamcategory + chainId: numeric + contract_id: String + creator: String + db_write_timestamp: timestamp + depletionTime: numeric + depositedAmount: numeric + forgivenDebt: numeric + hash: String + id: String + lastAdjustmentAction_id: String + lastAdjustmentTimestamp: numeric + paused: Boolean + pausedAction_id: String + pausedTime: numeric + position: numeric + protocolFeeAmount: numeric + ratePerSecond: numeric + recipient: String + refundedAmount: numeric + sender: String + snapshotAmount: numeric + startTime: numeric + subgraphId: numeric + timestamp: numeric + tokenId: numeric + transferable: Boolean + version: String + voided: Boolean + voidedAction_id: String + voidedTime: numeric + withdrawnAmount: numeric +} +``` + +### Fields + +#### [Stream_stream_cursor_value_input.alias](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.asset_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.availableAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.batch_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.category](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [Stream_stream_cursor_value_input.chainId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.contract_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.creator](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Stream_stream_cursor_value_input.depletionTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.depositedAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.forgivenDebt](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.hash](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.lastAdjustmentAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.lastAdjustmentTimestamp](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.paused](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.pausedAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.pausedTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.position](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.protocolFeeAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.ratePerSecond](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.recipient](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.refundedAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.sender](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.snapshotAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.startTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.tokenId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.transferable](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.version](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.voided](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.voidedAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.voidedTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.withdrawnAmount](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-sum-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-sum-order-by.mdx new file mode 100644 index 00000000..8f2f6bfd --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-sum-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-sum-order-by +title: Stream_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Stream" + +```graphql +input Stream_sum_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_sum_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-var-pop-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-var-pop-order-by.mdx new file mode 100644 index 00000000..14383939 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-var-pop-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-var-pop-order-by +title: Stream_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Stream" + +```graphql +input Stream_var_pop_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_var_pop_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-var-samp-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-var-samp-order-by.mdx new file mode 100644 index 00000000..3a40ef6e --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-var-samp-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-var-samp-order-by +title: Stream_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Stream" + +```graphql +input Stream_var_samp_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_var_samp_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/stream-variance-order-by.mdx b/docs/api/flow/graphql/envio/inputs/stream-variance-order-by.mdx new file mode 100644 index 00000000..70e50167 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/stream-variance-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-variance-order-by +title: Stream_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Stream" + +```graphql +input Stream_variance_order_by { + availableAmount: order_by + chainId: order_by + depletionTime: order_by + depositedAmount: order_by + forgivenDebt: order_by + lastAdjustmentTimestamp: order_by + pausedTime: order_by + position: order_by + protocolFeeAmount: order_by + ratePerSecond: order_by + refundedAmount: order_by + snapshotAmount: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + voidedTime: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_variance_order_by.availableAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.depletionTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.depositedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.forgivenDebt](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.lastAdjustmentTimestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.pausedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.position](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.protocolFeeAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.ratePerSecond](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.refundedAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.snapshotAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.startTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.subgraphId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.tokenId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.voidedTime](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.withdrawnAmount](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/streamcategory-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/streamcategory-comparison-exp.mdx new file mode 100644 index 00000000..8b484e97 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/streamcategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: streamcategory-comparison-exp +title: streamcategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "streamcategory". All fields are combined with logical 'AND'. + +```graphql +input streamcategory_comparison_exp { + _eq: streamcategory + _gt: streamcategory + _gte: streamcategory + _in: [streamcategory!] + _is_null: Boolean + _lt: streamcategory + _lte: streamcategory + _neq: streamcategory + _nin: [streamcategory!] +} +``` + +### Fields + +#### [streamcategory_comparison_exp.\_eq](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_gt](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_gte](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_in](#)[[streamcategory!]](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [streamcategory_comparison_exp.\_lt](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_lte](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_neq](#)[streamcategory](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_nin](#)[[streamcategory!]](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/string-array-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/string-array-comparison-exp.mdx new file mode 100644 index 00000000..9b2a4fd5 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/string-array-comparison-exp.mdx @@ -0,0 +1,108 @@ +--- +id: string-array-comparison-exp +title: String_array_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_array_comparison_exp { + _contained_in: [String!] + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _is_null: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} +``` + +### Fields + +#### [String_array_comparison_exp.\_contained_in](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +is the array contained in the given array value + +#### [String_array_comparison_exp.\_contains](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the array contain the given value + +#### [String_array_comparison_exp.\_eq](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gt](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gte](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_in](#)[[[String!]!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [String_array_comparison_exp.\_lt](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_lte](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_neq](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_nin](#)[[[String!]!]](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx new file mode 100644 index 00000000..12c75ab4 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx @@ -0,0 +1,148 @@ +--- +id: string-comparison-exp +title: String_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_comparison_exp { + _eq: String + _gt: String + _gte: String + _ilike: String + _in: [String!] + _iregex: String + _is_null: Boolean + _like: String + _lt: String + _lte: String + _neq: String + _nilike: String + _nin: [String!] + _niregex: String + _nlike: String + _nregex: String + _nsimilar: String + _regex: String + _similar: String +} +``` + +### Fields + +#### [String_comparison_exp.\_eq](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gt](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gte](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_ilike](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column match the given case-insensitive pattern + +#### [String_comparison_exp.\_in](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_iregex](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [String_comparison_exp.\_like](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column match the given pattern + +#### [String_comparison_exp.\_lt](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_lte](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_neq](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_nilike](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column NOT match the given case-insensitive pattern + +#### [String_comparison_exp.\_nin](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_niregex](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_nlike](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column NOT match the given pattern + +#### [String_comparison_exp.\_nregex](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_nsimilar](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column NOT match the given SQL regular expression + +#### [String_comparison_exp.\_regex](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_similar](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +does the column match the given SQL regular expression diff --git a/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx new file mode 100644 index 00000000..f58b3449 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamp-comparison-exp +title: timestamp_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. + +```graphql +input timestamp_comparison_exp { + _eq: timestamp + _gt: timestamp + _gte: timestamp + _in: [timestamp!] + _is_null: Boolean + _lt: timestamp + _lte: timestamp + _neq: timestamp + _nin: [timestamp!] +} +``` + +### Fields + +#### [timestamp_comparison_exp.\_eq](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gt](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gte](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_in](#)[[timestamp!]](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [timestamp_comparison_exp.\_lt](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_lte](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_neq](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_nin](#)[[timestamp!]](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/timestamptz-comparison-exp.mdx b/docs/api/flow/graphql/envio/inputs/timestamptz-comparison-exp.mdx new file mode 100644 index 00000000..c0cb1399 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/timestamptz-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamptz-comparison-exp +title: timestamptz_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. + +```graphql +input timestamptz_comparison_exp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _is_null: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} +``` + +### Fields + +#### [timestamptz_comparison_exp.\_eq](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gt](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gte](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_in](#)[[timestamptz!]](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_is_null](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [timestamptz_comparison_exp.\_lt](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_lte](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_neq](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_nin](#)[[timestamptz!]](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx b/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx new file mode 100644 index 00000000..76be5194 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx @@ -0,0 +1,101 @@ +--- +id: watcher-bool-exp +title: Watcher_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Watcher". All fields are combined with a logical 'AND'. + +```graphql +input Watcher_bool_exp { + _and: [Watcher_bool_exp!] + _not: Watcher_bool_exp + _or: [Watcher_bool_exp!] + actionIndex: numeric_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + initialized: Boolean_comparison_exp + logs: String_array_comparison_exp + streamIndex: numeric_comparison_exp +} +``` + +### Fields + +#### [Watcher_bool_exp.\_and](#)[[Watcher_bool_exp!]](/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_not](#)[Watcher_bool_exp](/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_or](#)[[Watcher_bool_exp!]](/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.actionIndex](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/flow/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Watcher_bool_exp.id](#)[String_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Watcher_bool_exp.initialized](#)[Boolean_comparison_exp](/docs/api/flow/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Watcher_bool_exp.logs](#)[String_array_comparison_exp](/docs/api/flow/graphql/envio/inputs/string-array-comparison-exp.mdx) + +#### [Watcher_bool_exp.streamIndex](#)[numeric_comparison_exp](/docs/api/flow/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/watcher-order-by.mdx b/docs/api/flow/graphql/envio/inputs/watcher-order-by.mdx new file mode 100644 index 00000000..9cdba9fc --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/watcher-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-order-by +title: Watcher_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Watcher". + +```graphql +input Watcher_order_by { + actionIndex: order_by + chainId: order_by + db_write_timestamp: order_by + id: order_by + initialized: order_by + logs: order_by + streamIndex: order_by +} +``` + +### Fields + +#### [Watcher_order_by.actionIndex](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.chainId](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.db_write_timestamp](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.id](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.initialized](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.logs](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.streamIndex](#)[order_by](/docs/api/flow/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-input.mdx b/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-input.mdx new file mode 100644 index 00000000..1584e95c --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: watcher-stream-cursor-input +title: Watcher_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Watcher" + +```graphql +input Watcher_stream_cursor_input { + initial_value: Watcher_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Watcher_stream_cursor_input.initial_value](#)[Watcher_stream_cursor_value_input!](/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Watcher_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/flow/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx b/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx new file mode 100644 index 00000000..85e9dbe9 --- /dev/null +++ b/docs/api/flow/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-stream-cursor-value-input +title: Watcher_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Watcher_stream_cursor_value_input { + actionIndex: numeric + chainId: numeric + db_write_timestamp: timestamp + id: String + initialized: Boolean + logs: [String!] + streamIndex: numeric +} +``` + +### Fields + +#### [Watcher_stream_cursor_value_input.actionIndex](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.chainId](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher_stream_cursor_value_input.id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Watcher_stream_cursor_value_input.initialized](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Watcher_stream_cursor_value_input.logs](#)[[String!]](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Watcher_stream_cursor_value_input.streamIndex](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/objects/_category_.yml b/docs/api/flow/graphql/envio/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/flow/graphql/envio/objects/action.mdx b/docs/api/flow/graphql/envio/objects/action.mdx new file mode 100644 index 00000000..d5d3409a --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/action.mdx @@ -0,0 +1,129 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Action" + +```graphql +type Action { + addressA: String + addressB: String + amountA: numeric + amountB: numeric + block: numeric! + category: actioncategory! + chainId: numeric! + contract: Contract + contract_id: String! + db_write_timestamp: timestamp + fee: numeric + from: String! + hash: String! + id: String! + stream: Stream + stream_id: String + subgraphId: numeric! + timestamp: numeric! +} +``` + +### Fields + +#### [Action.addressA](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.addressB](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.amountA](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.amountB](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.block](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.category](#)[actioncategory!](/docs/api/flow/graphql/envio/scalars/actioncategory.mdx) + +#### [Action.chainId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.contract](#)[Contract](/docs/api/flow/graphql/envio/objects/contract.mdx) + +An object relationship + +#### [Action.contract_id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Action.fee](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.from](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.stream](#)[Stream](/docs/api/flow/graphql/envio/objects/stream.mdx) + +An object relationship + +#### [Action.stream_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Action.subgraphId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Action.timestamp](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/objects/asset.mdx b/docs/api/flow/graphql/envio/objects/asset.mdx new file mode 100644 index 00000000..541d06e1 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/asset.mdx @@ -0,0 +1,123 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Asset" + +```graphql +type Asset { + address: String! + chainId: numeric! + db_write_timestamp: timestamp + decimals: numeric! + id: String! + name: String! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + symbol: String! +} +``` + +### Fields + +#### [Asset.address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset.chainId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Asset.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Asset.decimals](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Asset.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset.name](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Asset.streams](#)[[Stream!]!](/docs/api/flow/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Asset.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/flow/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Asset.streams.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Asset.streams.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Asset.streams.order_by](#)[[Stream_order_by!]](/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Asset.streams.where](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Asset.symbol](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/objects/batch.mdx b/docs/api/flow/graphql/envio/objects/batch.mdx new file mode 100644 index 00000000..7f732f25 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/batch.mdx @@ -0,0 +1,128 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Batch" + +```graphql +type Batch { + batcher: Batcher + batcher_id: String + db_write_timestamp: timestamp + hash: String! + id: String! + label: String + size: numeric! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + timestamp: numeric! +} +``` + +### Fields + +#### [Batch.batcher](#)[Batcher](/docs/api/flow/graphql/envio/objects/batcher.mdx) + +An object relationship + +#### [Batch.batcher_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Batch.hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch.label](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batch.size](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Batch.streams](#)[[Stream!]!](/docs/api/flow/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Batch.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/flow/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Batch.streams.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Batch.streams.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Batch.streams.order_by](#)[[Stream_order_by!]](/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Batch.streams.where](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Batch.timestamp](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/objects/batcher.mdx b/docs/api/flow/graphql/envio/objects/batcher.mdx new file mode 100644 index 00000000..343a01b8 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/batcher.mdx @@ -0,0 +1,114 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Batcher" + +```graphql +type Batcher { + address: String! + batchIndex: numeric! + batches( + distinct_on: [Batch_select_column!] + limit: Int + offset: Int + order_by: [Batch_order_by!] + where: Batch_bool_exp + ): [Batch!]! + db_write_timestamp: timestamp + id: String! +} +``` + +### Fields + +#### [Batcher.address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Batcher.batchIndex](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Batcher.batches](#)[[Batch!]!](/docs/api/flow/graphql/envio/objects/batch.mdx) + +An array relationship + +##### [Batcher.batches.distinct_on](#)[[Batch_select_column!]](/docs/api/flow/graphql/envio/enums/batch-select-column.mdx) + +distinct select on columns + +##### [Batcher.batches.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Batcher.batches.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Batcher.batches.order_by](#)[[Batch_order_by!]](/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx) + +sort the rows by one or more columns + +##### [Batcher.batches.where](#)[Batch_bool_exp](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +filter the rows returned + +#### [Batcher.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Batcher.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/objects/chain-metadata.mdx b/docs/api/flow/graphql/envio/objects/chain-metadata.mdx new file mode 100644 index 00000000..3c589545 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/chain-metadata.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "chain_metadata" + +```graphql +type chain_metadata { + block_height: Int! + chain_id: Int! + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean! + latest_fetched_block_number: Int! + latest_processed_block: Int + num_batches_fetched: Int! + num_events_processed: Int + start_block: Int! + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata.block_height](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.end_block](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.first_event_block_number](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.is_hyper_sync](#)[Boolean!](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata.latest_fetched_block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.latest_processed_block](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_batches_fetched](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_events_processed](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.start_block](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/flow/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/flow/graphql/envio/objects/contract.mdx b/docs/api/flow/graphql/envio/objects/contract.mdx new file mode 100644 index 00000000..2465e398 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/contract.mdx @@ -0,0 +1,151 @@ +--- +id: contract +title: Contract +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Contract" + +```graphql +type Contract { + actions( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp + ): [Action!]! + address: String! + admin: String + alias: String! + db_write_timestamp: timestamp + id: String! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + version: String! +} +``` + +### Fields + +#### [Contract.actions](#)[[Action!]!](/docs/api/flow/graphql/envio/objects/action.mdx) + +An array relationship + +##### [Contract.actions.distinct_on](#)[[Action_select_column!]](/docs/api/flow/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +##### [Contract.actions.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Contract.actions.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Contract.actions.order_by](#)[[Action_order_by!]](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +##### [Contract.actions.where](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +#### [Contract.address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract.admin](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract.alias](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Contract.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Contract.streams](#)[[Stream!]!](/docs/api/flow/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Contract.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/flow/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Contract.streams.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Contract.streams.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Contract.streams.order_by](#)[[Stream_order_by!]](/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Contract.streams.where](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Contract.version](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/objects/dynamic-contract-registry.mdx b/docs/api/flow/graphql/envio/objects/dynamic-contract-registry.mdx new file mode 100644 index 00000000..455dd2f9 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/dynamic-contract-registry.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "dynamic_contract_registry" + +```graphql +type dynamic_contract_registry { + chain_id: Int! + contract_address: String! + contract_type: contract_type! + id: String! + registering_event_block_number: Int! + registering_event_block_timestamp: Int! + registering_event_contract_name: String! + registering_event_log_index: Int! + registering_event_name: String! + registering_event_src_address: String! +} +``` + +### Fields + +#### [dynamic_contract_registry.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.contract_address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.contract_type](#)[contract_type!](/docs/api/flow/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_block_timestamp](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_contract_name](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_log_index](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_name](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_src_address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/objects/end-of-block-range-scanned-data.mdx b/docs/api/flow/graphql/envio/objects/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..5512cfb0 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/end-of-block-range-scanned-data.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "end_of_block_range_scanned_data" + +```graphql +type end_of_block_range_scanned_data { + block_hash: String! + block_number: Int! + chain_id: Int! +} +``` + +### Fields + +#### [end_of_block_range_scanned_data.block_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data.block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) diff --git a/docs/api/flow/graphql/envio/objects/event-sync-state.mdx b/docs/api/flow/graphql/envio/objects/event-sync-state.mdx new file mode 100644 index 00000000..8a169a10 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/event-sync-state.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "event_sync_state" + +```graphql +type event_sync_state { + block_number: Int! + block_timestamp: Int! + chain_id: Int! + is_pre_registering_dynamic_contracts: Boolean + log_index: Int! +} +``` + +### Fields + +#### [event_sync_state.block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.block_timestamp](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state.log_index](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) diff --git a/docs/api/flow/graphql/envio/objects/persisted-state.mdx b/docs/api/flow/graphql/envio/objects/persisted-state.mdx new file mode 100644 index 00000000..f3177f93 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/persisted-state.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "persisted_state" + +```graphql +type persisted_state { + abi_files_hash: String! + config_hash: String! + envio_version: String! + handler_files_hash: String! + id: Int! + schema_hash: String! +} +``` + +### Fields + +#### [persisted_state.abi_files_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state.config_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state.envio_version](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state.handler_files_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [persisted_state.id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [persisted_state.schema_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) diff --git a/docs/api/flow/graphql/envio/objects/raw-events.mdx b/docs/api/flow/graphql/envio/objects/raw-events.mdx new file mode 100644 index 00000000..ffb09687 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/raw-events.mdx @@ -0,0 +1,125 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "raw_events" + +```graphql +type raw_events { + block_fields(path: String): jsonb! + block_hash: String! + block_number: Int! + block_timestamp: Int! + chain_id: Int! + contract_name: String! + db_write_timestamp: timestamp + event_id: numeric! + event_name: String! + log_index: Int! + params(path: String): jsonb! + serial: Int! + src_address: String! + transaction_fields(path: String): jsonb! +} +``` + +### Fields + +#### [raw_events.block_fields](#)[jsonb!](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.block_fields.path](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.block_hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events.block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events.block_timestamp](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events.contract_name](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events.event_id](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [raw_events.event_name](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events.log_index](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events.params](#)[jsonb!](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.params.path](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.serial](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [raw_events.src_address](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [raw_events.transaction_fields](#)[jsonb!](/docs/api/flow/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.transaction_fields.path](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +JSON select path diff --git a/docs/api/flow/graphql/envio/objects/stream.mdx b/docs/api/flow/graphql/envio/objects/stream.mdx new file mode 100644 index 00000000..21a13887 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/stream.mdx @@ -0,0 +1,240 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Stream" + +```graphql +type Stream { + actions( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp + ): [Action!]! + alias: String! + asset: Asset + asset_id: String! + availableAmount: numeric! + batch: Batch + batch_id: String! + category: streamcategory! + chainId: numeric! + contract: Contract + contract_id: String! + creator: String! + db_write_timestamp: timestamp + depletionTime: numeric! + depositedAmount: numeric! + forgivenDebt: numeric! + hash: String! + id: String! + lastAdjustmentAction: Action + lastAdjustmentAction_id: String + lastAdjustmentTimestamp: numeric! + paused: Boolean! + pausedAction: Action + pausedAction_id: String + pausedTime: numeric + position: numeric! + protocolFeeAmount: numeric! + ratePerSecond: numeric! + recipient: String! + refundedAmount: numeric! + sender: String! + snapshotAmount: numeric! + startTime: numeric! + subgraphId: numeric! + timestamp: numeric! + tokenId: numeric! + transferable: Boolean! + version: String! + voided: Boolean! + voidedAction: Action + voidedAction_id: String + voidedTime: numeric + withdrawnAmount: numeric! +} +``` + +### Fields + +#### [Stream.actions](#)[[Action!]!](/docs/api/flow/graphql/envio/objects/action.mdx) + +An array relationship + +##### [Stream.actions.distinct_on](#)[[Action_select_column!]](/docs/api/flow/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +##### [Stream.actions.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Stream.actions.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Stream.actions.order_by](#)[[Action_order_by!]](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +##### [Stream.actions.where](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +#### [Stream.alias](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.asset](#)[Asset](/docs/api/flow/graphql/envio/objects/asset.mdx) + +An object relationship + +#### [Stream.asset_id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.availableAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.batch](#)[Batch](/docs/api/flow/graphql/envio/objects/batch.mdx) + +An object relationship + +#### [Stream.batch_id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.category](#)[streamcategory!](/docs/api/flow/graphql/envio/scalars/streamcategory.mdx) + +#### [Stream.chainId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.contract](#)[Contract](/docs/api/flow/graphql/envio/objects/contract.mdx) + +An object relationship + +#### [Stream.contract_id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.creator](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Stream.depletionTime](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.depositedAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.forgivenDebt](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.hash](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.lastAdjustmentAction](#)[Action](/docs/api/flow/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Stream.lastAdjustmentAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.lastAdjustmentTimestamp](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.paused](#)[Boolean!](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream.pausedAction](#)[Action](/docs/api/flow/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Stream.pausedAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.pausedTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.position](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.protocolFeeAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.ratePerSecond](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.recipient](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.refundedAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.sender](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.snapshotAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.startTime](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.subgraphId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.timestamp](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.tokenId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.transferable](#)[Boolean!](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream.version](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.voided](#)[Boolean!](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Stream.voidedAction](#)[Action](/docs/api/flow/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Stream.voidedAction_id](#)[String](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Stream.voidedTime](#)[numeric](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Stream.withdrawnAmount](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/objects/watcher.mdx b/docs/api/flow/graphql/envio/objects/watcher.mdx new file mode 100644 index 00000000..41d669d1 --- /dev/null +++ b/docs/api/flow/graphql/envio/objects/watcher.mdx @@ -0,0 +1,92 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Watcher" + +```graphql +type Watcher { + actionIndex: numeric! + chainId: numeric! + db_write_timestamp: timestamp + id: String! + initialized: Boolean! + logs: [String!]! + streamIndex: numeric! +} +``` + +### Fields + +#### [Watcher.actionIndex](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.chainId](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.db_write_timestamp](#)[timestamp](/docs/api/flow/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Watcher.initialized](#)[Boolean!](/docs/api/flow/graphql/envio/scalars/boolean.mdx) + +#### [Watcher.logs](#)[[String!]!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +#### [Watcher.streamIndex](#)[numeric!](/docs/api/flow/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/flow/graphql/envio/queries/_category_.yml b/docs/api/flow/graphql/envio/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/flow/graphql/envio/queries/action-by-pk.mdx b/docs/api/flow/graphql/envio/queries/action-by-pk.mdx new file mode 100644 index 00000000..34c7dfe4 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/action-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: action-by-pk +title: Action_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Action" using primary key columns + +```graphql +Action_by_pk( + id: String! +): Action +``` + +### Arguments + +#### [Action_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Action](/docs/api/flow/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/flow/graphql/envio/queries/action.mdx b/docs/api/flow/graphql/envio/queries/action.mdx new file mode 100644 index 00000000..c0a7bf05 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/action.mdx @@ -0,0 +1,102 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Action" + +```graphql +Action( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp +): [Action!]! +``` + +### Arguments + +#### [Action.distinct_on](#)[[Action_select_column!]](/docs/api/flow/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +#### [Action.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Action.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Action.order_by](#)[[Action_order_by!]](/docs/api/flow/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +#### [Action.where](#)[Action_bool_exp](/docs/api/flow/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Action](/docs/api/flow/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/flow/graphql/envio/queries/asset-by-pk.mdx b/docs/api/flow/graphql/envio/queries/asset-by-pk.mdx new file mode 100644 index 00000000..d757173a --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/asset-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: asset-by-pk +title: Asset_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Asset" using primary key columns + +```graphql +Asset_by_pk( + id: String! +): Asset +``` + +### Arguments + +#### [Asset_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Asset](/docs/api/flow/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/flow/graphql/envio/queries/asset.mdx b/docs/api/flow/graphql/envio/queries/asset.mdx new file mode 100644 index 00000000..3f56585d --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/asset.mdx @@ -0,0 +1,102 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Asset" + +```graphql +Asset( + distinct_on: [Asset_select_column!] + limit: Int + offset: Int + order_by: [Asset_order_by!] + where: Asset_bool_exp +): [Asset!]! +``` + +### Arguments + +#### [Asset.distinct_on](#)[[Asset_select_column!]](/docs/api/flow/graphql/envio/enums/asset-select-column.mdx) + +distinct select on columns + +#### [Asset.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Asset.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Asset.order_by](#)[[Asset_order_by!]](/docs/api/flow/graphql/envio/inputs/asset-order-by.mdx) + +sort the rows by one or more columns + +#### [Asset.where](#)[Asset_bool_exp](/docs/api/flow/graphql/envio/inputs/asset-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Asset](/docs/api/flow/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/flow/graphql/envio/queries/batch-by-pk.mdx b/docs/api/flow/graphql/envio/queries/batch-by-pk.mdx new file mode 100644 index 00000000..a12222ab --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/batch-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: batch-by-pk +title: Batch_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batch" using primary key columns + +```graphql +Batch_by_pk( + id: String! +): Batch +``` + +### Arguments + +#### [Batch_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Batch](/docs/api/flow/graphql/envio/objects/batch.mdx) + +columns and relationships of "Batch" diff --git a/docs/api/flow/graphql/envio/queries/batch.mdx b/docs/api/flow/graphql/envio/queries/batch.mdx new file mode 100644 index 00000000..9665a332 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/batch.mdx @@ -0,0 +1,102 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batch" + +```graphql +Batch( + distinct_on: [Batch_select_column!] + limit: Int + offset: Int + order_by: [Batch_order_by!] + where: Batch_bool_exp +): [Batch!]! +``` + +### Arguments + +#### [Batch.distinct_on](#)[[Batch_select_column!]](/docs/api/flow/graphql/envio/enums/batch-select-column.mdx) + +distinct select on columns + +#### [Batch.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Batch.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Batch.order_by](#)[[Batch_order_by!]](/docs/api/flow/graphql/envio/inputs/batch-order-by.mdx) + +sort the rows by one or more columns + +#### [Batch.where](#)[Batch_bool_exp](/docs/api/flow/graphql/envio/inputs/batch-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Batch](/docs/api/flow/graphql/envio/objects/batch.mdx) + +columns and relationships of "Batch" diff --git a/docs/api/flow/graphql/envio/queries/batcher-by-pk.mdx b/docs/api/flow/graphql/envio/queries/batcher-by-pk.mdx new file mode 100644 index 00000000..b5c6c1c1 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/batcher-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: batcher-by-pk +title: Batcher_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batcher" using primary key columns + +```graphql +Batcher_by_pk( + id: String! +): Batcher +``` + +### Arguments + +#### [Batcher_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Batcher](/docs/api/flow/graphql/envio/objects/batcher.mdx) + +columns and relationships of "Batcher" diff --git a/docs/api/flow/graphql/envio/queries/batcher.mdx b/docs/api/flow/graphql/envio/queries/batcher.mdx new file mode 100644 index 00000000..f97897f7 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/batcher.mdx @@ -0,0 +1,102 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batcher" + +```graphql +Batcher( + distinct_on: [Batcher_select_column!] + limit: Int + offset: Int + order_by: [Batcher_order_by!] + where: Batcher_bool_exp +): [Batcher!]! +``` + +### Arguments + +#### [Batcher.distinct_on](#)[[Batcher_select_column!]](/docs/api/flow/graphql/envio/enums/batcher-select-column.mdx) + +distinct select on columns + +#### [Batcher.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Batcher.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Batcher.order_by](#)[[Batcher_order_by!]](/docs/api/flow/graphql/envio/inputs/batcher-order-by.mdx) + +sort the rows by one or more columns + +#### [Batcher.where](#)[Batcher_bool_exp](/docs/api/flow/graphql/envio/inputs/batcher-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Batcher](/docs/api/flow/graphql/envio/objects/batcher.mdx) + +columns and relationships of "Batcher" diff --git a/docs/api/flow/graphql/envio/queries/chain-metadata-by-pk.mdx b/docs/api/flow/graphql/envio/queries/chain-metadata-by-pk.mdx new file mode 100644 index 00000000..972037d0 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/chain-metadata-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: chain-metadata-by-pk +title: chain_metadata_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "chain_metadata" using primary key columns + +```graphql +chain_metadata_by_pk( + chain_id: Int! +): chain_metadata +``` + +### Arguments + +#### [chain_metadata_by_pk.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +### Type + +#### [chain_metadata](/docs/api/flow/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/flow/graphql/envio/queries/chain-metadata.mdx b/docs/api/flow/graphql/envio/queries/chain-metadata.mdx new file mode 100644 index 00000000..78ee80ac --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/chain-metadata.mdx @@ -0,0 +1,102 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "chain_metadata" + +```graphql +chain_metadata( + distinct_on: [chain_metadata_select_column!] + limit: Int + offset: Int + order_by: [chain_metadata_order_by!] + where: chain_metadata_bool_exp +): [chain_metadata!]! +``` + +### Arguments + +#### [chain_metadata.distinct_on](#)[[chain_metadata_select_column!]](/docs/api/flow/graphql/envio/enums/chain-metadata-select-column.mdx) + +distinct select on columns + +#### [chain_metadata.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [chain_metadata.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [chain_metadata.order_by](#)[[chain_metadata_order_by!]](/docs/api/flow/graphql/envio/inputs/chain-metadata-order-by.mdx) + +sort the rows by one or more columns + +#### [chain_metadata.where](#)[chain_metadata_bool_exp](/docs/api/flow/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [chain_metadata](/docs/api/flow/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/flow/graphql/envio/queries/contract-by-pk.mdx b/docs/api/flow/graphql/envio/queries/contract-by-pk.mdx new file mode 100644 index 00000000..911586a8 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/contract-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: contract-by-pk +title: Contract_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Contract" using primary key columns + +```graphql +Contract_by_pk( + id: String! +): Contract +``` + +### Arguments + +#### [Contract_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Contract](/docs/api/flow/graphql/envio/objects/contract.mdx) + +columns and relationships of "Contract" diff --git a/docs/api/flow/graphql/envio/queries/contract.mdx b/docs/api/flow/graphql/envio/queries/contract.mdx new file mode 100644 index 00000000..fb021a3e --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/contract.mdx @@ -0,0 +1,102 @@ +--- +id: contract +title: Contract +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Contract" + +```graphql +Contract( + distinct_on: [Contract_select_column!] + limit: Int + offset: Int + order_by: [Contract_order_by!] + where: Contract_bool_exp +): [Contract!]! +``` + +### Arguments + +#### [Contract.distinct_on](#)[[Contract_select_column!]](/docs/api/flow/graphql/envio/enums/contract-select-column.mdx) + +distinct select on columns + +#### [Contract.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Contract.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Contract.order_by](#)[[Contract_order_by!]](/docs/api/flow/graphql/envio/inputs/contract-order-by.mdx) + +sort the rows by one or more columns + +#### [Contract.where](#)[Contract_bool_exp](/docs/api/flow/graphql/envio/inputs/contract-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Contract](/docs/api/flow/graphql/envio/objects/contract.mdx) + +columns and relationships of "Contract" diff --git a/docs/api/flow/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx b/docs/api/flow/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx new file mode 100644 index 00000000..894ae530 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: dynamic-contract-registry-by-pk +title: dynamic_contract_registry_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "dynamic_contract_registry" using primary key columns + +```graphql +dynamic_contract_registry_by_pk( + id: String! +): dynamic_contract_registry +``` + +### Arguments + +#### [dynamic_contract_registry_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [dynamic_contract_registry](/docs/api/flow/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/flow/graphql/envio/queries/dynamic-contract-registry.mdx b/docs/api/flow/graphql/envio/queries/dynamic-contract-registry.mdx new file mode 100644 index 00000000..9e2e58f8 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/dynamic-contract-registry.mdx @@ -0,0 +1,102 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "dynamic_contract_registry" + +```graphql +dynamic_contract_registry( + distinct_on: [dynamic_contract_registry_select_column!] + limit: Int + offset: Int + order_by: [dynamic_contract_registry_order_by!] + where: dynamic_contract_registry_bool_exp +): [dynamic_contract_registry!]! +``` + +### Arguments + +#### [dynamic_contract_registry.distinct_on](#)[[dynamic_contract_registry_select_column!]](/docs/api/flow/graphql/envio/enums/dynamic-contract-registry-select-column.mdx) + +distinct select on columns + +#### [dynamic_contract_registry.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [dynamic_contract_registry.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [dynamic_contract_registry.order_by](#)[[dynamic_contract_registry_order_by!]](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx) + +sort the rows by one or more columns + +#### [dynamic_contract_registry.where](#)[dynamic_contract_registry_bool_exp](/docs/api/flow/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [dynamic_contract_registry](/docs/api/flow/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx b/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx new file mode 100644 index 00000000..fab26eee --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx @@ -0,0 +1,83 @@ +--- +id: end-of-block-range-scanned-data-by-pk +title: end_of_block_range_scanned_data_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" using primary key columns + +```graphql +end_of_block_range_scanned_data_by_pk( + block_number: Int! + chain_id: Int! +): end_of_block_range_scanned_data +``` + +### Arguments + +#### [end_of_block_range_scanned_data_by_pk.block_number](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_by_pk.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/flow/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data.mdx b/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..7d35bed5 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/end-of-block-range-scanned-data.mdx @@ -0,0 +1,102 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" + +```graphql +end_of_block_range_scanned_data( + distinct_on: [end_of_block_range_scanned_data_select_column!] + limit: Int + offset: Int + order_by: [end_of_block_range_scanned_data_order_by!] + where: end_of_block_range_scanned_data_bool_exp +): [end_of_block_range_scanned_data!]! +``` + +### Arguments + +#### [end_of_block_range_scanned_data.distinct_on](#)[[end_of_block_range_scanned_data_select_column!]](/docs/api/flow/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx) + +distinct select on columns + +#### [end_of_block_range_scanned_data.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [end_of_block_range_scanned_data.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [end_of_block_range_scanned_data.order_by](#)[[end_of_block_range_scanned_data_order_by!]](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx) + +sort the rows by one or more columns + +#### [end_of_block_range_scanned_data.where](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/flow/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/flow/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/flow/graphql/envio/queries/event-sync-state-by-pk.mdx b/docs/api/flow/graphql/envio/queries/event-sync-state-by-pk.mdx new file mode 100644 index 00000000..ae7b5fc0 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/event-sync-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: event-sync-state-by-pk +title: event_sync_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "event_sync_state" using primary key columns + +```graphql +event_sync_state_by_pk( + chain_id: Int! +): event_sync_state +``` + +### Arguments + +#### [event_sync_state_by_pk.chain_id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +### Type + +#### [event_sync_state](/docs/api/flow/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/flow/graphql/envio/queries/event-sync-state.mdx b/docs/api/flow/graphql/envio/queries/event-sync-state.mdx new file mode 100644 index 00000000..71e8804c --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/event-sync-state.mdx @@ -0,0 +1,102 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "event_sync_state" + +```graphql +event_sync_state( + distinct_on: [event_sync_state_select_column!] + limit: Int + offset: Int + order_by: [event_sync_state_order_by!] + where: event_sync_state_bool_exp +): [event_sync_state!]! +``` + +### Arguments + +#### [event_sync_state.distinct_on](#)[[event_sync_state_select_column!]](/docs/api/flow/graphql/envio/enums/event-sync-state-select-column.mdx) + +distinct select on columns + +#### [event_sync_state.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [event_sync_state.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [event_sync_state.order_by](#)[[event_sync_state_order_by!]](/docs/api/flow/graphql/envio/inputs/event-sync-state-order-by.mdx) + +sort the rows by one or more columns + +#### [event_sync_state.where](#)[event_sync_state_bool_exp](/docs/api/flow/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [event_sync_state](/docs/api/flow/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/flow/graphql/envio/queries/persisted-state-by-pk.mdx b/docs/api/flow/graphql/envio/queries/persisted-state-by-pk.mdx new file mode 100644 index 00000000..6c2b664b --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/persisted-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: persisted-state-by-pk +title: persisted_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "persisted_state" using primary key columns + +```graphql +persisted_state_by_pk( + id: Int! +): persisted_state +``` + +### Arguments + +#### [persisted_state_by_pk.id](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +### Type + +#### [persisted_state](/docs/api/flow/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/flow/graphql/envio/queries/persisted-state.mdx b/docs/api/flow/graphql/envio/queries/persisted-state.mdx new file mode 100644 index 00000000..86f1dcab --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/persisted-state.mdx @@ -0,0 +1,102 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "persisted_state" + +```graphql +persisted_state( + distinct_on: [persisted_state_select_column!] + limit: Int + offset: Int + order_by: [persisted_state_order_by!] + where: persisted_state_bool_exp +): [persisted_state!]! +``` + +### Arguments + +#### [persisted_state.distinct_on](#)[[persisted_state_select_column!]](/docs/api/flow/graphql/envio/enums/persisted-state-select-column.mdx) + +distinct select on columns + +#### [persisted_state.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [persisted_state.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [persisted_state.order_by](#)[[persisted_state_order_by!]](/docs/api/flow/graphql/envio/inputs/persisted-state-order-by.mdx) + +sort the rows by one or more columns + +#### [persisted_state.where](#)[persisted_state_bool_exp](/docs/api/flow/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [persisted_state](/docs/api/flow/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/flow/graphql/envio/queries/raw-events-by-pk.mdx b/docs/api/flow/graphql/envio/queries/raw-events-by-pk.mdx new file mode 100644 index 00000000..f6ebd5ad --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/raw-events-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: raw-events-by-pk +title: raw_events_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "raw_events" using primary key columns + +```graphql +raw_events_by_pk( + serial: Int! +): raw_events +``` + +### Arguments + +#### [raw_events_by_pk.serial](#)[Int!](/docs/api/flow/graphql/envio/scalars/int.mdx) + +### Type + +#### [raw_events](/docs/api/flow/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/flow/graphql/envio/queries/raw-events.mdx b/docs/api/flow/graphql/envio/queries/raw-events.mdx new file mode 100644 index 00000000..aa7e2626 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/raw-events.mdx @@ -0,0 +1,102 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "raw_events" + +```graphql +raw_events( + distinct_on: [raw_events_select_column!] + limit: Int + offset: Int + order_by: [raw_events_order_by!] + where: raw_events_bool_exp +): [raw_events!]! +``` + +### Arguments + +#### [raw_events.distinct_on](#)[[raw_events_select_column!]](/docs/api/flow/graphql/envio/enums/raw-events-select-column.mdx) + +distinct select on columns + +#### [raw_events.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [raw_events.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [raw_events.order_by](#)[[raw_events_order_by!]](/docs/api/flow/graphql/envio/inputs/raw-events-order-by.mdx) + +sort the rows by one or more columns + +#### [raw_events.where](#)[raw_events_bool_exp](/docs/api/flow/graphql/envio/inputs/raw-events-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [raw_events](/docs/api/flow/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/flow/graphql/envio/queries/stream-by-pk.mdx b/docs/api/flow/graphql/envio/queries/stream-by-pk.mdx new file mode 100644 index 00000000..6b70dd2b --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/stream-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: stream-by-pk +title: Stream_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Stream" using primary key columns + +```graphql +Stream_by_pk( + id: String! +): Stream +``` + +### Arguments + +#### [Stream_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Stream](/docs/api/flow/graphql/envio/objects/stream.mdx) + +columns and relationships of "Stream" diff --git a/docs/api/flow/graphql/envio/queries/stream.mdx b/docs/api/flow/graphql/envio/queries/stream.mdx new file mode 100644 index 00000000..591b18ad --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/stream.mdx @@ -0,0 +1,102 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Stream" + +```graphql +Stream( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp +): [Stream!]! +``` + +### Arguments + +#### [Stream.distinct_on](#)[[Stream_select_column!]](/docs/api/flow/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +#### [Stream.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Stream.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Stream.order_by](#)[[Stream_order_by!]](/docs/api/flow/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +#### [Stream.where](#)[Stream_bool_exp](/docs/api/flow/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Stream](/docs/api/flow/graphql/envio/objects/stream.mdx) + +columns and relationships of "Stream" diff --git a/docs/api/flow/graphql/envio/queries/watcher-by-pk.mdx b/docs/api/flow/graphql/envio/queries/watcher-by-pk.mdx new file mode 100644 index 00000000..df2e3860 --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/watcher-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: watcher-by-pk +title: Watcher_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Watcher" using primary key columns + +```graphql +Watcher_by_pk( + id: String! +): Watcher +``` + +### Arguments + +#### [Watcher_by_pk.id](#)[String!](/docs/api/flow/graphql/envio/scalars/string.mdx) + +### Type + +#### [Watcher](/docs/api/flow/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/flow/graphql/envio/queries/watcher.mdx b/docs/api/flow/graphql/envio/queries/watcher.mdx new file mode 100644 index 00000000..d6cf9efd --- /dev/null +++ b/docs/api/flow/graphql/envio/queries/watcher.mdx @@ -0,0 +1,102 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Watcher" + +```graphql +Watcher( + distinct_on: [Watcher_select_column!] + limit: Int + offset: Int + order_by: [Watcher_order_by!] + where: Watcher_bool_exp +): [Watcher!]! +``` + +### Arguments + +#### [Watcher.distinct_on](#)[[Watcher_select_column!]](/docs/api/flow/graphql/envio/enums/watcher-select-column.mdx) + +distinct select on columns + +#### [Watcher.limit](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Watcher.offset](#)[Int](/docs/api/flow/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Watcher.order_by](#)[[Watcher_order_by!]](/docs/api/flow/graphql/envio/inputs/watcher-order-by.mdx) + +sort the rows by one or more columns + +#### [Watcher.where](#)[Watcher_bool_exp](/docs/api/flow/graphql/envio/inputs/watcher-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Watcher](/docs/api/flow/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/flow/graphql/envio/scalars/_category_.yml b/docs/api/flow/graphql/envio/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/flow/graphql/envio/scalars/actioncategory.mdx b/docs/api/flow/graphql/envio/scalars/actioncategory.mdx new file mode 100644 index 00000000..21e4645d --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/actioncategory.mdx @@ -0,0 +1,68 @@ +--- +id: actioncategory +title: actioncategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar actioncategory +``` diff --git a/docs/api/flow/graphql/envio/scalars/boolean.mdx b/docs/api/flow/graphql/envio/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/flow/graphql/envio/scalars/contract-type.mdx b/docs/api/flow/graphql/envio/scalars/contract-type.mdx new file mode 100644 index 00000000..99414710 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/contract-type.mdx @@ -0,0 +1,68 @@ +--- +id: contract-type +title: contract_type +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar contract_type +``` diff --git a/docs/api/flow/graphql/envio/scalars/int.mdx b/docs/api/flow/graphql/envio/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/flow/graphql/envio/scalars/jsonb.mdx b/docs/api/flow/graphql/envio/scalars/jsonb.mdx new file mode 100644 index 00000000..0949bff4 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/jsonb.mdx @@ -0,0 +1,68 @@ +--- +id: jsonb +title: jsonb +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar jsonb +``` diff --git a/docs/api/flow/graphql/envio/scalars/numeric.mdx b/docs/api/flow/graphql/envio/scalars/numeric.mdx new file mode 100644 index 00000000..f30f26d5 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/numeric.mdx @@ -0,0 +1,68 @@ +--- +id: numeric +title: numeric +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar numeric +``` diff --git a/docs/api/flow/graphql/envio/scalars/streamcategory.mdx b/docs/api/flow/graphql/envio/scalars/streamcategory.mdx new file mode 100644 index 00000000..8b0436c3 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/streamcategory.mdx @@ -0,0 +1,68 @@ +--- +id: streamcategory +title: streamcategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar streamcategory +``` diff --git a/docs/api/flow/graphql/envio/scalars/string.mdx b/docs/api/flow/graphql/envio/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/flow/graphql/envio/scalars/timestamp.mdx b/docs/api/flow/graphql/envio/scalars/timestamp.mdx new file mode 100644 index 00000000..2787af52 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar timestamp +``` diff --git a/docs/api/flow/graphql/envio/scalars/timestamptz.mdx b/docs/api/flow/graphql/envio/scalars/timestamptz.mdx new file mode 100644 index 00000000..f6fafd93 --- /dev/null +++ b/docs/api/flow/graphql/envio/scalars/timestamptz.mdx @@ -0,0 +1,68 @@ +--- +id: timestamptz +title: timestamptz +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar timestamptz +``` diff --git a/docs/api/flow/graphql/the-graph/_category_.yml b/docs/api/flow/graphql/the-graph/_category_.yml new file mode 100644 index 00000000..3dfd192f --- /dev/null +++ b/docs/api/flow/graphql/the-graph/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: The Graph +position: 2 diff --git a/docs/api/flow/graphql/the-graph/enums/_category_.yml b/docs/api/flow/graphql/the-graph/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/flow/graphql/the-graph/enums/action-category.mdx b/docs/api/flow/graphql/the-graph/enums/action-category.mdx new file mode 100644 index 00000000..4088f462 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/action-category.mdx @@ -0,0 +1,104 @@ +--- +id: action-category +title: ActionCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum ActionCategory { + Approval + ApprovalForAll + Adjust + Create + Deposit + Pause + Refund + Restart + Transfer + Void + Withdraw +} +``` + +### Values + +#### [ActionCategory.Approval](#) + +#### [ActionCategory.ApprovalForAll](#) + +#### [ActionCategory.Adjust](#) + +#### [ActionCategory.Create](#) + +#### [ActionCategory.Deposit](#) + +#### [ActionCategory.Pause](#) + +#### [ActionCategory.Refund](#) + +#### [ActionCategory.Restart](#) + +#### [ActionCategory.Transfer](#) + +#### [ActionCategory.Void](#) + +#### [ActionCategory.Withdraw](#) diff --git a/docs/api/flow/graphql/the-graph/enums/action-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/action-order-by.mdx new file mode 100644 index 00000000..365782d3 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/action-order-by.mdx @@ -0,0 +1,206 @@ +--- +id: action-order-by +title: Action_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Action_orderBy { + id + subgraphId + block + chainId + from + hash + timestamp + category + contract + fee + stream + stream__id + stream__alias + stream__chainId + stream__subgraphId + stream__tokenId + stream__hash + stream__timestamp + stream__assetDecimals + stream__category + stream__contract + stream__position + stream__recipient + stream__sender + stream__startTime + stream__transferable + stream__version + stream__withdrawnAmount + stream__availableAmount + stream__creator + stream__depletionTime + stream__depositedAmount + stream__forgivenDebt + stream__lastAdjustmentTimestamp + stream__paused + stream__pausedTime + stream__ratePerSecond + stream__refundedAmount + stream__snapshotAmount + stream__voided + stream__voidedTime + addressA + addressB + amountA + amountB +} +``` + +### Values + +#### [Action_orderBy.id](#) + +#### [Action_orderBy.subgraphId](#) + +#### [Action_orderBy.block](#) + +#### [Action_orderBy.chainId](#) + +#### [Action_orderBy.from](#) + +#### [Action_orderBy.hash](#) + +#### [Action_orderBy.timestamp](#) + +#### [Action_orderBy.category](#) + +#### [Action_orderBy.contract](#) + +#### [Action_orderBy.fee](#) + +#### [Action_orderBy.stream](#) + +#### [Action_orderBy.stream\_\_id](#) + +#### [Action_orderBy.stream\_\_alias](#) + +#### [Action_orderBy.stream\_\_chainId](#) + +#### [Action_orderBy.stream\_\_subgraphId](#) + +#### [Action_orderBy.stream\_\_tokenId](#) + +#### [Action_orderBy.stream\_\_hash](#) + +#### [Action_orderBy.stream\_\_timestamp](#) + +#### [Action_orderBy.stream\_\_assetDecimals](#) + +#### [Action_orderBy.stream\_\_category](#) + +#### [Action_orderBy.stream\_\_contract](#) + +#### [Action_orderBy.stream\_\_position](#) + +#### [Action_orderBy.stream\_\_recipient](#) + +#### [Action_orderBy.stream\_\_sender](#) + +#### [Action_orderBy.stream\_\_startTime](#) + +#### [Action_orderBy.stream\_\_transferable](#) + +#### [Action_orderBy.stream\_\_version](#) + +#### [Action_orderBy.stream\_\_withdrawnAmount](#) + +#### [Action_orderBy.stream\_\_availableAmount](#) + +#### [Action_orderBy.stream\_\_creator](#) + +#### [Action_orderBy.stream\_\_depletionTime](#) + +#### [Action_orderBy.stream\_\_depositedAmount](#) + +#### [Action_orderBy.stream\_\_forgivenDebt](#) + +#### [Action_orderBy.stream\_\_lastAdjustmentTimestamp](#) + +#### [Action_orderBy.stream\_\_paused](#) + +#### [Action_orderBy.stream\_\_pausedTime](#) + +#### [Action_orderBy.stream\_\_ratePerSecond](#) + +#### [Action_orderBy.stream\_\_refundedAmount](#) + +#### [Action_orderBy.stream\_\_snapshotAmount](#) + +#### [Action_orderBy.stream\_\_voided](#) + +#### [Action_orderBy.stream\_\_voidedTime](#) + +#### [Action_orderBy.addressA](#) + +#### [Action_orderBy.addressB](#) + +#### [Action_orderBy.amountA](#) + +#### [Action_orderBy.amountB](#) diff --git a/docs/api/flow/graphql/the-graph/enums/aggregation-interval.mdx b/docs/api/flow/graphql/the-graph/enums/aggregation-interval.mdx new file mode 100644 index 00000000..5d3091f6 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/aggregation-interval.mdx @@ -0,0 +1,77 @@ +--- +id: aggregation-interval +title: Aggregation_interval +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Aggregation_interval { + hour + day +} +``` + +### Values + +#### [Aggregation_interval.hour](#) + +#### [Aggregation_interval.day](#) diff --git a/docs/api/flow/graphql/the-graph/enums/asset-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/asset-order-by.mdx new file mode 100644 index 00000000..43d32157 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/asset-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: asset-order-by +title: Asset_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Asset_orderBy { + id + address + chainId + decimals + name + symbol + streams +} +``` + +### Values + +#### [Asset_orderBy.id](#) + +#### [Asset_orderBy.address](#) + +#### [Asset_orderBy.chainId](#) + +#### [Asset_orderBy.decimals](#) + +#### [Asset_orderBy.name](#) + +#### [Asset_orderBy.symbol](#) + +#### [Asset_orderBy.streams](#) diff --git a/docs/api/flow/graphql/the-graph/enums/batch-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/batch-order-by.mdx new file mode 100644 index 00000000..d5397966 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/batch-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: batch-order-by +title: Batch_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Batch_orderBy { + id + hash + timestamp + batcher + batcher__id + batcher__batchCounter + size + streams +} +``` + +### Values + +#### [Batch_orderBy.id](#) + +#### [Batch_orderBy.hash](#) + +#### [Batch_orderBy.timestamp](#) + +#### [Batch_orderBy.batcher](#) + +#### [Batch_orderBy.batcher\_\_id](#) + +#### [Batch_orderBy.batcher\_\_batchCounter](#) + +#### [Batch_orderBy.size](#) + +#### [Batch_orderBy.streams](#) diff --git a/docs/api/flow/graphql/the-graph/enums/batcher-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/batcher-order-by.mdx new file mode 100644 index 00000000..9296b136 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/batcher-order-by.mdx @@ -0,0 +1,80 @@ +--- +id: batcher-order-by +title: Batcher_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Batcher_orderBy { + id + batchCounter + batches +} +``` + +### Values + +#### [Batcher_orderBy.id](#) + +#### [Batcher_orderBy.batchCounter](#) + +#### [Batcher_orderBy.batches](#) diff --git a/docs/api/flow/graphql/the-graph/enums/order-direction.mdx b/docs/api/flow/graphql/the-graph/enums/order-direction.mdx new file mode 100644 index 00000000..028fa7ab --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/order-direction.mdx @@ -0,0 +1,77 @@ +--- +id: order-direction +title: OrderDirection +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Defines the order direction, either ascending or descending + +```graphql +enum OrderDirection { + asc + desc +} +``` + +### Values + +#### [OrderDirection.asc](#) + +#### [OrderDirection.desc](#) diff --git a/docs/api/flow/graphql/the-graph/enums/stream-category.mdx b/docs/api/flow/graphql/the-graph/enums/stream-category.mdx new file mode 100644 index 00000000..32a9ffd6 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/stream-category.mdx @@ -0,0 +1,74 @@ +--- +id: stream-category +title: StreamCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum StreamCategory { + Flow +} +``` + +### Values + +#### [StreamCategory.Flow](#) diff --git a/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx new file mode 100644 index 00000000..0eb38864 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx @@ -0,0 +1,335 @@ +--- +id: stream-order-by +title: Stream_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Stream_orderBy { + id + alias + chainId + subgraphId + tokenId + hash + timestamp + actions + asset + asset__id + asset__address + asset__chainId + asset__decimals + asset__name + asset__symbol + assetDecimals + batch + batch__id + batch__hash + batch__timestamp + batch__size + category + contract + position + recipient + sender + startTime + transferable + version + withdrawnAmount + availableAmount + creator + depletionTime + depositedAmount + forgivenDebt + lastAdjustmentAction + lastAdjustmentAction__id + lastAdjustmentAction__subgraphId + lastAdjustmentAction__block + lastAdjustmentAction__chainId + lastAdjustmentAction__from + lastAdjustmentAction__hash + lastAdjustmentAction__timestamp + lastAdjustmentAction__category + lastAdjustmentAction__contract + lastAdjustmentAction__fee + lastAdjustmentAction__addressA + lastAdjustmentAction__addressB + lastAdjustmentAction__amountA + lastAdjustmentAction__amountB + lastAdjustmentTimestamp + paused + pausedAction + pausedAction__id + pausedAction__subgraphId + pausedAction__block + pausedAction__chainId + pausedAction__from + pausedAction__hash + pausedAction__timestamp + pausedAction__category + pausedAction__contract + pausedAction__fee + pausedAction__addressA + pausedAction__addressB + pausedAction__amountA + pausedAction__amountB + pausedTime + ratePerSecond + refundedAmount + snapshotAmount + voided + voidedAction + voidedAction__id + voidedAction__subgraphId + voidedAction__block + voidedAction__chainId + voidedAction__from + voidedAction__hash + voidedAction__timestamp + voidedAction__category + voidedAction__contract + voidedAction__fee + voidedAction__addressA + voidedAction__addressB + voidedAction__amountA + voidedAction__amountB + voidedTime +} +``` + +### Values + +#### [Stream_orderBy.id](#) + +#### [Stream_orderBy.alias](#) + +#### [Stream_orderBy.chainId](#) + +#### [Stream_orderBy.subgraphId](#) + +#### [Stream_orderBy.tokenId](#) + +#### [Stream_orderBy.hash](#) + +#### [Stream_orderBy.timestamp](#) + +#### [Stream_orderBy.actions](#) + +#### [Stream_orderBy.asset](#) + +#### [Stream_orderBy.asset\_\_id](#) + +#### [Stream_orderBy.asset\_\_address](#) + +#### [Stream_orderBy.asset\_\_chainId](#) + +#### [Stream_orderBy.asset\_\_decimals](#) + +#### [Stream_orderBy.asset\_\_name](#) + +#### [Stream_orderBy.asset\_\_symbol](#) + +#### [Stream_orderBy.assetDecimals](#) + +#### [Stream_orderBy.batch](#) + +#### [Stream_orderBy.batch\_\_id](#) + +#### [Stream_orderBy.batch\_\_hash](#) + +#### [Stream_orderBy.batch\_\_timestamp](#) + +#### [Stream_orderBy.batch\_\_size](#) + +#### [Stream_orderBy.category](#) + +#### [Stream_orderBy.contract](#) + +#### [Stream_orderBy.position](#) + +#### [Stream_orderBy.recipient](#) + +#### [Stream_orderBy.sender](#) + +#### [Stream_orderBy.startTime](#) + +#### [Stream_orderBy.transferable](#) + +#### [Stream_orderBy.version](#) + +#### [Stream_orderBy.withdrawnAmount](#) + +#### [Stream_orderBy.availableAmount](#) + +#### [Stream_orderBy.creator](#) + +#### [Stream_orderBy.depletionTime](#) + +#### [Stream_orderBy.depositedAmount](#) + +#### [Stream_orderBy.forgivenDebt](#) + +#### [Stream_orderBy.lastAdjustmentAction](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_id](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_subgraphId](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_block](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_chainId](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_from](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_hash](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_timestamp](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_category](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_contract](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_fee](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_addressA](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_addressB](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_amountA](#) + +#### [Stream_orderBy.lastAdjustmentAction\_\_amountB](#) + +#### [Stream_orderBy.lastAdjustmentTimestamp](#) + +#### [Stream_orderBy.paused](#) + +#### [Stream_orderBy.pausedAction](#) + +#### [Stream_orderBy.pausedAction\_\_id](#) + +#### [Stream_orderBy.pausedAction\_\_subgraphId](#) + +#### [Stream_orderBy.pausedAction\_\_block](#) + +#### [Stream_orderBy.pausedAction\_\_chainId](#) + +#### [Stream_orderBy.pausedAction\_\_from](#) + +#### [Stream_orderBy.pausedAction\_\_hash](#) + +#### [Stream_orderBy.pausedAction\_\_timestamp](#) + +#### [Stream_orderBy.pausedAction\_\_category](#) + +#### [Stream_orderBy.pausedAction\_\_contract](#) + +#### [Stream_orderBy.pausedAction\_\_fee](#) + +#### [Stream_orderBy.pausedAction\_\_addressA](#) + +#### [Stream_orderBy.pausedAction\_\_addressB](#) + +#### [Stream_orderBy.pausedAction\_\_amountA](#) + +#### [Stream_orderBy.pausedAction\_\_amountB](#) + +#### [Stream_orderBy.pausedTime](#) + +#### [Stream_orderBy.ratePerSecond](#) + +#### [Stream_orderBy.refundedAmount](#) + +#### [Stream_orderBy.snapshotAmount](#) + +#### [Stream_orderBy.voided](#) + +#### [Stream_orderBy.voidedAction](#) + +#### [Stream_orderBy.voidedAction\_\_id](#) + +#### [Stream_orderBy.voidedAction\_\_subgraphId](#) + +#### [Stream_orderBy.voidedAction\_\_block](#) + +#### [Stream_orderBy.voidedAction\_\_chainId](#) + +#### [Stream_orderBy.voidedAction\_\_from](#) + +#### [Stream_orderBy.voidedAction\_\_hash](#) + +#### [Stream_orderBy.voidedAction\_\_timestamp](#) + +#### [Stream_orderBy.voidedAction\_\_category](#) + +#### [Stream_orderBy.voidedAction\_\_contract](#) + +#### [Stream_orderBy.voidedAction\_\_fee](#) + +#### [Stream_orderBy.voidedAction\_\_addressA](#) + +#### [Stream_orderBy.voidedAction\_\_addressB](#) + +#### [Stream_orderBy.voidedAction\_\_amountA](#) + +#### [Stream_orderBy.voidedAction\_\_amountB](#) + +#### [Stream_orderBy.voidedTime](#) diff --git a/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx b/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx new file mode 100644 index 00000000..f1af4993 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx @@ -0,0 +1,81 @@ +--- +id: subgraph-error-policy +title: _SubgraphErrorPolicy_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum _SubgraphErrorPolicy_ { + allow + deny +} +``` + +### Values + +#### [\_SubgraphErrorPolicy\_.allow](#) + +Data will be returned even if the subgraph has indexing errors + +#### [\_SubgraphErrorPolicy\_.deny](#) + +If the subgraph has indexing errors, data will be omitted. The default. diff --git a/docs/api/flow/graphql/the-graph/enums/watcher-order-by.mdx b/docs/api/flow/graphql/the-graph/enums/watcher-order-by.mdx new file mode 100644 index 00000000..7c7837c8 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/enums/watcher-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: watcher-order-by +title: Watcher_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Watcher_orderBy { + id + actionCounter + chainId + logs + streamCounter +} +``` + +### Values + +#### [Watcher_orderBy.id](#) + +#### [Watcher_orderBy.actionCounter](#) + +#### [Watcher_orderBy.chainId](#) + +#### [Watcher_orderBy.logs](#) + +#### [Watcher_orderBy.streamCounter](#) diff --git a/docs/api/flow/graphql/the-graph/graphql-overview.md b/docs/api/flow/graphql/the-graph/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/flow/graphql/the-graph/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/flow/graphql/the-graph/inputs/_category_.yml b/docs/api/flow/graphql/the-graph/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx new file mode 100644 index 00000000..87387b68 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx @@ -0,0 +1,535 @@ +--- +id: action-filter +title: Action_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Action_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + from: Bytes + from_not: Bytes + from_gt: Bytes + from_lt: Bytes + from_gte: Bytes + from_lte: Bytes + from_in: [Bytes!] + from_not_in: [Bytes!] + from_contains: Bytes + from_not_contains: Bytes + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + category: ActionCategory + category_not: ActionCategory + category_in: [ActionCategory!] + category_not_in: [ActionCategory!] + contract: Bytes + contract_not: Bytes + contract_gt: Bytes + contract_lt: Bytes + contract_gte: Bytes + contract_lte: Bytes + contract_in: [Bytes!] + contract_not_in: [Bytes!] + contract_contains: Bytes + contract_not_contains: Bytes + fee: BigInt + fee_not: BigInt + fee_gt: BigInt + fee_lt: BigInt + fee_gte: BigInt + fee_lte: BigInt + fee_in: [BigInt!] + fee_not_in: [BigInt!] + stream: String + stream_not: String + stream_gt: String + stream_lt: String + stream_gte: String + stream_lte: String + stream_in: [String!] + stream_not_in: [String!] + stream_contains: String + stream_contains_nocase: String + stream_not_contains: String + stream_not_contains_nocase: String + stream_starts_with: String + stream_starts_with_nocase: String + stream_not_starts_with: String + stream_not_starts_with_nocase: String + stream_ends_with: String + stream_ends_with_nocase: String + stream_not_ends_with: String + stream_not_ends_with_nocase: String + stream_: Stream_filter + addressA: Bytes + addressA_not: Bytes + addressA_gt: Bytes + addressA_lt: Bytes + addressA_gte: Bytes + addressA_lte: Bytes + addressA_in: [Bytes!] + addressA_not_in: [Bytes!] + addressA_contains: Bytes + addressA_not_contains: Bytes + addressB: Bytes + addressB_not: Bytes + addressB_gt: Bytes + addressB_lt: Bytes + addressB_gte: Bytes + addressB_lte: Bytes + addressB_in: [Bytes!] + addressB_not_in: [Bytes!] + addressB_contains: Bytes + addressB_not_contains: Bytes + amountA: BigInt + amountA_not: BigInt + amountA_gt: BigInt + amountA_lt: BigInt + amountA_gte: BigInt + amountA_lte: BigInt + amountA_in: [BigInt!] + amountA_not_in: [BigInt!] + amountB: BigInt + amountB_not: BigInt + amountB_gt: BigInt + amountB_lt: BigInt + amountB_gte: BigInt + amountB_lte: BigInt + amountB_in: [BigInt!] + amountB_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Action_filter] + or: [Action_filter] +} +``` + +### Fields + +#### [Action_filter.id](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.subgraphId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.from](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.timestamp](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.category](#)[ActionCategory](/docs/api/flow/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not](#)[ActionCategory](/docs/api/flow/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_in](#)[[ActionCategory!]](/docs/api/flow/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not_in](#)[[ActionCategory!]](/docs/api/flow/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.contract](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.fee](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.stream](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream\_](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Action_filter.addressA](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.amountA](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Action_filter.and](#)[[Action_filter]](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Action_filter.or](#)[[Action_filter]](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx new file mode 100644 index 00000000..c024da18 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx @@ -0,0 +1,307 @@ +--- +id: asset-filter +title: Asset_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Asset_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_not_contains: Bytes + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + streams_: Stream_filter + _change_block: BlockChangedFilter + and: [Asset_filter] + or: [Asset_filter] +} +``` + +### Fields + +#### [Asset_filter.id](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gt](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lt](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gte](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lte](#)[ID](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_in](#)[[ID!]](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not_in](#)[[ID!]](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.address](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.chainId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.name](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.streams\_](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Asset_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Asset_filter.and](#)[[Asset_filter]](/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Asset_filter.or](#)[[Asset_filter]](/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx new file mode 100644 index 00000000..8a99978f --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx @@ -0,0 +1,286 @@ +--- +id: batch-filter +title: Batch_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Batch_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + batcher: String + batcher_not: String + batcher_gt: String + batcher_lt: String + batcher_gte: String + batcher_lte: String + batcher_in: [String!] + batcher_not_in: [String!] + batcher_contains: String + batcher_contains_nocase: String + batcher_not_contains: String + batcher_not_contains_nocase: String + batcher_starts_with: String + batcher_starts_with_nocase: String + batcher_not_starts_with: String + batcher_not_starts_with_nocase: String + batcher_ends_with: String + batcher_ends_with_nocase: String + batcher_not_ends_with: String + batcher_not_ends_with_nocase: String + batcher_: Batcher_filter + size: BigInt + size_not: BigInt + size_gt: BigInt + size_lt: BigInt + size_gte: BigInt + size_lte: BigInt + size_in: [BigInt!] + size_not_in: [BigInt!] + streams_: Stream_filter + _change_block: BlockChangedFilter + and: [Batch_filter] + or: [Batch_filter] +} +``` + +### Fields + +#### [Batch_filter.id](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.timestamp](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.batcher](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher\_](#)[Batcher_filter](/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [Batch_filter.size](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.streams\_](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Batch_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Batch_filter.and](#)[[Batch_filter]](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Batch_filter.or](#)[[Batch_filter]](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx new file mode 100644 index 00000000..5859182d --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx @@ -0,0 +1,169 @@ +--- +id: batcher-filter +title: Batcher_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Batcher_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + batchCounter: BigInt + batchCounter_not: BigInt + batchCounter_gt: BigInt + batchCounter_lt: BigInt + batchCounter_gte: BigInt + batchCounter_lte: BigInt + batchCounter_in: [BigInt!] + batchCounter_not_in: [BigInt!] + batches_: Batch_filter + _change_block: BlockChangedFilter + and: [Batcher_filter] + or: [Batcher_filter] +} +``` + +### Fields + +#### [Batcher_filter.id](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.batchCounter](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batches\_](#)[Batch_filter](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Batcher_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Batcher_filter.and](#)[[Batcher_filter]](/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [Batcher_filter.or](#)[[Batcher_filter]](/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx new file mode 100644 index 00000000..f9011627 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx @@ -0,0 +1,74 @@ +--- +id: block-changed-filter +title: BlockChangedFilter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input BlockChangedFilter { + number_gte: Int! +} +``` + +### Fields + +#### [BlockChangedFilter.number_gte](#)[Int!](/docs/api/flow/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/block-height.mdx b/docs/api/flow/graphql/the-graph/inputs/block-height.mdx new file mode 100644 index 00000000..a8f59c2c --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/block-height.mdx @@ -0,0 +1,80 @@ +--- +id: block-height +title: Block_height +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} +``` + +### Fields + +#### [Block_height.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Block_height.number](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [Block_height.number_gte](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx new file mode 100644 index 00000000..89e18360 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx @@ -0,0 +1,1210 @@ +--- +id: stream-filter +title: Stream_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Stream_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + alias: String + alias_not: String + alias_gt: String + alias_lt: String + alias_gte: String + alias_lte: String + alias_in: [String!] + alias_not_in: [String!] + alias_contains: String + alias_contains_nocase: String + alias_not_contains: String + alias_not_contains_nocase: String + alias_starts_with: String + alias_starts_with_nocase: String + alias_not_starts_with: String + alias_not_starts_with_nocase: String + alias_ends_with: String + alias_ends_with_nocase: String + alias_not_ends_with: String + alias_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + tokenId: BigInt + tokenId_not: BigInt + tokenId_gt: BigInt + tokenId_lt: BigInt + tokenId_gte: BigInt + tokenId_lte: BigInt + tokenId_in: [BigInt!] + tokenId_not_in: [BigInt!] + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + actions_: Action_filter + asset: String + asset_not: String + asset_gt: String + asset_lt: String + asset_gte: String + asset_lte: String + asset_in: [String!] + asset_not_in: [String!] + asset_contains: String + asset_contains_nocase: String + asset_not_contains: String + asset_not_contains_nocase: String + asset_starts_with: String + asset_starts_with_nocase: String + asset_not_starts_with: String + asset_not_starts_with_nocase: String + asset_ends_with: String + asset_ends_with_nocase: String + asset_not_ends_with: String + asset_not_ends_with_nocase: String + asset_: Asset_filter + assetDecimals: BigInt + assetDecimals_not: BigInt + assetDecimals_gt: BigInt + assetDecimals_lt: BigInt + assetDecimals_gte: BigInt + assetDecimals_lte: BigInt + assetDecimals_in: [BigInt!] + assetDecimals_not_in: [BigInt!] + batch: String + batch_not: String + batch_gt: String + batch_lt: String + batch_gte: String + batch_lte: String + batch_in: [String!] + batch_not_in: [String!] + batch_contains: String + batch_contains_nocase: String + batch_not_contains: String + batch_not_contains_nocase: String + batch_starts_with: String + batch_starts_with_nocase: String + batch_not_starts_with: String + batch_not_starts_with_nocase: String + batch_ends_with: String + batch_ends_with_nocase: String + batch_not_ends_with: String + batch_not_ends_with_nocase: String + batch_: Batch_filter + category: StreamCategory + category_not: StreamCategory + category_in: [StreamCategory!] + category_not_in: [StreamCategory!] + contract: Bytes + contract_not: Bytes + contract_gt: Bytes + contract_lt: Bytes + contract_gte: Bytes + contract_lte: Bytes + contract_in: [Bytes!] + contract_not_in: [Bytes!] + contract_contains: Bytes + contract_not_contains: Bytes + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + recipient: Bytes + recipient_not: Bytes + recipient_gt: Bytes + recipient_lt: Bytes + recipient_gte: Bytes + recipient_lte: Bytes + recipient_in: [Bytes!] + recipient_not_in: [Bytes!] + recipient_contains: Bytes + recipient_not_contains: Bytes + sender: Bytes + sender_not: Bytes + sender_gt: Bytes + sender_lt: Bytes + sender_gte: Bytes + sender_lte: Bytes + sender_in: [Bytes!] + sender_not_in: [Bytes!] + sender_contains: Bytes + sender_not_contains: Bytes + startTime: BigInt + startTime_not: BigInt + startTime_gt: BigInt + startTime_lt: BigInt + startTime_gte: BigInt + startTime_lte: BigInt + startTime_in: [BigInt!] + startTime_not_in: [BigInt!] + transferable: Boolean + transferable_not: Boolean + transferable_in: [Boolean!] + transferable_not_in: [Boolean!] + version: String + version_not: String + version_gt: String + version_lt: String + version_gte: String + version_lte: String + version_in: [String!] + version_not_in: [String!] + version_contains: String + version_contains_nocase: String + version_not_contains: String + version_not_contains_nocase: String + version_starts_with: String + version_starts_with_nocase: String + version_not_starts_with: String + version_not_starts_with_nocase: String + version_ends_with: String + version_ends_with_nocase: String + version_not_ends_with: String + version_not_ends_with_nocase: String + withdrawnAmount: BigInt + withdrawnAmount_not: BigInt + withdrawnAmount_gt: BigInt + withdrawnAmount_lt: BigInt + withdrawnAmount_gte: BigInt + withdrawnAmount_lte: BigInt + withdrawnAmount_in: [BigInt!] + withdrawnAmount_not_in: [BigInt!] + availableAmount: BigInt + availableAmount_not: BigInt + availableAmount_gt: BigInt + availableAmount_lt: BigInt + availableAmount_gte: BigInt + availableAmount_lte: BigInt + availableAmount_in: [BigInt!] + availableAmount_not_in: [BigInt!] + creator: Bytes + creator_not: Bytes + creator_gt: Bytes + creator_lt: Bytes + creator_gte: Bytes + creator_lte: Bytes + creator_in: [Bytes!] + creator_not_in: [Bytes!] + creator_contains: Bytes + creator_not_contains: Bytes + depletionTime: BigInt + depletionTime_not: BigInt + depletionTime_gt: BigInt + depletionTime_lt: BigInt + depletionTime_gte: BigInt + depletionTime_lte: BigInt + depletionTime_in: [BigInt!] + depletionTime_not_in: [BigInt!] + depositedAmount: BigInt + depositedAmount_not: BigInt + depositedAmount_gt: BigInt + depositedAmount_lt: BigInt + depositedAmount_gte: BigInt + depositedAmount_lte: BigInt + depositedAmount_in: [BigInt!] + depositedAmount_not_in: [BigInt!] + forgivenDebt: BigInt + forgivenDebt_not: BigInt + forgivenDebt_gt: BigInt + forgivenDebt_lt: BigInt + forgivenDebt_gte: BigInt + forgivenDebt_lte: BigInt + forgivenDebt_in: [BigInt!] + forgivenDebt_not_in: [BigInt!] + lastAdjustmentAction: String + lastAdjustmentAction_not: String + lastAdjustmentAction_gt: String + lastAdjustmentAction_lt: String + lastAdjustmentAction_gte: String + lastAdjustmentAction_lte: String + lastAdjustmentAction_in: [String!] + lastAdjustmentAction_not_in: [String!] + lastAdjustmentAction_contains: String + lastAdjustmentAction_contains_nocase: String + lastAdjustmentAction_not_contains: String + lastAdjustmentAction_not_contains_nocase: String + lastAdjustmentAction_starts_with: String + lastAdjustmentAction_starts_with_nocase: String + lastAdjustmentAction_not_starts_with: String + lastAdjustmentAction_not_starts_with_nocase: String + lastAdjustmentAction_ends_with: String + lastAdjustmentAction_ends_with_nocase: String + lastAdjustmentAction_not_ends_with: String + lastAdjustmentAction_not_ends_with_nocase: String + lastAdjustmentAction_: Action_filter + lastAdjustmentTimestamp: BigInt + lastAdjustmentTimestamp_not: BigInt + lastAdjustmentTimestamp_gt: BigInt + lastAdjustmentTimestamp_lt: BigInt + lastAdjustmentTimestamp_gte: BigInt + lastAdjustmentTimestamp_lte: BigInt + lastAdjustmentTimestamp_in: [BigInt!] + lastAdjustmentTimestamp_not_in: [BigInt!] + paused: Boolean + paused_not: Boolean + paused_in: [Boolean!] + paused_not_in: [Boolean!] + pausedAction: String + pausedAction_not: String + pausedAction_gt: String + pausedAction_lt: String + pausedAction_gte: String + pausedAction_lte: String + pausedAction_in: [String!] + pausedAction_not_in: [String!] + pausedAction_contains: String + pausedAction_contains_nocase: String + pausedAction_not_contains: String + pausedAction_not_contains_nocase: String + pausedAction_starts_with: String + pausedAction_starts_with_nocase: String + pausedAction_not_starts_with: String + pausedAction_not_starts_with_nocase: String + pausedAction_ends_with: String + pausedAction_ends_with_nocase: String + pausedAction_not_ends_with: String + pausedAction_not_ends_with_nocase: String + pausedAction_: Action_filter + pausedTime: BigInt + pausedTime_not: BigInt + pausedTime_gt: BigInt + pausedTime_lt: BigInt + pausedTime_gte: BigInt + pausedTime_lte: BigInt + pausedTime_in: [BigInt!] + pausedTime_not_in: [BigInt!] + ratePerSecond: BigInt + ratePerSecond_not: BigInt + ratePerSecond_gt: BigInt + ratePerSecond_lt: BigInt + ratePerSecond_gte: BigInt + ratePerSecond_lte: BigInt + ratePerSecond_in: [BigInt!] + ratePerSecond_not_in: [BigInt!] + refundedAmount: BigInt + refundedAmount_not: BigInt + refundedAmount_gt: BigInt + refundedAmount_lt: BigInt + refundedAmount_gte: BigInt + refundedAmount_lte: BigInt + refundedAmount_in: [BigInt!] + refundedAmount_not_in: [BigInt!] + snapshotAmount: BigInt + snapshotAmount_not: BigInt + snapshotAmount_gt: BigInt + snapshotAmount_lt: BigInt + snapshotAmount_gte: BigInt + snapshotAmount_lte: BigInt + snapshotAmount_in: [BigInt!] + snapshotAmount_not_in: [BigInt!] + voided: Boolean + voided_not: Boolean + voided_in: [Boolean!] + voided_not_in: [Boolean!] + voidedAction: String + voidedAction_not: String + voidedAction_gt: String + voidedAction_lt: String + voidedAction_gte: String + voidedAction_lte: String + voidedAction_in: [String!] + voidedAction_not_in: [String!] + voidedAction_contains: String + voidedAction_contains_nocase: String + voidedAction_not_contains: String + voidedAction_not_contains_nocase: String + voidedAction_starts_with: String + voidedAction_starts_with_nocase: String + voidedAction_not_starts_with: String + voidedAction_not_starts_with_nocase: String + voidedAction_ends_with: String + voidedAction_ends_with_nocase: String + voidedAction_not_ends_with: String + voidedAction_not_ends_with_nocase: String + voidedAction_: Action_filter + voidedTime: BigInt + voidedTime_not: BigInt + voidedTime_gt: BigInt + voidedTime_lt: BigInt + voidedTime_gte: BigInt + voidedTime_lte: BigInt + voidedTime_in: [BigInt!] + voidedTime_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Stream_filter] + or: [Stream_filter] +} +``` + +### Fields + +#### [Stream_filter.id](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.chainId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.timestamp](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.actions\_](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.asset](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset\_](#)[Asset_filter](/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Stream_filter.assetDecimals](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.batch](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch\_](#)[Batch_filter](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Stream_filter.category](#)[StreamCategory](/docs/api/flow/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_not](#)[StreamCategory](/docs/api/flow/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_in](#)[[StreamCategory!]](/docs/api/flow/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_not_in](#)[[StreamCategory!]](/docs/api/flow/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.contract](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.position](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.recipient](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.startTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.transferable](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_not](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_not_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.version](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.withdrawnAmount](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.availableAmount_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.creator](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_not](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_gt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_lt](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_gte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_lte](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_not_in](#)[[Bytes!]](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.creator_not_contains](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.depletionTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depletionTime_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositedAmount_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.forgivenDebt_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentAction](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.lastAdjustmentAction\_](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.lastAdjustmentTimestamp_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.paused](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.paused_not](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.paused_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.paused_not_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.pausedAction](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.pausedAction\_](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.pausedTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.pausedTime_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.ratePerSecond_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.refundedAmount_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.snapshotAmount_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voided](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.voided_not](#)[Boolean](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.voided_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.voided_not_in](#)[[Boolean!]](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.voidedAction](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.voidedAction\_](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.voidedTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.voidedTime_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Stream_filter.and](#)[[Stream_filter]](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Stream_filter.or](#)[[Stream_filter]](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx b/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx new file mode 100644 index 00000000..6e4dee7c --- /dev/null +++ b/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx @@ -0,0 +1,232 @@ +--- +id: watcher-filter +title: Watcher_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Watcher_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + actionCounter: BigInt + actionCounter_not: BigInt + actionCounter_gt: BigInt + actionCounter_lt: BigInt + actionCounter_gte: BigInt + actionCounter_lte: BigInt + actionCounter_in: [BigInt!] + actionCounter_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + logs: [String!] + logs_not: [String!] + logs_contains: [String!] + logs_contains_nocase: [String!] + logs_not_contains: [String!] + logs_not_contains_nocase: [String!] + streamCounter: BigInt + streamCounter_not: BigInt + streamCounter_gt: BigInt + streamCounter_lt: BigInt + streamCounter_gte: BigInt + streamCounter_lte: BigInt + streamCounter_in: [BigInt!] + streamCounter_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Watcher_filter] + or: [Watcher_filter] +} +``` + +### Fields + +#### [Watcher_filter.id](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lt](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lte](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_in](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with_nocase](#)[String](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.actionCounter](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.logs](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains_nocase](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains_nocase](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.streamCounter](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_not](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_gt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_lt](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_gte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_lte](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_not_in](#)[[BigInt!]](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.\_change_block](#)[BlockChangedFilter](/docs/api/flow/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Watcher_filter.and](#)[[Watcher_filter]](/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [Watcher_filter.or](#)[[Watcher_filter]](/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/objects/_category_.yml b/docs/api/flow/graphql/the-graph/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/flow/graphql/the-graph/objects/action.mdx b/docs/api/flow/graphql/the-graph/objects/action.mdx new file mode 100644 index 00000000..d18424a9 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/action.mdx @@ -0,0 +1,147 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. + +```graphql +type Action { + id: String! + subgraphId: BigInt! + block: BigInt! + chainId: BigInt! + from: Bytes! + hash: Bytes! + timestamp: BigInt! + category: ActionCategory! + contract: Bytes! + fee: BigInt + stream: Stream + addressA: Bytes + addressB: Bytes + amountA: BigInt + amountB: BigInt +} +``` + +### Fields + +#### [Action.id](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{txHash}-{blockLogIndex}` + +#### [Action.subgraphId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the `Watcher` entity. + +#### [Action.block](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Block number of the Ethereum transaction. + +#### [Action.chainId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g. 137 for Polygon. + +#### [Action.from](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +The msg.sender of the Ethereum transaction. + +#### [Action.hash](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction. + +#### [Action.timestamp](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp of the Ethereum transaction. + +#### [Action.category](#)[ActionCategory!](/docs/api/flow/graphql/the-graph/enums/action-category.mdx) + +Category of action, e.g., Deposit. + +#### [Action.contract](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Contract through which the action was triggered. + +#### [Action.fee](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The Sablier fee paid in the native token of the chain, e.g., ETH for Ethereum Mainnet. +See https://docs.sablier.com/concepts/fees + +#### [Action.stream](#)[Stream](/docs/api/flow/graphql/the-graph/objects/stream.mdx) + +Stream linked to this action, if any. + +#### [Action.addressA](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Address of 1st actor. Who this is depends upon the action type, e.g. for Create, it is the sender. + +#### [Action.addressB](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Address of 2nd actor. Who this is depends upon the action type, e.g. for Transfer, it is the recipient. + +#### [Action.amountA](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +1st amount. What this is depends upon the action type, e.g. for Deposit, it is the deposit amount. + +#### [Action.amountB](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +2nd amount. What this is depends upon the action type, e.g. for Withdraw, it is the refund amount. diff --git a/docs/api/flow/graphql/the-graph/objects/asset.mdx b/docs/api/flow/graphql/the-graph/objects/asset.mdx new file mode 100644 index 00000000..4a9907fc --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/asset.mdx @@ -0,0 +1,122 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +ERC-20 asset + +```graphql +type Asset { + id: ID! + address: Bytes! + chainId: BigInt! + decimals: BigInt! + name: String! + symbol: String! + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + ): [Stream!]! +} +``` + +### Fields + +#### [Asset.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +Contract address of the ERC20 token + +#### [Asset.address](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Alias for id + +#### [Asset.chainId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g. 137 for Polygon + +#### [Asset.decimals](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Decimals of the ERC20 token + +#### [Asset.name](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Name of the ERC20 token + +#### [Asset.symbol](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Symbol of the ERC20 token + +#### [Asset.streams](#)[[Stream!]!](/docs/api/flow/graphql/the-graph/objects/stream.mdx) + +Streams that rely on this token + +##### [Asset.streams.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Asset.streams.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Asset.streams.orderBy](#)[Stream_orderBy](/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx) + +##### [Asset.streams.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +##### [Asset.streams.where](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/objects/batch.mdx b/docs/api/flow/graphql/the-graph/objects/batch.mdx new file mode 100644 index 00000000..5f8bcfed --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/batch.mdx @@ -0,0 +1,121 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities + +```graphql +type Batch { + id: String! + hash: Bytes + timestamp: BigInt + batcher: Batcher + size: BigInt! + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + ): [Stream!]! +} +``` + +### Fields + +#### [Batch.id](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{chainId}-{txHash}-{batcher}` + +#### [Batch.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction that created this batch. + +#### [Batch.timestamp](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Timestamp of the transaction that created this batch. + +#### [Batch.batcher](#)[Batcher](/docs/api/flow/graphql/the-graph/objects/batcher.mdx) + +The sender address that created this batch. + +#### [Batch.size](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Number of streams part of this batch. + +#### [Batch.streams](#)[[Stream!]!](/docs/api/flow/graphql/the-graph/objects/stream.mdx) + +Streams part of this batch. + +##### [Batch.streams.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Batch.streams.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Batch.streams.orderBy](#)[Stream_orderBy](/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx) + +##### [Batch.streams.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +##### [Batch.streams.where](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/objects/batcher.mdx b/docs/api/flow/graphql/the-graph/objects/batcher.mdx new file mode 100644 index 00000000..c306c36b --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/batcher.mdx @@ -0,0 +1,102 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Sender address that created batches. + +```graphql +type Batcher { + id: String! + batchCounter: BigInt! + batches( + skip: Int = 0 + first: Int = 100 + orderBy: Batch_orderBy + orderDirection: OrderDirection + where: Batch_filter + ): [Batch!]! +} +``` + +### Fields + +#### [Batcher.id](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{chainId}-{sender}` + +#### [Batcher.batchCounter](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Numerical index. + +#### [Batcher.batches](#)[[Batch!]!](/docs/api/flow/graphql/the-graph/objects/batch.mdx) + +Batches started by this sender. + +##### [Batcher.batches.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Batcher.batches.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Batcher.batches.orderBy](#)[Batch_orderBy](/docs/api/flow/graphql/the-graph/enums/batch-order-by.mdx) + +##### [Batcher.batches.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +##### [Batcher.batches.where](#)[Batch_filter](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) diff --git a/docs/api/flow/graphql/the-graph/objects/block.mdx b/docs/api/flow/graphql/the-graph/objects/block.mdx new file mode 100644 index 00000000..543ab7d6 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/block.mdx @@ -0,0 +1,91 @@ +--- +id: block +title: _Block_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type _Block_ { + hash: Bytes + number: Int! + timestamp: Int + parentHash: Bytes +} +``` + +### Fields + +#### [\_Block\_.hash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +The hash of the block + +#### [\_Block\_.number](#)[Int!](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +The block number + +#### [\_Block\_.timestamp](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +Integer representation of the timestamp stored in blocks for the chain + +#### [\_Block\_.parentHash](#)[Bytes](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +The hash of the parent block diff --git a/docs/api/flow/graphql/the-graph/objects/meta.mdx b/docs/api/flow/graphql/the-graph/objects/meta.mdx new file mode 100644 index 00000000..cd60d5e5 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/meta.mdx @@ -0,0 +1,89 @@ +--- +id: meta +title: _Meta_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The type for the top-level \_meta field + +```graphql +type _Meta_ { + block: _Block_! + deployment: String! + hasIndexingErrors: Boolean! +} +``` + +### Fields + +#### [\_Meta\_.block](#)[\_Block\_!](/docs/api/flow/graphql/the-graph/objects/block.mdx) + +Information about a specific subgraph block. The hash of the block +will be null if the \_meta field has a block constraint that asks for +a block number. It will be filled if the \_meta field has no block constraint +and therefore asks for the latest block + +#### [\_Meta\_.deployment](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +The deployment ID + +#### [\_Meta\_.hasIndexingErrors](#)[Boolean!](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +If `true`, the subgraph encountered indexing errors at some past block diff --git a/docs/api/flow/graphql/the-graph/objects/stream.mdx b/docs/api/flow/graphql/the-graph/objects/stream.mdx new file mode 100644 index 00000000..26715276 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/stream.mdx @@ -0,0 +1,271 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type Stream { + id: String! + alias: String! + chainId: BigInt! + subgraphId: BigInt! + tokenId: BigInt! + hash: Bytes! + timestamp: BigInt! + actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + ): [Action!]! + asset: Asset! + assetDecimals: BigInt! + batch: Batch! + category: StreamCategory! + contract: Bytes! + position: BigInt! + recipient: Bytes! + sender: Bytes! + startTime: BigInt! + transferable: Boolean! + version: String! + withdrawnAmount: BigInt! + availableAmount: BigInt! + creator: Bytes! + depletionTime: BigInt! + depositedAmount: BigInt! + forgivenDebt: BigInt! + lastAdjustmentAction: Action + lastAdjustmentTimestamp: BigInt! + paused: Boolean! + pausedAction: Action + pausedTime: BigInt + ratePerSecond: BigInt! + refundedAmount: BigInt! + snapshotAmount: BigInt! + voided: Boolean! + voidedAction: Action + voidedTime: BigInt +} +``` + +### Fields + +#### [Stream.id](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{contractAddress}-{chainId}-{tokenId}` + +#### [Stream.alias](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Like the id: `{contractAlias}-{chainId}-{tokenId}` + +#### [Stream.chainId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g., 137 for Polygon. + +#### [Stream.subgraphId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the `Watcher` entity. +ኆ80 This may change if new data sources are added and the chronological order of streams changes. + +#### [Stream.tokenId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The id provided by the Lockup contract. This is the ERC-721 tokenId. + +#### [Stream.hash](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction that created this stream. + +#### [Stream.timestamp](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp of the Ethereum transaction that created this stream. + +#### [Stream.actions](#)[[Action!]!](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +Actions triggered by this stream. + +##### [Stream.actions.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Stream.actions.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +##### [Stream.actions.orderBy](#)[Action_orderBy](/docs/api/flow/graphql/the-graph/enums/action-order-by.mdx) + +##### [Stream.actions.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +##### [Stream.actions.where](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream.asset](#)[Asset!](/docs/api/flow/graphql/the-graph/objects/asset.mdx) + +ERC-20 token distributed via this stream. + +#### [Stream.assetDecimals](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +ERC-20 token decimals. Stored here to avoid loading the asset entity on each stream. + +#### [Stream.batch](#)[Batch!](/docs/api/flow/graphql/the-graph/objects/batch.mdx) + +The batch the stream may be part of. +Note: this is available only when created within a batch create transaction. + +#### [Stream.category](#)[StreamCategory!](/docs/api/flow/graphql/the-graph/enums/stream-category.mdx) + +Category used for sorting. + +#### [Stream.contract](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +The contract the stream originates from. + +#### [Stream.position](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Position in the batch, if available. + +#### [Stream.recipient](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Current recipient of the stream, with permission to withdraw funds to any third-party address. +Note: the recipient can change on NFT transfer. + +#### [Stream.sender](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +Manager of the stream, with ability to cancel the stream. + +#### [Stream.startTime](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the start of the stream. + +#### [Stream.transferable](#)[Boolean!](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating the transferability of the stream. This is set when the stream is created, and cannot +be changed later. + +#### [Stream.version](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Version of contract, e.g., v1.0. + +#### [Stream.withdrawnAmount](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The sum of all withdrawn amounts. + +#### [Stream.availableAmount](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +This is equivalent to the value returned by ERC20.balanceOf, and it changes after deposit and withdrawal. + +#### [Stream.creator](#)[Bytes!](/docs/api/flow/graphql/the-graph/scalars/bytes.mdx) + +The account that created the stream, which can be different from the sender. + +#### [Stream.depletionTime](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp indicating the time when the stream will become insolvent. + +#### [Stream.depositedAmount](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The sum of all deposits. + +#### [Stream.forgivenDebt](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The amount of debt forgiven by a void action. + +#### [Stream.lastAdjustmentAction](#)[Action](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +Action in which the payment rate was adjusted. + +#### [Stream.lastAdjustmentTimestamp](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for when the payment rate was adjusted. + +#### [Stream.paused](#)[Boolean!](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating if a stream is paused. + +#### [Stream.pausedAction](#)[Action](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +Action in which the stream was paused. + +#### [Stream.pausedTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for when the stream was paused. + +#### [Stream.ratePerSecond](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Current payment rate per second, denominated in 18 decimals. + +#### [Stream.refundedAmount](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The sum of all refunds. + +#### [Stream.snapshotAmount](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +The amount streamed up until the time of the last adjustment, denominated in 18 decimals. + +#### [Stream.voided](#)[Boolean!](/docs/api/flow/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating if a stream is voided. + +#### [Stream.voidedAction](#)[Action](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +Action in which the stream was voided. + +#### [Stream.voidedTime](#)[BigInt](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for when the stream was voided. diff --git a/docs/api/flow/graphql/the-graph/objects/watcher.mdx b/docs/api/flow/graphql/the-graph/objects/watcher.mdx new file mode 100644 index 00000000..1692d3b8 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/objects/watcher.mdx @@ -0,0 +1,96 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type Watcher { + id: String! + actionCounter: BigInt! + chainId: BigInt! + logs: [String!] + streamCounter: BigInt! +} +``` + +### Fields + +#### [Watcher.id](#)[String!](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +The chain ID. There is one watcher per subgraph. + +#### [Watcher.actionCounter](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Global counter for actions. + +#### [Watcher.chainId](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Alias for id. + +#### [Watcher.logs](#)[[String!]](/docs/api/flow/graphql/the-graph/scalars/string.mdx) + +Used for debugging purposes. They are normally empty. + +#### [Watcher.streamCounter](#)[BigInt!](/docs/api/flow/graphql/the-graph/scalars/big-int.mdx) + +Global counter. diff --git a/docs/api/flow/graphql/the-graph/queries/_category_.yml b/docs/api/flow/graphql/the-graph/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/flow/graphql/the-graph/queries/action.mdx b/docs/api/flow/graphql/the-graph/queries/action.mdx new file mode 100644 index 00000000..bb756373 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/action.mdx @@ -0,0 +1,90 @@ +--- +id: action +title: action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +action( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Action +``` + +### Arguments + +#### [action.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [action.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [action.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/flow/graphql/the-graph/queries/actions.mdx b/docs/api/flow/graphql/the-graph/queries/actions.mdx new file mode 100644 index 00000000..8960a777 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/actions.mdx @@ -0,0 +1,102 @@ +--- +id: actions +title: actions +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Action!]! +``` + +### Arguments + +#### [actions.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [actions.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [actions.orderBy](#)[Action_orderBy](/docs/api/flow/graphql/the-graph/enums/action-order-by.mdx) + +#### [actions.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [actions.where](#)[Action_filter](/docs/api/flow/graphql/the-graph/inputs/action-filter.mdx) + +#### [actions.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [actions.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/flow/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/flow/graphql/the-graph/queries/asset.mdx b/docs/api/flow/graphql/the-graph/queries/asset.mdx new file mode 100644 index 00000000..0ddf12fc --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/asset.mdx @@ -0,0 +1,90 @@ +--- +id: asset +title: asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +asset( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Asset +``` + +### Arguments + +#### [asset.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [asset.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [asset.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/flow/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/flow/graphql/the-graph/queries/assets.mdx b/docs/api/flow/graphql/the-graph/queries/assets.mdx new file mode 100644 index 00000000..89dcaa89 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/assets.mdx @@ -0,0 +1,102 @@ +--- +id: assets +title: assets +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +assets( + skip: Int = 0 + first: Int = 100 + orderBy: Asset_orderBy + orderDirection: OrderDirection + where: Asset_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Asset!]! +``` + +### Arguments + +#### [assets.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [assets.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [assets.orderBy](#)[Asset_orderBy](/docs/api/flow/graphql/the-graph/enums/asset-order-by.mdx) + +#### [assets.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [assets.where](#)[Asset_filter](/docs/api/flow/graphql/the-graph/inputs/asset-filter.mdx) + +#### [assets.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [assets.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/flow/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/flow/graphql/the-graph/queries/batch.mdx b/docs/api/flow/graphql/the-graph/queries/batch.mdx new file mode 100644 index 00000000..235608dc --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/batch.mdx @@ -0,0 +1,94 @@ +--- +id: batch +title: batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batch( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Batch +``` + +### Arguments + +#### [batch.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [batch.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batch.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batch](/docs/api/flow/graphql/the-graph/objects/batch.mdx) + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities diff --git a/docs/api/flow/graphql/the-graph/queries/batcher.mdx b/docs/api/flow/graphql/the-graph/queries/batcher.mdx new file mode 100644 index 00000000..d1742fe3 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/batcher.mdx @@ -0,0 +1,90 @@ +--- +id: batcher +title: batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batcher( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Batcher +``` + +### Arguments + +#### [batcher.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [batcher.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batcher.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batcher](/docs/api/flow/graphql/the-graph/objects/batcher.mdx) + +Sender address that created batches. diff --git a/docs/api/flow/graphql/the-graph/queries/batchers.mdx b/docs/api/flow/graphql/the-graph/queries/batchers.mdx new file mode 100644 index 00000000..32a91cfe --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/batchers.mdx @@ -0,0 +1,102 @@ +--- +id: batchers +title: batchers +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batchers( + skip: Int = 0 + first: Int = 100 + orderBy: Batcher_orderBy + orderDirection: OrderDirection + where: Batcher_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Batcher!]! +``` + +### Arguments + +#### [batchers.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [batchers.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [batchers.orderBy](#)[Batcher_orderBy](/docs/api/flow/graphql/the-graph/enums/batcher-order-by.mdx) + +#### [batchers.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [batchers.where](#)[Batcher_filter](/docs/api/flow/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [batchers.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batchers.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batcher](/docs/api/flow/graphql/the-graph/objects/batcher.mdx) + +Sender address that created batches. diff --git a/docs/api/flow/graphql/the-graph/queries/batches.mdx b/docs/api/flow/graphql/the-graph/queries/batches.mdx new file mode 100644 index 00000000..8af74e0f --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/batches.mdx @@ -0,0 +1,106 @@ +--- +id: batches +title: batches +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batches( + skip: Int = 0 + first: Int = 100 + orderBy: Batch_orderBy + orderDirection: OrderDirection + where: Batch_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Batch!]! +``` + +### Arguments + +#### [batches.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [batches.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [batches.orderBy](#)[Batch_orderBy](/docs/api/flow/graphql/the-graph/enums/batch-order-by.mdx) + +#### [batches.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [batches.where](#)[Batch_filter](/docs/api/flow/graphql/the-graph/inputs/batch-filter.mdx) + +#### [batches.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batches.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batch](/docs/api/flow/graphql/the-graph/objects/batch.mdx) + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities diff --git a/docs/api/flow/graphql/the-graph/queries/meta.mdx b/docs/api/flow/graphql/the-graph/queries/meta.mdx new file mode 100644 index 00000000..21a0ba2e --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/meta.mdx @@ -0,0 +1,80 @@ +--- +id: meta +title: _meta +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Access to subgraph metadata + +```graphql +_meta( + block: Block_height +): _Meta_ +``` + +### Arguments + +#### [\_meta.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +### Type + +#### [\_Meta\_](/docs/api/flow/graphql/the-graph/objects/meta.mdx) + +The type for the top-level \_meta field diff --git a/docs/api/flow/graphql/the-graph/queries/stream.mdx b/docs/api/flow/graphql/the-graph/queries/stream.mdx new file mode 100644 index 00000000..29669866 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/stream.mdx @@ -0,0 +1,88 @@ +--- +id: stream +title: stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +stream( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Stream +``` + +### Arguments + +#### [stream.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [stream.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [stream.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Stream](/docs/api/flow/graphql/the-graph/objects/stream.mdx) diff --git a/docs/api/flow/graphql/the-graph/queries/streams.mdx b/docs/api/flow/graphql/the-graph/queries/streams.mdx new file mode 100644 index 00000000..df4e5cf1 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/streams.mdx @@ -0,0 +1,100 @@ +--- +id: streams +title: streams +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Stream!]! +``` + +### Arguments + +#### [streams.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [streams.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [streams.orderBy](#)[Stream_orderBy](/docs/api/flow/graphql/the-graph/enums/stream-order-by.mdx) + +#### [streams.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [streams.where](#)[Stream_filter](/docs/api/flow/graphql/the-graph/inputs/stream-filter.mdx) + +#### [streams.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [streams.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Stream](/docs/api/flow/graphql/the-graph/objects/stream.mdx) diff --git a/docs/api/flow/graphql/the-graph/queries/watcher.mdx b/docs/api/flow/graphql/the-graph/queries/watcher.mdx new file mode 100644 index 00000000..ea15c8e0 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/watcher.mdx @@ -0,0 +1,88 @@ +--- +id: watcher +title: watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +watcher( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Watcher +``` + +### Arguments + +#### [watcher.id](#)[ID!](/docs/api/flow/graphql/the-graph/scalars/id.mdx) + +#### [watcher.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watcher.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/flow/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/flow/graphql/the-graph/queries/watchers.mdx b/docs/api/flow/graphql/the-graph/queries/watchers.mdx new file mode 100644 index 00000000..46ac6915 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/queries/watchers.mdx @@ -0,0 +1,100 @@ +--- +id: watchers +title: watchers +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +watchers( + skip: Int = 0 + first: Int = 100 + orderBy: Watcher_orderBy + orderDirection: OrderDirection + where: Watcher_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Watcher!]! +``` + +### Arguments + +#### [watchers.skip](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [watchers.first](#)[Int](/docs/api/flow/graphql/the-graph/scalars/int.mdx) + +#### [watchers.orderBy](#)[Watcher_orderBy](/docs/api/flow/graphql/the-graph/enums/watcher-order-by.mdx) + +#### [watchers.orderDirection](#)[OrderDirection](/docs/api/flow/graphql/the-graph/enums/order-direction.mdx) + +#### [watchers.where](#)[Watcher_filter](/docs/api/flow/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [watchers.block](#)[Block_height](/docs/api/flow/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watchers.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/flow/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/flow/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/flow/graphql/the-graph/scalars/_category_.yml b/docs/api/flow/graphql/the-graph/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/flow/graphql/the-graph/scalars/big-decimal.mdx b/docs/api/flow/graphql/the-graph/scalars/big-decimal.mdx new file mode 100644 index 00000000..adcc83a4 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/big-decimal.mdx @@ -0,0 +1,68 @@ +--- +id: big-decimal +title: BigDecimal +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar BigDecimal +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/big-int.mdx b/docs/api/flow/graphql/the-graph/scalars/big-int.mdx new file mode 100644 index 00000000..a8254819 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/big-int.mdx @@ -0,0 +1,68 @@ +--- +id: big-int +title: BigInt +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar BigInt +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/boolean.mdx b/docs/api/flow/graphql/the-graph/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/bytes.mdx b/docs/api/flow/graphql/the-graph/scalars/bytes.mdx new file mode 100644 index 00000000..20042d51 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/bytes.mdx @@ -0,0 +1,68 @@ +--- +id: bytes +title: Bytes +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar Bytes +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/float.mdx b/docs/api/flow/graphql/the-graph/scalars/float.mdx new file mode 100644 index 00000000..6d939a16 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/float.mdx @@ -0,0 +1,68 @@ +--- +id: float +title: Float +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). + +```graphql +scalar Float +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/id.mdx b/docs/api/flow/graphql/the-graph/scalars/id.mdx new file mode 100644 index 00000000..1a7b44a0 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/id.mdx @@ -0,0 +1,68 @@ +--- +id: id +title: ID +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. + +```graphql +scalar ID +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/int-8.mdx b/docs/api/flow/graphql/the-graph/scalars/int-8.mdx new file mode 100644 index 00000000..8881d8cc --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/int-8.mdx @@ -0,0 +1,68 @@ +--- +id: int-8 +title: Int8 +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +8 bytes signed integer + +```graphql +scalar Int8 +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/int.mdx b/docs/api/flow/graphql/the-graph/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/string.mdx b/docs/api/flow/graphql/the-graph/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/flow/graphql/the-graph/scalars/timestamp.mdx b/docs/api/flow/graphql/the-graph/scalars/timestamp.mdx new file mode 100644 index 00000000..b7bb9a92 --- /dev/null +++ b/docs/api/flow/graphql/the-graph/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: Timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +A string representation of microseconds UNIX timestamp (16 digits) + +```graphql +scalar Timestamp +``` diff --git a/docs/api/flow/the-graph/01-entities.mdx b/docs/api/flow/the-graph/01-entities.mdx deleted file mode 100644 index 54cf71f0..00000000 --- a/docs/api/flow/the-graph/01-entities.mdx +++ /dev/null @@ -1,32 +0,0 @@ ---- -id: "entities" -sidebar_position: 1 -title: "Entities" ---- - -## Entity Architecture - -GraphQL entities defined by the Sablier subgraphs are meant to mirror the functionality exposed by our core flow -contracts. To achieve this, events are stored as historical entries (e.g. Action) while also being used to mutate -attributes for live entities (e.g. Stream). - -Inside the **flow** subgraph, the -[`schema.graphql`](https://github.com/sablier-labs/indexers/blob/main/apps/flow/schema.graphql) file is responsible of -defining the following Sablier entities: - -### Primary - -| Entity | Description | -| -------- | ------------------------------------------------------------------------------------------- | -| Contract | Instances of `SablierFlow` | -| Action | Emitted events transformed into historical entries (e.g. Create, Withdraw, Adjust, Deposit) | -| Stream | Primary entity tracking the up to date state of a stream | -| Asset | The ERC20 asset that is being streamed | - -### Secondary - -| Entity | Description | -| ------- | ------------------------------------------------------------------------------------------------------------------------- | -| Batch | An entity grouping a set of stream created all at once (action done through the batch interface of SablierFlow contracts) | -| Batcher | An entity resolving 1:1 to a stream sender, in charge of managing the count of "batches" of streams one creates | -| Watcher | A singleton data store for subgraph-level unique indexes such as the stream or action index | diff --git a/docs/api/flow/the-graph/02-structure.mdx b/docs/api/flow/the-graph/02-structure.mdx deleted file mode 100644 index d5ff85bc..00000000 --- a/docs/api/flow/the-graph/02-structure.mdx +++ /dev/null @@ -1,138 +0,0 @@ ---- -id: "structure" -sidebar_position: 2 -title: "Structure" ---- - -We'll break down the [schema](https://github.com/sablier-labs/indexers/blob/main/apps/flow/schema.graphql) into primary -and secondary entities. - -| Type | Entities | -| --------- | ------------------------------- | -| Primary | Contract, Action, Stream, Asset | -| Secondary | Batch, Batcher, Watcher | - -## Contract - -The subgraph is designed to track multiple deployments. Therefore, at any given time the indexer may listen for updates -on many instances of `SablierFlow` contracts . - -A unique `alias` will be attributed to every contract, such that contracts (and later streams) will be identifiable -through both a long form and a short form identifier. See the [Stream](#stream) for details. - ---- - -## Action - -Events emitted by the Sablier Flow contracts will: - -1. Be used to mutate the data stored in the individual `Stream` entities -2. Be stored as historical logs (list of `Action`) to show the evolution of a related stream - -Based on the schema defined `ActionCategory`, the following actions will be tracked by the subgraph: - -| Action | Contract Events | -| -------------- | ---------------------- | -| Approval | Approval | -| ApprovalForAll | ApprovalForAll | -| Adjust | AdjustFlowStream | -| Create | CreateFlowStream | -| Deposit | DepositFlowStream | -| Pause | PauseFlowStream | -| Refund | RefundFromFlowStream | -| Restart | RestartFlowStream | -| Transfer | Transfer | -| Void | VoidFlowStream | -| Withdraw | WithdrawFromFlowStream | - -To keep all actions under the same umbrella, some details will be stored under general purpose attributes like -`amountA`, `amountB`, `addressA`, `addressB` which based on the type of action can be resolved to context-specific -values. Am example can be found -[here](https://github.com/sablier-labs/indexers/blob/52f00f31a89c91dcf24480a5d7d8b25c84467f15/apps/flow/src/mappings/handle-stream.ts#L53-L56) -for the Adjust event. - ---- - -## Stream - -### Identifying - -Inside the contracts, streams will be assigned a unique `tokenId` (or `streamId`). While this makes it easy to identify -items at the contract level, we need to consider the following for both subgraphs and client interfaces: - -- items should be uniquely recognizable across multiple contract instances -- items should be uniquely identifiable across multiple chains -- items should be identifiable with short, easy to digest names - -To address these observations, the subgraph uses two related identifiers for a Stream. - -| Type | Description | Example | -| -------------- | --------------------------------------------------------------------------------------------------- | ------------------------------ | -| `Stream.id` | A self-explanatory structure built using the following structure: `contractAddress-chainId-tokenId` | `0xAB..12-137-21` | -| `Stream.alias` | A short version of the `id` where the contract is aliased: `contractAlias-chainId-tokenId` | `FL-137-21` | - -Both examples from the table above translate to: **_a stream on Polygon (chain id `137`), within the Flow contract at -address `0xAB..12`, with the tokenId `21`_**. - -:::note - -The aliases defined in the subgraph will be used by client apps to resolve data about a stream. Make sure to keep them -in sync, avoid conflicts and regard them as immutable (once decided, never change them). - -::: - -### Aliases - -To provide a simple visual structure, while also accounting for future stream curves (backwards compatibility) we use -the following abbreviations as aliases: - -- FLOW V1.0 contracts become `FL`, e.g. `FL-137-1` - -### Relevant parties - -#### The recipient (gets paid\*) - -As funds are being streamed, they will slowly become eligible to withdraw and spend unlocked tokens. The `recipient` is -defined at the start of the stream but can change as a result of a transfer. - -On transfer, the old recipient moves the NFT (the stream itself) to another address, which becomes the new recipient. -Rights to withdraw and claim future streamed funds are naturally transferred to this new address. - -#### The sender (will pay\*) - -They are an immutable party, defined at the start of the stream. Based on the configuration chosen for the stream, they -will be entitled to later pause the stream, void it (stop and erased any accrued debt), withdraw on behalf of the -recipient or refund any of the unstreamed tokens. - -## Asset - -Tokens (ERC20) streamed through the protocol will be defined through an `Asset` entity. - -:::info - -As a development caveat, some ERC20 contracts are designed to store details (e.g. name, symbol) as `bytes32` and not -`string`. Prior to deploying a subgraph, make sure you take into account these details as part of any Asset entity -implementation. For examples, see the asset "helper" files inside this subgraph's repository code. - -::: - ---- - -## Batch and Batcher - -The SablierFlow contracts through the implementation of the IBatch interface allow executing multiple actions in the -same transaction. One of these functionalities will be **batch stream creation** (or **stream grouping**). Using the -`batch` that receives the encoded data of multiple `create` function calls, a sender will be able to create multiple -streams at once - considered part of the same batch. This is similar with the -[lockup create multiple functions](/api/lockup/the-graph/structure#batch-and-batcher) - -To identify these relationships between stream items, the `Batch` entity will group items created in the same -transaction, by finding events emitted with the same tx hash. The `Batcher` will then assign a user-specific unique -index to every group. - ---- - -## Watcher - -The Watcher (one for the entire subgraph) will provide specific utilities to the entire system, like global stream -identifiers (a numeric id unique to a stream across all contract instances) and global action identifiers. diff --git a/docs/api/flow/the-graph/03-architecture.mdx b/docs/api/flow/the-graph/03-architecture.mdx deleted file mode 100644 index 74e824dc..00000000 --- a/docs/api/flow/the-graph/03-architecture.mdx +++ /dev/null @@ -1,58 +0,0 @@ ---- -id: "architecture" -sidebar_position: 3 -title: "Architecture" ---- - -## Preparations - -In order to start indexing all whitelisted Flow contracts we need a genesis event. With Sablier Flow, there is no -factory pattern so we couldn't rely on a -[data source](https://thegraph.com/docs/en/developing/creating-a-subgraph/#data-source-templates) contract. The next -best things for a "genesis" point was to rely on the first event triggered by the earliest registered onchain contract - -To reduce the number of dependencies required to kickstart a subgraph, we chose to rely on this approach instead of -implementing a separate registry contract. You should extend the file described -[here](/api/lockup/the-graph/architecture#preparations) with the following - -```ts title="packages/constants/.../sepolia.ts" -... -export let startBlock_flow = 6618000; - -/** Rule: keep addresses lowercased */ - -/** - * Keep aliases unique and always in sync with the frontend - * @example export let linear = [[address1, alias1, version1], [address2, alias2, version2]] - */ - -... - -export let flow: string[][] = [ - ["0x83dd52fca44e069020b58155b761a590f12b59d3", "FL", "V10"], -]; - -// highlight-start -/** - * The initializer contract is used to trigger the indexing of all other contracts. - * It should be a linear contract, the oldest/first one deployed on this chain. - * ↪ 🚨 On any new chain, please create a Flow stream to kick-off the indexing flow - */ - -export let initializer_flow = flow[0][0]; -//highlight-end -``` - -## Configurations - -Using this data, we'll call the `yarn deploy:` script. In turn it will: - -0. **[Chain]** Lock onto a specified chain -1. **[Setup]** Clean artifacts and older files -2. **[Template]** Convert TS files into JS for mustache to use in the next step -3. **[Template]** Use mustache to create a specific `subgraph.yaml` (from `subgraph.template.yaml`) using the selected - chain's details -4. **[Template]** Duplicate the selected chain's configuration file as the "current" `env.ts` (for possible imports - directly in Assembly Script) -5. **[Codegen]** Run codegen using the files prepared above, as well as the handlers implementation -6. **[Deploy]** Deploy the code to the endpoint selected based on the specified chain diff --git a/docs/api/flow/the-graph/04-queries.md b/docs/api/flow/the-graph/04-queries.md deleted file mode 100644 index 3e1ebbde..00000000 --- a/docs/api/flow/the-graph/04-queries.md +++ /dev/null @@ -1,144 +0,0 @@ ---- -id: "queries" -sidebar_position: 4 -title: "Queries" ---- - -Building on top of the [entity structure](/api/flow/the-graph/structure) defined earlier, here are some common GraphQL -queries for fetching data from the Sablier subgraph. - -### Recent streams - -```graphql title="The 10 most recent streams" -query getStreams { - streams(first: 10, orderBy: subgraphId, orderDirection: desc) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Paginated streams - -To query streams in sets/pages (and avoid edge cases where using timestamps may skip simultaneous batched streams), we -can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next streams indexed before the last seen subgraphId" -query getStreams($first: Int!, $subgraphId: numeric!) { - streams(first: $first, orderBy: subgraphId, orderDirection: desc, where: { subgraphId_lt: $subgraphId }) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Streams by sender - -```graphql title="The next streams created by an address" -streams( - first: $first - skip: $skip - orderBy: $subgraphId - orderDirection: desc - where: { - and: [{ sender: $sender }, { subgraphId_lt: $subgraphId }] - } -) { - id - alias - category -} -``` - -### Streams by sender or recipient - -To show all streams that have an address marked as a sender or a recipient, extend the example above to account for the -recipient aspect. - -This query includes pagination. - -```graphql title="The next streams related to an address, as a sender or recipient" -streams( - first: $first - skip: $skip - orderBy: $subgraphId - orderDirection: desc - where: { - or: [ - { and: [{ sender: $sender }, { subgraphId_lt: $subgraphId }] } - { and: [{ recipient: $recipient }, { subgraphId_lt: $subgraphId }] } - ] - } -) { - id - alias - category - } -``` - -### Streams by filters - -The official V2 Interfaces will provide a search interface where one may query for a list of streams using the following -filters (the conditions will be combined) - -- the sender address -- the recipient address -- a list of stream identifiers - -This query includes pagination. - -```graphql title="The 'where' clause for a complex paginated search filter" -where: { - or: [ - { - and: [ - { sender: $sender } - { id_in: $streamIds } - { subgraphId_lt: $subgraphId } - ] - } - { - and: [ - { recipient: $recipient } - { id_in: $streamIds } - { subgraphId_lt: $subgraphId } - ] - } - ] -} -``` - -### Actions by stream - -:::tip - -To avoid writing the same entity definitions over and over again, check out Fragments. - -::: - -```graphql title="Most recent 100 stream actions such as withdrawals or transfers" -actions( - first: 100 - orderBy: subgraphId # Action's subgraph id - orderDirection: desc - where: { stream: $streamId } -) { - id - category - stream { - ...StreamFragment - } -} -``` diff --git a/docs/api/flow/the-graph/_category_.json b/docs/api/flow/the-graph/_category_.json deleted file mode 100644 index d24628e9..00000000 --- a/docs/api/flow/the-graph/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "The Graph", - "position": 3 -} diff --git a/docs/api/lockup/01-indexers.mdx b/docs/api/lockup/01-indexers.mdx new file mode 100644 index 00000000..8d700153 --- /dev/null +++ b/docs/api/lockup/01-indexers.mdx @@ -0,0 +1,39 @@ +--- +id: "indexers" +sidebar_position: 1 +title: "Indexers" +--- + +import TableEnvio from "@site/src/autogen/lockup/TableEnvio.mdx"; +import TableTheGraph from "@site/src/autogen/lockup/TableTheGraph.mdx"; +import LinkPreviewIndexers from "@site/src/components/molecules/link-previews/Indexers"; +import ExplainerEnvio from "@site/src/snippets/ExplainerEnvio.mdx"; +import ExplainerTheGraph from "@site/src/snippets/ExplainerTheGraph.mdx"; + +# Sablier Lockup + +This page documents the indexers for the [Sablier Lockup](/concepts/lockup/overview) protocol, which powers the [Vesting](/apps/features/vesting) product and some of the [Airdrop](/apps/features/airdrops) product features in the Sablier Interface. + +## Envio + +### Source Code + + + +### Endpoints + + + + + +## The Graph + +### Source Code + + + +### Endpoints + + + + diff --git a/docs/api/lockup/01-overview.mdx b/docs/api/lockup/01-overview.mdx deleted file mode 100644 index e3c1739d..00000000 --- a/docs/api/lockup/01-overview.mdx +++ /dev/null @@ -1,67 +0,0 @@ ---- -id: "overview" -sidebar_position: 1 -title: "Overview" ---- - -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Sablier Lockup - -Sablier's [Lockup](/concepts/lockup/overview) streams are used for the [Vesting](/apps/features/vesting) feature and -some of the [Airdrops](/apps/features/airdrops) features of the Sablier Interfaces. - -Lockup-native functionality is powered by: - -- The `@sablier/subgraphs/apps/lockup` subgraph -- The `@sablier/subgraphs/apps/lockup-envio` indexer - - - -#### Naming convention - -As per our endpoint [naming convention](/api/overview#endpoints--slugs), subgraph deployments of Sablier Lockup will -follow the `sablier-lockup-*` structure (e.g. `sablier-lockup-ethereum` for Mainnet, `sablier-lockup-base` for Base). - -#### Tips and tricks - -:::tip - -To avoid writing the same entity definitions over and over again, check out -[Fragments](https://graphql.org/learn/queries/#fragments). - -```graphql - -fragment StreamFragment on Stream { - id - sender - recipient - contract { - id - address - } -} - -query getStreams(...){ - streams(...){ - ...StreamFragment - } -} - -``` - -::: - -:::note - -Since Sablier uses multiple immutable contract versions and deployments (e.g. -[lockup's variants](/guides/lockup/deployments#versions)), if you're going to perform onchain actions on queried streams -(e.g. getting the `streamedAmountOf`) make sure you call those methods on the right contract. For subgraphs/indexers, we -store the source contract under `stream.contract.address`. - -::: diff --git a/docs/api/lockup/02-lockup-endpoints.mdx b/docs/api/lockup/02-lockup-endpoints.mdx deleted file mode 100644 index cad66701..00000000 --- a/docs/api/lockup/02-lockup-endpoints.mdx +++ /dev/null @@ -1,225 +0,0 @@ ---- -id: "endpoints" -sidebar_position: 2 -title: "Endpoints" ---- - -import DeprecatedSubgraphs from "@site/docs/snippets/DeprecatedSubgraphs.mdx"; -import EnvioEndpoints from "@site/docs/snippets/EnvioEndpoints.mdx"; -import TheGraphEndpoints from "@site/docs/snippets/TheGraphEndpoints.mdx"; -import EnvioEndpointTable from "@site/src/components/molecules/EnvioEndpointTable"; -import LinkPreview from "@site/src/components/molecules/LinkPreview"; - -# Lockup Endpoints - -The following indexers (Envio, The Graph) track events emitted by the Sablier Lockup contracts, e.g., actions like -creating, withdrawing, or transferring Lockup streams. - -## Envio - -### Source Code - - - -### Endpoints - - - - - -## The Graph - -### Source Code - - - -### Endpoints - - - - -| Chain | Explorer | Production Node | Testing Node[^1] | -| ---------------- | ------------------------------------------------------------------- | ---------------------------------------------------- | ---------------------------------------- | -| Ethereum Mainnet | [sablier-lockup-ethereum-mainnet][explorer-lockup-ethereum-mainnet] | [The Graph Network][network-lockup-ethereum-mainnet] | [Studio][studio-lockup-ethereum-mainnet] | -| Abstract | [sablier-lockup-abstract][explorer-lockup-abstract] | [The Graph Network][network-lockup-abstract] | [Studio][studio-lockup-abstract] | -| Arbitrum | [sablier-lockup-arbitrum][explorer-lockup-arbitrum] | [The Graph Network][network-lockup-arbitrum] | [Studio][studio-lockup-arbitrum] | -| Avalanche | [sablier-lockup-avalanche][explorer-lockup-avalanche] | [The Graph Network][network-lockup-avalanche] | [Studio][studio-lockup-avalanche] | -| Base | [sablier-lockup-base][explorer-lockup-base] | [The Graph Network][network-lockup-base] | [Studio][studio-lockup-base] | -| Berachain | [sablier-lockup-berachain][explorer-lockup-berachain] | [The Graph Network][network-lockup-berachain] | [Studio][studio-lockup-berachain] | -| Blast | [sablier-lockup-blast][explorer-lockup-blast] | [The Graph Network][network-lockup-blast] | [Studio][studio-lockup-blast] | -| BNB Chain | [sablier-lockup-bsc][explorer-lockup-bsc] | [The Graph Network][network-lockup-bsc] | [Studio][studio-lockup-bsc] | -| Chiliz Chain | [sablier-lockup-chiliz][explorer-lockup-chiliz] | [The Graph Network][network-lockup-chiliz] | [Studio][studio-lockup-chiliz] | -| Gnosis | [sablier-lockup-gnosis][explorer-lockup-gnosis] | [The Graph Network][network-lockup-gnosis] | [Studio][studio-lockup-gnosis] | -| IoTeX | [sablier-lockup-iotex][explorer-lockup-iotex] | [The Graph Network][network-lockup-iotex] | [Studio][studio-lockup-iotex] | -| Linea | [sablier-lockup-linea][explorer-lockup-linea] | [The Graph Network][network-lockup-linea] | [Studio][studio-lockup-linea] | -| Lightlink | [sablier-lockup-lightlink][explorer-lockup-lightlink] | [LightLink Node][custom-lockup-lightlink] | N/A | -| Mode | [sablier-lockup-mode][explorer-lockup-mode] | [The Graph Network][network-lockup-mode] | [Studio][studio-lockup-mode] | -| Optimism | [sablier-lockup-optimism][explorer-lockup-optimism] | [The Graph Network][network-lockup-optimism] | [Studio][studio-lockup-optimism] | -| Polygon | [sablier-lockup-polygon][explorer-lockup-polygon] | [The Graph Network][network-lockup-polygon] | [Studio][studio-lockup-polygon] | -| Scroll | [sablier-lockup-scroll][explorer-lockup-scroll] | [The Graph Network][network-lockup-scroll] | [Studio][studio-lockup-scroll] | -| XDC | [sablier-lockup-xdc][explorer-lockup-xdc] | [XDC Node][custom-lockup-xdc] | N/A | -| zkSync | [sablier-lockup-zksync][explorer-lockup-zksync] | [The Graph Network][network-lockup-zksync] | [Studio][studio-lockup-zksync] | -| Arbitrum Sepolia | [sablier-lockup-arbitrum-sepolia][explorer-lockup-arbitrum-sepolia] | [The Graph Network][network-lockup-arbitrum-sepolia] | [Studio][studio-lockup-arbitrum-sepolia] | -| Base Sepolia | [sablier-lockup-base-sepolia][explorer-lockup-base-sepolia] | [The Graph Network][network-lockup-base-sepolia] | [Studio][studio-lockup-base-sepolia] | -| Ethereum Sepolia | [sablier-lockup-ethereum-sepolia][explorer-lockup-ethereum-sepolia] | [The Graph Network][network-lockup-ethereum-sepolia] | [Studio][studio-lockup-ethereum-sepolia] | -| Optimism Sepolia | [sablier-lockup-optimism-sepolia][explorer-lockup-optimism-sepolia] | [The Graph Network][network-lockup-optimism-sepolia] | [Studio][studio-lockup-optimism-sepolia] | - -[^1]: The testing nodes may be rate-limited. - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* MAINNETS */} - -{/* Chain: Ethereum Mainnet */} - -[explorer-lockup-ethereum-mainnet]: https://thegraph.com/explorer/subgraphs/AvDAMYYHGaEwn9F9585uqq6MM5CfvRtYcb7KjK7LKPCt -[studio-lockup-ethereum-mainnet]: https://api.studio.thegraph.com/query/112500/sablier-lockup-ethereum/version/latest -[network-lockup-ethereum-mainnet]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/AvDAMYYHGaEwn9F9585uqq6MM5CfvRtYcb7KjK7LKPCt - -{/* Chain: Abstract */} - -[network-lockup-abstract]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/2QjTdDFY233faXksUruMERMiDoQDdtGG5hBLC27aT1Pw -[explorer-lockup-abstract]: https://thegraph.com/explorer/subgraphs/2QjTdDFY233faXksUruMERMiDoQDdtGG5hBLC27aT1Pw -[studio-lockup-abstract]: https://api.studio.thegraph.com/query/112500/sablier-lockup-abstract/version/latest - -{/* Chain: Arbitrum */} - -[network-lockup-arbitrum]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/yvDXXHSyv6rGPSzfpbBcbQmMFrECac3Q2zADkYsMxam -[explorer-lockup-arbitrum]: https://thegraph.com/explorer/subgraphs/yvDXXHSyv6rGPSzfpbBcbQmMFrECac3Q2zADkYsMxam -[studio-lockup-arbitrum]: https://api.studio.thegraph.com/query/112500/sablier-lockup-arbitrum/version/latest - -{/* Chain: Avalanche */} - -[network-lockup-avalanche]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/FTDmonvFEm1VGkzECcnDY2CPHcW5dSmHRurSjEEfTkCX -[explorer-lockup-avalanche]: https://thegraph.com/explorer/subgraphs/FTDmonvFEm1VGkzECcnDY2CPHcW5dSmHRurSjEEfTkCX -[studio-lockup-avalanche]: https://api.studio.thegraph.com/query/112500/sablier-lockup-avalanche/version/latest - -{/* Chain: Base */} - -[network-lockup-base]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/778GfecD9tsyB4xNnz4wfuAyfHU6rqGr79VCPZKu3t2F -[explorer-lockup-base]: https://thegraph.com/explorer/subgraphs/778GfecD9tsyB4xNnz4wfuAyfHU6rqGr79VCPZKu3t2F -[studio-lockup-base]: https://api.studio.thegraph.com/query/112500/sablier-lockup-base/version/latest - -{/* Chain: Berachain */} - -[network-lockup-berachain]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/C2r13APcUemQtVdPFm7p7T3aJkU2rH2EvdZzrQ53zi14 -[explorer-lockup-berachain]: https://thegraph.com/explorer/subgraphs/C2r13APcUemQtVdPFm7p7T3aJkU2rH2EvdZzrQ53zi14 -[studio-lockup-berachain]: https://api.studio.thegraph.com/query/112500/sablier-lockup-berachain/version/latest - -{/* Chain: Blast */} - -[network-lockup-blast]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/8MBBc6ET4izgJRrybgWzPjokhZKSjk43BNY1q3xcb8Es -[explorer-lockup-blast]: https://thegraph.com/explorer/subgraphs/8MBBc6ET4izgJRrybgWzPjokhZKSjk43BNY1q3xcb8Es -[studio-lockup-blast]: https://api.studio.thegraph.com/query/112500/sablier-lockup-blast/version/latest - -{/* Chain: BSC */} - -[network-lockup-bsc]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/A8Vc9hi7j45u7P8Uw5dg4uqYJgPo4x1rB4oZtTVaiccK -[explorer-lockup-bsc]: https://thegraph.com/explorer/subgraphs/A8Vc9hi7j45u7P8Uw5dg4uqYJgPo4x1rB4oZtTVaiccK -[studio-lockup-bsc]: https://api.studio.thegraph.com/query/112500/sablier-lockup-bsc/version/latest - -{/* Chain: Chiliz */} - -[network-lockup-chiliz]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/4KsXUFvsKFHH7Q8k3BPgEv2NhCJJGwG78gCPAUpncYb -[explorer-lockup-chiliz]: https://thegraph.com/explorer/subgraphs/4KsXUFvsKFHH7Q8k3BPgEv2NhCJJGwG78gCPAUpncYb -[studio-lockup-chiliz]: https://api.studio.thegraph.com/query/112500/sablier-lockup-chiliz/version/latest - -{/* Chain: Gnosis */} - -[network-lockup-gnosis]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/DtKniy1RvB19q1r2g1WLN4reMNKDacEnuAjh284rW2iK -[explorer-lockup-gnosis]: https://thegraph.com/explorer/subgraphs/DtKniy1RvB19q1r2g1WLN4reMNKDacEnuAjh284rW2iK -[studio-lockup-gnosis]: https://api.studio.thegraph.com/query/112500/sablier-lockup-gnosis/version/latest - -{/* Chain: Lightlink */} - -[explorer-lockup-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-lockup-lightlink/graphql -[custom-lockup-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-lockup-lightlink - -{/* Chain: Iotex */} - -[network-lockup-iotex]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/2P3sxwmcWBjMUv1C79Jh4h6VopBaBZeTocYWDUQqwWFV -[explorer-lockup-iotex]: https://thegraph.com/explorer/subgraphs/2P3sxwmcWBjMUv1C79Jh4h6VopBaBZeTocYWDUQqwWFV -[studio-lockup-iotex]: https://api.studio.thegraph.com/query/112500/sablier-lockup-iotex/version/latest - -{/* Chain: Linea */} - -[network-lockup-linea]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/GvpecytqVzLzuwuQB3enozXoaZRFoVx8Kr7qrfMiE9bs -[explorer-lockup-linea]: https://thegraph.com/explorer/subgraphs/GvpecytqVzLzuwuQB3enozXoaZRFoVx8Kr7qrfMiE9bs -[studio-lockup-linea]: https://api.studio.thegraph.com/query/112500/sablier-lockup-linea/version/latest - -{/* Chain: Mode */} - -[network-lockup-mode]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/oSBvUM371as1pJh8HQ72NMRMb3foV3wuheULfkNf5vy -[explorer-lockup-mode]: https://thegraph.com/explorer/subgraphs/oSBvUM371as1pJh8HQ72NMRMb3foV3wuheULfkNf5vy -[studio-lockup-mode]: https://api.studio.thegraph.com/query/112500/sablier-lockup-mode/version/latest - -{/* Chain: Optimism */} - -[network-lockup-optimism]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/NZHzd2JNFKhHP5EWUiDxa5TaxGCFbSD4g6YnYr8JGi6 -[explorer-lockup-optimism]: https://thegraph.com/explorer/subgraphs/NZHzd2JNFKhHP5EWUiDxa5TaxGCFbSD4g6YnYr8JGi6 -[studio-lockup-optimism]: https://api.studio.thegraph.com/query/112500/sablier-lockup-optimism/version/latest - -{/* Chain: Polygon */} - -[network-lockup-polygon]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/8fgeQMEQ8sskVeWE5nvtsVL2VpezDrAkx2d1VeiHiheu -[explorer-lockup-polygon]: https://thegraph.com/explorer/subgraphs/8fgeQMEQ8sskVeWE5nvtsVL2VpezDrAkx2d1VeiHiheu -[studio-lockup-polygon]: https://api.studio.thegraph.com/query/112500/sablier-lockup-polygon/version/latest - -{/* Chain: Scroll */} - -[network-lockup-scroll]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/GycpYx8c9eRqxvEAfqnpNd1ZfXeuLzjRhnG7vvYaqEE1 -[explorer-lockup-scroll]: https://thegraph.com/explorer/subgraphs/GycpYx8c9eRqxvEAfqnpNd1ZfXeuLzjRhnG7vvYaqEE1 -[studio-lockup-scroll]: https://api.studio.thegraph.com/query/112500/sablier-lockup-scroll/version/latest - -{/* Chain: XDC */} - -[explorer-lockup-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-lockup-xdc/graphql -[custom-lockup-xdc]: https://graphql.xinfin.network/subgraphs/name/xdc/sablier-lockup-xdc - -{/* Chain: zkSync */} - -[network-lockup-zksync]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/5yDtFSxyRuqyjvGJyyuQhMEW3Uah7Ddy2KFSKVhy9VMa -[explorer-lockup-zksync]: https://thegraph.com/explorer/subgraphs/5yDtFSxyRuqyjvGJyyuQhMEW3Uah7Ddy2KFSKVhy9VMa -[studio-lockup-zksync]: https://api.studio.thegraph.com/query/112500/sablier-lockup-zksync/version/latest - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* TESTNETS */} - -{/* Chain: Arbitrum Sepolia */} - -[network-lockup-arbitrum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/ApEFvaPGARHedGmFp6TRQu7DoDHQKwt1LPWi1ka6DFHT -[explorer-lockup-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/ApEFvaPGARHedGmFp6TRQu7DoDHQKwt1LPWi1ka6DFHT -[studio-lockup-arbitrum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-lockup-arbitrum-sepolia/version/latest - -{/* Chain: Base Sepolia */} - -[network-lockup-base-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/DdiYENuyh5ztSybRJnBnCZuUgESkFasjGFHZUbURpKHz -[explorer-lockup-base-sepolia]: https://thegraph.com/explorer/subgraphs/DdiYENuyh5ztSybRJnBnCZuUgESkFasjGFHZUbURpKHz -[studio-lockup-base-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-lockup-base-sepolia/version/latest - -{/* Chain: Ethereum Sepolia */} - -[network-lockup-ethereum-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/5yDtFSxyRuqyjvGJyyuQhMEW3Uah7Ddy2KFSKVhy9VMa -[explorer-lockup-ethereum-sepolia]: https://thegraph.com/explorer/subgraphs/5yDtFSxyRuqyjvGJyyuQhMEW3Uah7Ddy2KFSKVhy9VMa -[studio-lockup-ethereum-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-lockup-sepolia/version/latest - -{/* Chain: Optimism Sepolia */} - -[network-lockup-optimism-sepolia]: https://gateway.thegraph.com/api/API_KEY/subgraphs/id/2LFYyhMVMUMYA2q7XMMnBvCs6v6awWxBeMuMk3tMtmiT -[explorer-lockup-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/2LFYyhMVMUMYA2q7XMMnBvCs6v6awWxBeMuMk3tMtmiT -[studio-lockup-optimism-sepolia]: https://api.studio.thegraph.com/query/112500/sablier-lockup-optimism-sepolia/version/latest diff --git a/docs/api/lockup/03-previous-indexers.mdx b/docs/api/lockup/03-previous-indexers.mdx new file mode 100644 index 00000000..de673928 --- /dev/null +++ b/docs/api/lockup/03-previous-indexers.mdx @@ -0,0 +1,127 @@ +--- +id: "previous-indexers" +sidebar_position: 3 +title: "Previous Indexers" +--- + +import DeprecatedIndexers from "@site/src/snippets/DeprecatedIndexers.mdx"; + + + +| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | +| ---------------- | -------------------------------------------------------- | --------------------------------- | ------------------------------------ | +| Ethereum | [sablier-v2][explorer-ethereum] | [Studio][studio-ethereum] | [Network][network-ethereum] | +| Arbitrum | [sablier-v2-arbitrum][explorer-arbitrum] | [Studio][studio-arbitrum] | [Network][network-arbitrum] | +| Arbitrum Sepolia | [sablier-v2-arbitrum-sepolia][explorer-arbitrum-sepolia] | [Studio][studio-arbitrum-sepolia] | [Network][network-arbitrum-sepolia] | +| Avalanche | [sablier-v2-avalanche][explorer-avalanche] | [Studio][studio-avalanche] | [Network][network-avalanche] | +| Base | [sablier-v2-base][explorer-base] | [Studio][studio-base] | [Network][network-base] | +| Blast | [sablier-v2-blast][explorer-blast] | [Studio][studio-blast] | [Network][network-blast] | +| BNB Chain | [sablier-v2-bsc][explorer-bsc] | [Studio][studio-bsc] | [Network][network-bsc] | +| Chliz Chain | [sablier-v2-chiliz][explorer-chiliz] | [Studio][studio-chiliz] | [Network][network-chiliz] | +| Gnosis | [sablier-v2-gnosis][explorer-gnosis] | [Studio][studio-gnosis] | [Network][network-gnosis] | +| Lightlink | [sablier-v2-lightlink\*][explorer-lightlink] | N/A | [Lightlink Node\*][custom-lightlink] | +| Optimism | [sablier-v2-optimism][explorer-optimism] | [Studio][studio-optimism] | [Network][network-optimism] | +| Optimism Sepolia | [sablier-v2-optimism-sepolia][explorer-optimism-sepolia] | [Studio][studio-optimism-sepolia] | [Network][network-optimism-sepolia] | +| Polygon | [sablier-v2-polygon][explorer-polygon] | [Studio][studio-polygon] | [Network][network-polygon] | +| Scroll | [sablier-v2-scroll][explorer-scroll] | [Studio][studio-scroll] | [Network][network-scroll] | +| Ethereum Sepolia | [sablier-v2-sepolia][explorer-sepolia] | [Studio][studio-sepolia] | [Network][network-sepolia] | +| zkSync | [sablier-v2-zksync][explorer-zksync] | [Studio][studio-zksync] | [Network][network-zksync] | + +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} +{/* --------------------------------------------------------------------------------------------------------------------------------- */} + +{/* Chain: Arbitrum */} + +[network-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8BnGPBojHycDxVo83LP468pUo4xDyCQbtTpHGZXR6SiB +[explorer-arbitrum]: https://thegraph.com/explorer/subgraphs/8BnGPBojHycDxVo83LP468pUo4xDyCQbtTpHGZXR6SiB +[studio-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-arbitrum/version/latest + +{/* Chain: Arbitrum Sepolia */} + +[network-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BZYXgTYGe51dy5rW6LhrLN7PWSiAgRQoqSBJEiPpRN9K +[explorer-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/BZYXgTYGe51dy5rW6LhrLN7PWSiAgRQoqSBJEiPpRN9K +[studio-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-arbitrum-sepolia/version/latest + +{/* Chain: Avalanche */} + +[network-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FdVwZuMV43yCb1nPmjnLQwmzS58wvKuLMPzcZ4UWgWAc +[explorer-avalanche]: https://thegraph.com/explorer/subgraphs/FdVwZuMV43yCb1nPmjnLQwmzS58wvKuLMPzcZ4UWgWAc +[studio-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-avalanche/version/latest + +{/* Chain: Base */} + +[network-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3pxjsW9rbDjmZpoQWzc5CAo4vzcyYE9YQyTghntmnb1K +[explorer-base]: https://thegraph.com/explorer/subgraphs/3pxjsW9rbDjmZpoQWzc5CAo4vzcyYE9YQyTghntmnb1K +[studio-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-base/version/latest + +{/* Chain: Blast */} + +[network-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BXoC2ToMZXnTmCjWftQRPh9zMyM7ysijMN54Nxzb2CEY +[explorer-blast]: https://thegraph.com/explorer/subgraphs/BXoC2ToMZXnTmCjWftQRPh9zMyM7ysijMN54Nxzb2CEY +[studio-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-blast/version/latest + +{/* Chain: BSC */} + +[network-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BVyi15zcH5eUg5PPKfRDDesezMezh6cAkn8LPvh7MVAF +[explorer-bsc]: https://thegraph.com/explorer/subgraphs/BVyi15zcH5eUg5PPKfRDDesezMezh6cAkn8LPvh7MVAF +[studio-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-bsc/version/latest + +{/* Chain: Chiliz */} + +[network-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HKvzAuGjrEiza11W48waJy5csbhKpkMLF688arwHhT5f +[explorer-chiliz]: https://thegraph.com/explorer/subgraphs/HKvzAuGjrEiza11W48waJy5csbhKpkMLF688arwHhT5f +[studio-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-chiliz/version/latest + +{/* Chain: Gnosis */} + +[network-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/EXhNLbhCbsewJPx4jx5tutNXpxwdgng2kmX1J7w1bFyu +[explorer-gnosis]: https://thegraph.com/explorer/subgraphs/EXhNLbhCbsewJPx4jx5tutNXpxwdgng2kmX1J7w1bFyu +[studio-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-gnosis/version/latest + +{/* Chain: Lightlink */} + +[explorer-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-lightlink/graphql +[custom-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-lightlink + +{/* Chain: Mainnet | Ethereum */} + +[explorer-ethereum]: https://thegraph.com/explorer/subgraphs/EuZZnhFtdCGqN2Zt7EMGYDqQKNrVuhJL63KAfwvF35bL +[studio-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2/version/latest +[network-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/EuZZnhFtdCGqN2Zt7EMGYDqQKNrVuhJL63KAfwvF35bL + +{/* Chain: Optimism */} + +[network-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/6e6Dvs1yDpsWDDREZRqxGi54SVdvTNzUdKpKJxniKVrp +[explorer-optimism]: https://thegraph.com/explorer/subgraphs/6e6Dvs1yDpsWDDREZRqxGi54SVdvTNzUdKpKJxniKVrp +[studio-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-optimism/version/latest + +{/* Chain: Optimism Sepolia */} + +[network-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2a2JpbmBfQs78UEvQYXgweHetcZUPm9zXCjP69o5mTed +[explorer-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/2a2JpbmBfQs78UEvQYXgweHetcZUPm9zXCjP69o5mTed +[studio-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-optimism-sepolia/version/latest + +{/* Chain: Polygon */} + +[network-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CsDNYv9XPUMP8vufuwDVKQrVhsxhzzRHezjLFFKZZbrx +[explorer-polygon]: https://thegraph.com/explorer/subgraphs/CsDNYv9XPUMP8vufuwDVKQrVhsxhzzRHezjLFFKZZbrx +[studio-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-polygon/version/latest + +{/* Chain: Scroll */} + +[network-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HVcngokCByfveLwguuafrBC34xB65Ne6tpGrXHmqDSrh +[explorer-scroll]: https://thegraph.com/explorer/subgraphs/HVcngokCByfveLwguuafrBC34xB65Ne6tpGrXHmqDSrh +[studio-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-scroll/version/latest + +{/* Chain: Ethereum Sepolia */} + +[network-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3JR9ixhdUxX5oc2Yjr6jkG4XUqDd4guy8niL6AYzDKss +[explorer-sepolia]: https://thegraph.com/explorer/subgraphs/3JR9ixhdUxX5oc2Yjr6jkG4XUqDd4guy8niL6AYzDKss +[studio-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-sepolia/version/latest + +{/* Chain: zkSync */} + +[network-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/GY2fGozmfZiZ3xF2MfevohLR4YGnyxGxAyxzi9zmU5bY +[explorer-zksync]: https://thegraph.com/explorer/subgraphs/GY2fGozmfZiZ3xF2MfevohLR4YGnyxGxAyxzi9zmU5bY +[studio-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-zksync/version/latest diff --git a/docs/api/lockup/05-previous-endpoints.mdx b/docs/api/lockup/05-previous-endpoints.mdx deleted file mode 100644 index f9e37e3b..00000000 --- a/docs/api/lockup/05-previous-endpoints.mdx +++ /dev/null @@ -1,135 +0,0 @@ ---- -id: "previous-endpoints" -sidebar_position: 5 -title: "Previous Endpoints" ---- - -import DeprecatedEndpoints from "@site/docs/snippets/DeprecatedEndpoints.mdx"; - - - -| Chain | Explorer | Studio[^2] | Decentralized Network[^1] | -| ---------------- | ----------------------------------------------------------- | ------------------------------------ | --------------------------------------- | -| Ethereum | [sablier-v2][v2-explorer-ethereum] | [Studio][v2-studio-ethereum] | [Network][v2-network-ethereum] | -| Arbitrum | [sablier-v2-arbitrum][v2-explorer-arbitrum] | [Studio][v2-studio-arbitrum] | [Network][v2-network-arbitrum] | -| Arbitrum Sepolia | [sablier-v2-arbitrum-sepolia][v2-explorer-arbitrum-sepolia] | [Studio][v2-studio-arbitrum-sepolia] | [Network][v2-network-arbitrum-sepolia] | -| Avalanche | [sablier-v2-avalanche][v2-explorer-avalanche] | [Studio][v2-studio-avalanche] | [Network][v2-network-avalanche] | -| Base | [sablier-v2-base][v2-explorer-base] | [Studio][v2-studio-base] | [Network][v2-network-base] | -| Blast | [sablier-v2-blast][v2-explorer-blast] | [Studio][v2-studio-blast] | [Network][v2-network-blast] | -| BNB Chain | [sablier-v2-bsc][v2-explorer-bsc] | [Studio][v2-studio-bsc] | [Network][v2-network-bsc] | -| Chliz Chain | [sablier-v2-chiliz][v2-explorer-chiliz] | [Studio][v2-studio-chiliz] | [Network][v2-network-chiliz] | -| Gnosis | [sablier-v2-gnosis][v2-explorer-gnosis] | [Studio][v2-studio-gnosis] | [Network][v2-network-gnosis] | -| Lightlink | [sablier-v2-lightlink\*][v2-explorer-lightlink] | N/A | [Lightlink Node\*][v2-custom-lightlink] | -| Optimism | [sablier-v2-optimism][v2-explorer-optimism] | [Studio][v2-studio-optimism] | [Network][v2-network-optimism] | -| Optimism Sepolia | [sablier-v2-optimism-sepolia][v2-explorer-optimism-sepolia] | [Studio][v2-studio-optimism-sepolia] | [Network][v2-network-optimism-sepolia] | -| Polygon | [sablier-v2-polygon][v2-explorer-polygon] | [Studio][v2-studio-polygon] | [Network][v2-network-polygon] | -| Scroll | [sablier-v2-scroll][v2-explorer-scroll] | [Studio][v2-studio-scroll] | [Network][v2-network-scroll] | -| Ethereum Sepolia | [sablier-v2-sepolia][v2-explorer-sepolia] | [Studio][v2-studio-sepolia] | [Network][v2-network-sepolia] | -| zkSync | [sablier-v2-zksync][v2-explorer-zksync] | [Studio][v2-studio-zksync] | [Network][v2-network-zksync] | - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -{/* Chain: Arbitrum */} - -[v2-network-arbitrum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/8BnGPBojHycDxVo83LP468pUo4xDyCQbtTpHGZXR6SiB -[v2-explorer-arbitrum]: https://thegraph.com/explorer/subgraphs/8BnGPBojHycDxVo83LP468pUo4xDyCQbtTpHGZXR6SiB -[v2-studio-arbitrum]: https://api.studio.thegraph.com/query/57079/sablier-v2-arbitrum/version/latest - -{/* Chain: Arbitrum Sepolia */} - -[v2-network-arbitrum-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BZYXgTYGe51dy5rW6LhrLN7PWSiAgRQoqSBJEiPpRN9K -[v2-explorer-arbitrum-sepolia]: https://thegraph.com/explorer/subgraphs/BZYXgTYGe51dy5rW6LhrLN7PWSiAgRQoqSBJEiPpRN9K -[v2-studio-arbitrum-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-arbitrum-sepolia/version/latest - -{/* Chain: Avalanche */} - -[v2-network-avalanche]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/FdVwZuMV43yCb1nPmjnLQwmzS58wvKuLMPzcZ4UWgWAc -[v2-explorer-avalanche]: https://thegraph.com/explorer/subgraphs/FdVwZuMV43yCb1nPmjnLQwmzS58wvKuLMPzcZ4UWgWAc -[v2-studio-avalanche]: https://api.studio.thegraph.com/query/57079/sablier-v2-avalanche/version/latest - -{/* Chain: Base */} - -[v2-network-base]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3pxjsW9rbDjmZpoQWzc5CAo4vzcyYE9YQyTghntmnb1K -[v2-explorer-base]: https://thegraph.com/explorer/subgraphs/3pxjsW9rbDjmZpoQWzc5CAo4vzcyYE9YQyTghntmnb1K -[v2-studio-base]: https://api.studio.thegraph.com/query/57079/sablier-v2-base/version/latest - -{/* Chain: Blast */} - -[v2-network-blast]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BXoC2ToMZXnTmCjWftQRPh9zMyM7ysijMN54Nxzb2CEY -[v2-explorer-blast]: https://thegraph.com/explorer/subgraphs/BXoC2ToMZXnTmCjWftQRPh9zMyM7ysijMN54Nxzb2CEY -[v2-studio-blast]: https://api.studio.thegraph.com/query/57079/sablier-v2-blast/version/latest - -{/* Chain: BSC */} - -[v2-network-bsc]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/BVyi15zcH5eUg5PPKfRDDesezMezh6cAkn8LPvh7MVAF -[v2-explorer-bsc]: https://thegraph.com/explorer/subgraphs/BVyi15zcH5eUg5PPKfRDDesezMezh6cAkn8LPvh7MVAF -[v2-studio-bsc]: https://api.studio.thegraph.com/query/57079/sablier-v2-bsc/version/latest - -{/* Chain: Chiliz */} - -[v2-network-chiliz]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HKvzAuGjrEiza11W48waJy5csbhKpkMLF688arwHhT5f -[v2-explorer-chiliz]: https://thegraph.com/explorer/subgraphs/HKvzAuGjrEiza11W48waJy5csbhKpkMLF688arwHhT5f -[v2-studio-chiliz]: https://api.studio.thegraph.com/query/57079/sablier-v2-chiliz/version/latest - -{/* Chain: Gnosis */} - -[v2-network-gnosis]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/EXhNLbhCbsewJPx4jx5tutNXpxwdgng2kmX1J7w1bFyu -[v2-explorer-gnosis]: https://thegraph.com/explorer/subgraphs/EXhNLbhCbsewJPx4jx5tutNXpxwdgng2kmX1J7w1bFyu -[v2-studio-gnosis]: https://api.studio.thegraph.com/query/57079/sablier-v2-gnosis/version/latest - -{/* Chain: Lightlink */} - -[v2-explorer-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-lightlink/graphql -[v2-custom-lightlink]: https://graph.phoenix.lightlink.io/query/subgraphs/name/lightlink/sablier-v2-lightlink - -{/* Chain: Mainnet | Ethereum */} - -[v2-explorer-ethereum]: https://thegraph.com/explorer/subgraphs/EuZZnhFtdCGqN2Zt7EMGYDqQKNrVuhJL63KAfwvF35bL -[v2-studio-ethereum]: https://api.studio.thegraph.com/query/57079/sablier-v2/version/latest -[v2-network-ethereum]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/EuZZnhFtdCGqN2Zt7EMGYDqQKNrVuhJL63KAfwvF35bL - -{/* Chain: Optimism */} - -[v2-network-optimism]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/6e6Dvs1yDpsWDDREZRqxGi54SVdvTNzUdKpKJxniKVrp -[v2-explorer-optimism]: https://thegraph.com/explorer/subgraphs/6e6Dvs1yDpsWDDREZRqxGi54SVdvTNzUdKpKJxniKVrp -[v2-studio-optimism]: https://api.studio.thegraph.com/query/57079/sablier-v2-optimism/version/latest - -{/* Chain: Optimism Sepolia */} - -[v2-network-optimism-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/2a2JpbmBfQs78UEvQYXgweHetcZUPm9zXCjP69o5mTed -[v2-explorer-optimism-sepolia]: https://thegraph.com/explorer/subgraphs/2a2JpbmBfQs78UEvQYXgweHetcZUPm9zXCjP69o5mTed -[v2-studio-optimism-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-optimism-sepolia/version/latest - -{/* Chain: Polygon */} - -[v2-network-polygon]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/CsDNYv9XPUMP8vufuwDVKQrVhsxhzzRHezjLFFKZZbrx -[v2-explorer-polygon]: https://thegraph.com/explorer/subgraphs/CsDNYv9XPUMP8vufuwDVKQrVhsxhzzRHezjLFFKZZbrx -[v2-studio-polygon]: https://api.studio.thegraph.com/query/57079/sablier-v2-polygon/version/latest - -{/* Chain: Scroll */} - -[v2-network-scroll]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/HVcngokCByfveLwguuafrBC34xB65Ne6tpGrXHmqDSrh -[v2-explorer-scroll]: https://thegraph.com/explorer/subgraphs/HVcngokCByfveLwguuafrBC34xB65Ne6tpGrXHmqDSrh -[v2-studio-scroll]: https://api.studio.thegraph.com/query/57079/sablier-v2-scroll/version/latest - -{/* Chain: Ethereum Sepolia */} - -[v2-network-sepolia]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/3JR9ixhdUxX5oc2Yjr6jkG4XUqDd4guy8niL6AYzDKss -[v2-explorer-sepolia]: https://thegraph.com/explorer/subgraphs/3JR9ixhdUxX5oc2Yjr6jkG4XUqDd4guy8niL6AYzDKss -[v2-studio-sepolia]: https://api.studio.thegraph.com/query/57079/sablier-v2-sepolia/version/latest - -{/* Chain: zkSync */} - -[v2-network-zksync]: https://gateway-arbitrum.network.thegraph.com/api/API_KEY/subgraphs/id/GY2fGozmfZiZ3xF2MfevohLR4YGnyxGxAyxzi9zmU5bY -[v2-explorer-zksync]: https://thegraph.com/explorer/subgraphs/GY2fGozmfZiZ3xF2MfevohLR4YGnyxGxAyxzi9zmU5bY -[v2-studio-zksync]: https://api.studio.thegraph.com/query/57079/sablier-v2-zksync/version/latest - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} - -[endpoint-lockup]: https://indexer.hyperindex.xyz/53b7e25/v1/graphql - -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} -{/* --------------------------------------------------------------------------------------------------------------------------------- */} diff --git a/docs/api/lockup/_category_.json b/docs/api/lockup/_category_.json index 5196dae4..0d6f614e 100644 --- a/docs/api/lockup/_category_.json +++ b/docs/api/lockup/_category_.json @@ -1,5 +1,5 @@ { "collapsed": false, "label": "Lockup", - "position": 2 + "position": 4 } diff --git a/docs/api/lockup/envio/01-similarities.mdx b/docs/api/lockup/envio/01-similarities.mdx deleted file mode 100644 index 89595967..00000000 --- a/docs/api/lockup/envio/01-similarities.mdx +++ /dev/null @@ -1,17 +0,0 @@ ---- -id: "similarities" -sidebar_position: 1 -title: "Similarities" ---- - -# Similarities - -Envio indexers are designed to mirror the functionality and structure of the The Graph subgraphs. - -For an introduction into the Sablier primitives and our architectural choices, check out the -[Lockup subgraph](/api/lockup/the-graph/entities) before reading about the `lockup-envio` indexer. - -Similar entities are used between The Graph and Envio setups, as well as between the Lockup and Merkle deployments. - -- [Entities](/api/lockup/the-graph/entities) -- [Structure](/api/lockup/the-graph/structure) diff --git a/docs/api/lockup/envio/02-architecture.mdx b/docs/api/lockup/envio/02-architecture.mdx deleted file mode 100644 index 77bfd124..00000000 --- a/docs/api/lockup/envio/02-architecture.mdx +++ /dev/null @@ -1,58 +0,0 @@ ---- -id: "architecture" -sidebar_position: 3 -title: "Architecture" ---- - -## Preparations - -The data flow applied to this indexer is identical to the one used in the -[lockup subgraph](/api/lockup/the-graph/architecture). - -Similar to The Graph, we start by pre-configuring a set of contracts. While Envio's indexer doesn't have the same -[requirement](https://discord.com/channels/438038660412342282/438070183794573313/1153155902933831811) of pre-configuring -contracts to listen to, we'll keep this feature to ensure we can query against those entities, even if they'll be empty -at start. - -We'll ensure contracts have been initialized (see the `watcher.ts` helper) by making a call against the initializer at -the start of each method. It should only come into play within the create handlers. - -```ts title="packages/constants/.../sepolia.ts" -export let chainId = 11155111; -/** It uses the same structure as the configuration files of the subgraphs */ -... -``` - -After setting up each chain, we'll aggregate configuration to feed into the `config.yaml` all at once, as Envio uses a -multi-chain approach instead of establishing a separate endpoint for each indexed chain. Check -[`packages/constants/.../bundles`](https://github.com/sablier-labs/v2-subgraphs/blob/main/packages/constants/src/bundles) -to see how this works. to - -## Configurations - -Using this data, we'll call the `pnpm run setup` script. In turn it will: - -1. **[Setup]** Clean artifacts and older files -2. **[Template]** Convert TS files into JS for mustache to use in the next step -3. **[Template]** Use mustache to create a specific `config.yaml` (from `config.template.mustache`) using the aggregated - chain details (from `/constants/chains/index.ts`) -4. **[Codegen]** Run codegen using the files prepared above, as well as the handlers implementation - -## Running locally - -In order to run things locally, you can use the `pnpm dev` command which does all the "configuration" steps as well as -booting up the Envio dependencies and local node. Check the official Envio docs for more on this. - -## Multi-version support - -Sablier is a fast moving protocol, with a new deployment every few months. Up to this point we can already see V2.0 and -V2.1 supported by the client interface and integrators. - -To offer a backwards compatible subgraph (between Sablier Core/ Sablier Periphery **v2.0** and **v2.x**) we'll aggregate -the ABIs of the two versions. This will cause the configuration file to contain similar events between different -versions of Lockup contract. - -Different from how we handle this for [subgraphs](/api/lockup/the-graph/entities), `Lockup Linear`, `Lockup Dynamic` and -`Lockup Tranched` will be bundled under the same `Lockup` contract tracker `config.yaml`. Versions of the -protocol will be tracked separately, which is why we have `Lockup_V20` (v2.0) and `Lockup_V21` (v2.1) in our -configuration. Later on, inside the handler logic, we'll separate contracts by flavor. diff --git a/docs/api/lockup/envio/03-queries.mdx b/docs/api/lockup/envio/03-queries.mdx deleted file mode 100644 index f1dfb379..00000000 --- a/docs/api/lockup/envio/03-queries.mdx +++ /dev/null @@ -1,175 +0,0 @@ ---- -id: "queries" -sidebar_position: 4 -title: "Queries" ---- - -Building on top of the [entity structure](/api/lockup/the-graph/structure) defined earlier, here are some common GraphQL -queries for fetching data from the Sablier subgraph. - -### Recent streams - -```graphql title="The 10 most recent streams" -query getStreams { - Stream(limit: 10, distinct_on: [subgraphId], order_by: { subgraphId: desc }) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Paginated streams - -To query streams in sets/pages (and avoid edge cases where using timestamps may skip simultaneous batched streams), we -can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next streams indexed before the last seen subgraphId" -query getStreams($first: Int!, $subgraphId: numeric!) { - Stream( - limit: $first - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { subgraphId: { _lt: $subgraphId } } - ) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Streams by sender (with support for the old V2.0) - -To support both [proxy senders](/api/lockup/the-graph/structure) (case 3) and -[native senders](/api/lockup/the-graph/structure) (case 2) we query for: - -- streams where the connected account is the native sender -- streams where the connected account is the proxender - the owner of the proxy labeled as a sender - -This query includes pagination. - -:::warning - -Some queries, especially those using `OR` will potentially yield duplicate results. To make sure we only retrieve unique -streams/entities with a query, we make use of the `distinct_on` filter (and apply it on keys included in `order_by`). - -::: - -```graphql title="The next streams created by an address (natively or through a proxy)" -Stream( - limit: $first - offset: $skip - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { - _or: [ - { _and: [{ sender: {_eq: $sender} }, { subgraphId: {_lt: $subgraphId} }] } - { _and: [{ proxender: {_eq: $sender} }, { subgraphId: {_lt:$subgraphId} }] } - ] - } -) { - id - alias - category -} -``` - -### Streams by sender or recipient - -To show all streams that have an address marked as a sender (all cases) or a recipient, extend the example above to -account for the recipient aspect. - -This query includes pagination. - -```graphql title="The next streams related to an address, as a sender/proxender or recipient" -Stream( - limit: $first - offset: $skip - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { - or: [ - { _and: [{ sender: {_eq: $sender} }, { subgraphId: {_lt: $subgraphId} }] } - { _and: [{ proxender: {_eq: $sender} }, { subgraphId: {_lt: $subgraphId} }] } - { _and: [{ proxender: {_eq: $recipient} }, { subgraphId: {_lt: $subgraphId} }] } - ] - } -) { - id - alias - category - } -``` - -### Streams by filters - -The official V2 Interfaces will provide a search interface where one may query for a list of streams using the following -filters (the conditions will be combined) - -- the sender address -- the recipient address -- a list of stream identifiers - -This query includes pagination. - -```graphql title="The 'where' clause for a complex paginated search filter" -where: { - _or: [ - { - _and: [ - { chainId: { _eq: $chainId } } - { sender: { _eq: $sender } } - { subgraphId: { _lt: $subgraphId } } - ] - } - { - _and: [ - { chainId: { _eq: $chainId } } - { proxender: { _eq: $sender } } - { subgraphId: { _lt: $subgraphId } } - ] - } - { - _and: [ - { chainId: { _eq: $chainId } } - { recipient: { _eq: $recipient } } - { subgraphId: { _lt: $subgraphId } } - ] - } - ] - } -``` - -### Actions by stream - -:::tip - -To avoid writing the same entity definitions over and over again, check out Fragments. - -::: - -```graphql title="Most recent 100 stream actions such as withdrawals or transfers" -Action( - limit: 100 - distinct_on: [subgraphId] - order_by: { subgraphId: desc } - where: { stream_id: {_eq: $streamId} } -) { - id - category - stream { - ...StreamFragment - } -} -``` diff --git a/docs/api/lockup/envio/_category_.json b/docs/api/lockup/envio/_category_.json deleted file mode 100644 index 84b76022..00000000 --- a/docs/api/lockup/envio/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "Envio", - "position": 4 -} diff --git a/docs/api/lockup/graphql/01-schema.mdx b/docs/api/lockup/graphql/01-schema.mdx new file mode 100644 index 00000000..04f86835 --- /dev/null +++ b/docs/api/lockup/graphql/01-schema.mdx @@ -0,0 +1,13 @@ +--- +id: "schema" +sidebar_position: 1 +title: "Schema" +--- + +import GraphQLSchema from "../../_common/GraphQLSchema.mdx"; + + + +```graphql reference title="Sablier Lockup - GraphQL Schema Entities" +https://github.com/sablier-labs/indexers/tree/prb-refactor/src/exports/schemas/lockup.graphql +``` diff --git a/docs/api/lockup/graphql/_category_.json b/docs/api/lockup/graphql/_category_.json new file mode 100644 index 00000000..e6d0a7e0 --- /dev/null +++ b/docs/api/lockup/graphql/_category_.json @@ -0,0 +1,5 @@ +{ + "collapsed": true, + "label": "GraphQL", + "position": 2 +} diff --git a/docs/api/lockup/graphql/envio/_category_.yml b/docs/api/lockup/graphql/envio/_category_.yml new file mode 100644 index 00000000..6f563191 --- /dev/null +++ b/docs/api/lockup/graphql/envio/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Envio +position: 3 diff --git a/docs/api/lockup/graphql/envio/enums/_category_.yml b/docs/api/lockup/graphql/envio/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/lockup/graphql/envio/enums/action-select-column.mdx b/docs/api/lockup/graphql/envio/enums/action-select-column.mdx new file mode 100644 index 00000000..8b9223da --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/action-select-column.mdx @@ -0,0 +1,151 @@ +--- +id: action-select-column +title: Action_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Action" + +```graphql +enum Action_select_column { + addressA + addressB + amountA + amountB + block + category + chainId + contract_id + db_write_timestamp + fee + from + hash + id + stream_id + subgraphId + timestamp +} +``` + +### Values + +#### [Action_select_column.addressA](#) + +column name + +#### [Action_select_column.addressB](#) + +column name + +#### [Action_select_column.amountA](#) + +column name + +#### [Action_select_column.amountB](#) + +column name + +#### [Action_select_column.block](#) + +column name + +#### [Action_select_column.category](#) + +column name + +#### [Action_select_column.chainId](#) + +column name + +#### [Action_select_column.contract_id](#) + +column name + +#### [Action_select_column.db_write_timestamp](#) + +column name + +#### [Action_select_column.fee](#) + +column name + +#### [Action_select_column.from](#) + +column name + +#### [Action_select_column.hash](#) + +column name + +#### [Action_select_column.id](#) + +column name + +#### [Action_select_column.stream_id](#) + +column name + +#### [Action_select_column.subgraphId](#) + +column name + +#### [Action_select_column.timestamp](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/asset-select-column.mdx b/docs/api/lockup/graphql/envio/enums/asset-select-column.mdx new file mode 100644 index 00000000..2e8a9d97 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/asset-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: asset-select-column +title: Asset_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Asset" + +```graphql +enum Asset_select_column { + address + chainId + db_write_timestamp + decimals + id + name + symbol +} +``` + +### Values + +#### [Asset_select_column.address](#) + +column name + +#### [Asset_select_column.chainId](#) + +column name + +#### [Asset_select_column.db_write_timestamp](#) + +column name + +#### [Asset_select_column.decimals](#) + +column name + +#### [Asset_select_column.id](#) + +column name + +#### [Asset_select_column.name](#) + +column name + +#### [Asset_select_column.symbol](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/batch-select-column.mdx b/docs/api/lockup/graphql/envio/enums/batch-select-column.mdx new file mode 100644 index 00000000..753a5fbe --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/batch-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: batch-select-column +title: Batch_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Batch" + +```graphql +enum Batch_select_column { + batcher_id + db_write_timestamp + hash + id + label + size + timestamp +} +``` + +### Values + +#### [Batch_select_column.batcher_id](#) + +column name + +#### [Batch_select_column.db_write_timestamp](#) + +column name + +#### [Batch_select_column.hash](#) + +column name + +#### [Batch_select_column.id](#) + +column name + +#### [Batch_select_column.label](#) + +column name + +#### [Batch_select_column.size](#) + +column name + +#### [Batch_select_column.timestamp](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/batcher-select-column.mdx b/docs/api/lockup/graphql/envio/enums/batcher-select-column.mdx new file mode 100644 index 00000000..0199ed33 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/batcher-select-column.mdx @@ -0,0 +1,91 @@ +--- +id: batcher-select-column +title: Batcher_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Batcher" + +```graphql +enum Batcher_select_column { + address + batchIndex + db_write_timestamp + id +} +``` + +### Values + +#### [Batcher_select_column.address](#) + +column name + +#### [Batcher_select_column.batchIndex](#) + +column name + +#### [Batcher_select_column.db_write_timestamp](#) + +column name + +#### [Batcher_select_column.id](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/chain-metadata-select-column.mdx b/docs/api/lockup/graphql/envio/enums/chain-metadata-select-column.mdx new file mode 100644 index 00000000..46a6a025 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/chain-metadata-select-column.mdx @@ -0,0 +1,126 @@ +--- +id: chain-metadata-select-column +title: chain_metadata_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "chain_metadata" + +```graphql +enum chain_metadata_select_column { + block_height + chain_id + end_block + first_event_block_number + is_hyper_sync + latest_fetched_block_number + latest_processed_block + num_batches_fetched + num_events_processed + start_block + timestamp_caught_up_to_head_or_endblock +} +``` + +### Values + +#### [chain_metadata_select_column.block_height](#) + +column name + +#### [chain_metadata_select_column.chain_id](#) + +column name + +#### [chain_metadata_select_column.end_block](#) + +column name + +#### [chain_metadata_select_column.first_event_block_number](#) + +column name + +#### [chain_metadata_select_column.is_hyper_sync](#) + +column name + +#### [chain_metadata_select_column.latest_fetched_block_number](#) + +column name + +#### [chain_metadata_select_column.latest_processed_block](#) + +column name + +#### [chain_metadata_select_column.num_batches_fetched](#) + +column name + +#### [chain_metadata_select_column.num_events_processed](#) + +column name + +#### [chain_metadata_select_column.start_block](#) + +column name + +#### [chain_metadata_select_column.timestamp_caught_up_to_head_or_endblock](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/contract-select-column.mdx b/docs/api/lockup/graphql/envio/enums/contract-select-column.mdx new file mode 100644 index 00000000..e82b0aa8 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/contract-select-column.mdx @@ -0,0 +1,111 @@ +--- +id: contract-select-column +title: Contract_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Contract" + +```graphql +enum Contract_select_column { + address + admin + alias + category + chainId + db_write_timestamp + id + version +} +``` + +### Values + +#### [Contract_select_column.address](#) + +column name + +#### [Contract_select_column.admin](#) + +column name + +#### [Contract_select_column.alias](#) + +column name + +#### [Contract_select_column.category](#) + +column name + +#### [Contract_select_column.chainId](#) + +column name + +#### [Contract_select_column.db_write_timestamp](#) + +column name + +#### [Contract_select_column.id](#) + +column name + +#### [Contract_select_column.version](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx b/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx new file mode 100644 index 00000000..79a949cb --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx @@ -0,0 +1,81 @@ +--- +id: cursor-ordering +title: cursor_ordering +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +ordering argument of a cursor + +```graphql +enum cursor_ordering { + ASC + DESC +} +``` + +### Values + +#### [cursor_ordering.ASC](#) + +ascending ordering of the cursor + +#### [cursor_ordering.DESC](#) + +descending ordering of the cursor diff --git a/docs/api/lockup/graphql/envio/enums/dynamic-contract-registry-select-column.mdx b/docs/api/lockup/graphql/envio/enums/dynamic-contract-registry-select-column.mdx new file mode 100644 index 00000000..32a2bdcf --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/dynamic-contract-registry-select-column.mdx @@ -0,0 +1,121 @@ +--- +id: dynamic-contract-registry-select-column +title: dynamic_contract_registry_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "dynamic_contract_registry" + +```graphql +enum dynamic_contract_registry_select_column { + chain_id + contract_address + contract_type + id + registering_event_block_number + registering_event_block_timestamp + registering_event_contract_name + registering_event_log_index + registering_event_name + registering_event_src_address +} +``` + +### Values + +#### [dynamic_contract_registry_select_column.chain_id](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_address](#) + +column name + +#### [dynamic_contract_registry_select_column.contract_type](#) + +column name + +#### [dynamic_contract_registry_select_column.id](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_number](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_block_timestamp](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_contract_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_log_index](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_name](#) + +column name + +#### [dynamic_contract_registry_select_column.registering_event_src_address](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx b/docs/api/lockup/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx new file mode 100644 index 00000000..fdd7a95f --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx @@ -0,0 +1,86 @@ +--- +id: end-of-block-range-scanned-data-select-column +title: end_of_block_range_scanned_data_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "end_of_block_range_scanned_data" + +```graphql +enum end_of_block_range_scanned_data_select_column { + block_hash + block_number + chain_id +} +``` + +### Values + +#### [end_of_block_range_scanned_data_select_column.block_hash](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.block_number](#) + +column name + +#### [end_of_block_range_scanned_data_select_column.chain_id](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/event-sync-state-select-column.mdx b/docs/api/lockup/graphql/envio/enums/event-sync-state-select-column.mdx new file mode 100644 index 00000000..b012157b --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/event-sync-state-select-column.mdx @@ -0,0 +1,96 @@ +--- +id: event-sync-state-select-column +title: event_sync_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "event_sync_state" + +```graphql +enum event_sync_state_select_column { + block_number + block_timestamp + chain_id + is_pre_registering_dynamic_contracts + log_index +} +``` + +### Values + +#### [event_sync_state_select_column.block_number](#) + +column name + +#### [event_sync_state_select_column.block_timestamp](#) + +column name + +#### [event_sync_state_select_column.chain_id](#) + +column name + +#### [event_sync_state_select_column.is_pre_registering_dynamic_contracts](#) + +column name + +#### [event_sync_state_select_column.log_index](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/order-by.mdx b/docs/api/lockup/graphql/envio/enums/order-by.mdx new file mode 100644 index 00000000..bf80959b --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/order-by.mdx @@ -0,0 +1,101 @@ +--- +id: order-by +title: order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +column ordering options + +```graphql +enum order_by { + asc + asc_nulls_first + asc_nulls_last + desc + desc_nulls_first + desc_nulls_last +} +``` + +### Values + +#### [order_by.asc](#) + +in ascending order, nulls last + +#### [order_by.asc_nulls_first](#) + +in ascending order, nulls first + +#### [order_by.asc_nulls_last](#) + +in ascending order, nulls last + +#### [order_by.desc](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_first](#) + +in descending order, nulls first + +#### [order_by.desc_nulls_last](#) + +in descending order, nulls last diff --git a/docs/api/lockup/graphql/envio/enums/persisted-state-select-column.mdx b/docs/api/lockup/graphql/envio/enums/persisted-state-select-column.mdx new file mode 100644 index 00000000..3a716002 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/persisted-state-select-column.mdx @@ -0,0 +1,101 @@ +--- +id: persisted-state-select-column +title: persisted_state_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "persisted_state" + +```graphql +enum persisted_state_select_column { + abi_files_hash + config_hash + envio_version + handler_files_hash + id + schema_hash +} +``` + +### Values + +#### [persisted_state_select_column.abi_files_hash](#) + +column name + +#### [persisted_state_select_column.config_hash](#) + +column name + +#### [persisted_state_select_column.envio_version](#) + +column name + +#### [persisted_state_select_column.handler_files_hash](#) + +column name + +#### [persisted_state_select_column.id](#) + +column name + +#### [persisted_state_select_column.schema_hash](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/raw-events-select-column.mdx b/docs/api/lockup/graphql/envio/enums/raw-events-select-column.mdx new file mode 100644 index 00000000..a37689ff --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/raw-events-select-column.mdx @@ -0,0 +1,141 @@ +--- +id: raw-events-select-column +title: raw_events_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "raw_events" + +```graphql +enum raw_events_select_column { + block_fields + block_hash + block_number + block_timestamp + chain_id + contract_name + db_write_timestamp + event_id + event_name + log_index + params + serial + src_address + transaction_fields +} +``` + +### Values + +#### [raw_events_select_column.block_fields](#) + +column name + +#### [raw_events_select_column.block_hash](#) + +column name + +#### [raw_events_select_column.block_number](#) + +column name + +#### [raw_events_select_column.block_timestamp](#) + +column name + +#### [raw_events_select_column.chain_id](#) + +column name + +#### [raw_events_select_column.contract_name](#) + +column name + +#### [raw_events_select_column.db_write_timestamp](#) + +column name + +#### [raw_events_select_column.event_id](#) + +column name + +#### [raw_events_select_column.event_name](#) + +column name + +#### [raw_events_select_column.log_index](#) + +column name + +#### [raw_events_select_column.params](#) + +column name + +#### [raw_events_select_column.serial](#) + +column name + +#### [raw_events_select_column.src_address](#) + +column name + +#### [raw_events_select_column.transaction_fields](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/segment-select-column.mdx b/docs/api/lockup/graphql/envio/enums/segment-select-column.mdx new file mode 100644 index 00000000..201d50c0 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/segment-select-column.mdx @@ -0,0 +1,126 @@ +--- +id: segment-select-column +title: Segment_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Segment" + +```graphql +enum Segment_select_column { + amount + db_write_timestamp + endAmount + endTime + exponent + id + milestone + position + startAmount + startTime + stream_id +} +``` + +### Values + +#### [Segment_select_column.amount](#) + +column name + +#### [Segment_select_column.db_write_timestamp](#) + +column name + +#### [Segment_select_column.endAmount](#) + +column name + +#### [Segment_select_column.endTime](#) + +column name + +#### [Segment_select_column.exponent](#) + +column name + +#### [Segment_select_column.id](#) + +column name + +#### [Segment_select_column.milestone](#) + +column name + +#### [Segment_select_column.position](#) + +column name + +#### [Segment_select_column.startAmount](#) + +column name + +#### [Segment_select_column.startTime](#) + +column name + +#### [Segment_select_column.stream_id](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx b/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx new file mode 100644 index 00000000..3b152037 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx @@ -0,0 +1,276 @@ +--- +id: stream-select-column +title: Stream_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Stream" + +```graphql +enum Stream_select_column { + alias + asset_id + batch_id + brokerFeeAmount + cancelable + canceled + canceledAction_id + canceledTime + category + chainId + cliff + cliffAmount + cliffTime + contract_id + db_write_timestamp + depositAmount + duration + endTime + funder + hash + id + initial + initialAmount + intactAmount + parties + position + protocolFeeAmount + proxender + proxied + recipient + renounceAction_id + renounceTime + sender + shape + startTime + subgraphId + timestamp + tokenId + transferable + version + withdrawnAmount +} +``` + +### Values + +#### [Stream_select_column.alias](#) + +column name + +#### [Stream_select_column.asset_id](#) + +column name + +#### [Stream_select_column.batch_id](#) + +column name + +#### [Stream_select_column.brokerFeeAmount](#) + +column name + +#### [Stream_select_column.cancelable](#) + +column name + +#### [Stream_select_column.canceled](#) + +column name + +#### [Stream_select_column.canceledAction_id](#) + +column name + +#### [Stream_select_column.canceledTime](#) + +column name + +#### [Stream_select_column.category](#) + +column name + +#### [Stream_select_column.chainId](#) + +column name + +#### [Stream_select_column.cliff](#) + +column name + +#### [Stream_select_column.cliffAmount](#) + +column name + +#### [Stream_select_column.cliffTime](#) + +column name + +#### [Stream_select_column.contract_id](#) + +column name + +#### [Stream_select_column.db_write_timestamp](#) + +column name + +#### [Stream_select_column.depositAmount](#) + +column name + +#### [Stream_select_column.duration](#) + +column name + +#### [Stream_select_column.endTime](#) + +column name + +#### [Stream_select_column.funder](#) + +column name + +#### [Stream_select_column.hash](#) + +column name + +#### [Stream_select_column.id](#) + +column name + +#### [Stream_select_column.initial](#) + +column name + +#### [Stream_select_column.initialAmount](#) + +column name + +#### [Stream_select_column.intactAmount](#) + +column name + +#### [Stream_select_column.parties](#) + +column name + +#### [Stream_select_column.position](#) + +column name + +#### [Stream_select_column.protocolFeeAmount](#) + +column name + +#### [Stream_select_column.proxender](#) + +column name + +#### [Stream_select_column.proxied](#) + +column name + +#### [Stream_select_column.recipient](#) + +column name + +#### [Stream_select_column.renounceAction_id](#) + +column name + +#### [Stream_select_column.renounceTime](#) + +column name + +#### [Stream_select_column.sender](#) + +column name + +#### [Stream_select_column.shape](#) + +column name + +#### [Stream_select_column.startTime](#) + +column name + +#### [Stream_select_column.subgraphId](#) + +column name + +#### [Stream_select_column.timestamp](#) + +column name + +#### [Stream_select_column.tokenId](#) + +column name + +#### [Stream_select_column.transferable](#) + +column name + +#### [Stream_select_column.version](#) + +column name + +#### [Stream_select_column.withdrawnAmount](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/tranche-select-column.mdx b/docs/api/lockup/graphql/envio/enums/tranche-select-column.mdx new file mode 100644 index 00000000..d3521de4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/tranche-select-column.mdx @@ -0,0 +1,121 @@ +--- +id: tranche-select-column +title: Tranche_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Tranche" + +```graphql +enum Tranche_select_column { + amount + db_write_timestamp + endAmount + endTime + id + position + startAmount + startTime + stream_id + timestamp +} +``` + +### Values + +#### [Tranche_select_column.amount](#) + +column name + +#### [Tranche_select_column.db_write_timestamp](#) + +column name + +#### [Tranche_select_column.endAmount](#) + +column name + +#### [Tranche_select_column.endTime](#) + +column name + +#### [Tranche_select_column.id](#) + +column name + +#### [Tranche_select_column.position](#) + +column name + +#### [Tranche_select_column.startAmount](#) + +column name + +#### [Tranche_select_column.startTime](#) + +column name + +#### [Tranche_select_column.stream_id](#) + +column name + +#### [Tranche_select_column.timestamp](#) + +column name diff --git a/docs/api/lockup/graphql/envio/enums/watcher-select-column.mdx b/docs/api/lockup/graphql/envio/enums/watcher-select-column.mdx new file mode 100644 index 00000000..c50afb8b --- /dev/null +++ b/docs/api/lockup/graphql/envio/enums/watcher-select-column.mdx @@ -0,0 +1,106 @@ +--- +id: watcher-select-column +title: Watcher_select_column +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +select columns of table "Watcher" + +```graphql +enum Watcher_select_column { + actionIndex + chainId + db_write_timestamp + id + initialized + logs + streamIndex +} +``` + +### Values + +#### [Watcher_select_column.actionIndex](#) + +column name + +#### [Watcher_select_column.chainId](#) + +column name + +#### [Watcher_select_column.db_write_timestamp](#) + +column name + +#### [Watcher_select_column.id](#) + +column name + +#### [Watcher_select_column.initialized](#) + +column name + +#### [Watcher_select_column.logs](#) + +column name + +#### [Watcher_select_column.streamIndex](#) + +column name diff --git a/docs/api/lockup/graphql/envio/graphql-overview.md b/docs/api/lockup/graphql/envio/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/lockup/graphql/envio/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/lockup/graphql/envio/inputs/_category_.yml b/docs/api/lockup/graphql/envio/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/lockup/graphql/envio/inputs/action-aggregate-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-aggregate-order-by.mdx new file mode 100644 index 00000000..4b26cb45 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: action-aggregate-order-by +title: Action_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Action" + +```graphql +input Action_aggregate_order_by { + avg: Action_avg_order_by + count: order_by + max: Action_max_order_by + min: Action_min_order_by + stddev: Action_stddev_order_by + stddev_pop: Action_stddev_pop_order_by + stddev_samp: Action_stddev_samp_order_by + sum: Action_sum_order_by + var_pop: Action_var_pop_order_by + var_samp: Action_var_samp_order_by + variance: Action_variance_order_by +} +``` + +### Fields + +#### [Action_aggregate_order_by.avg](#)[Action_avg_order_by](/docs/api/lockup/graphql/envio/inputs/action-avg-order-by.mdx) + +#### [Action_aggregate_order_by.count](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_aggregate_order_by.max](#)[Action_max_order_by](/docs/api/lockup/graphql/envio/inputs/action-max-order-by.mdx) + +#### [Action_aggregate_order_by.min](#)[Action_min_order_by](/docs/api/lockup/graphql/envio/inputs/action-min-order-by.mdx) + +#### [Action_aggregate_order_by.stddev](#)[Action_stddev_order_by](/docs/api/lockup/graphql/envio/inputs/action-stddev-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_pop](#)[Action_stddev_pop_order_by](/docs/api/lockup/graphql/envio/inputs/action-stddev-pop-order-by.mdx) + +#### [Action_aggregate_order_by.stddev_samp](#)[Action_stddev_samp_order_by](/docs/api/lockup/graphql/envio/inputs/action-stddev-samp-order-by.mdx) + +#### [Action_aggregate_order_by.sum](#)[Action_sum_order_by](/docs/api/lockup/graphql/envio/inputs/action-sum-order-by.mdx) + +#### [Action_aggregate_order_by.var_pop](#)[Action_var_pop_order_by](/docs/api/lockup/graphql/envio/inputs/action-var-pop-order-by.mdx) + +#### [Action_aggregate_order_by.var_samp](#)[Action_var_samp_order_by](/docs/api/lockup/graphql/envio/inputs/action-var-samp-order-by.mdx) + +#### [Action_aggregate_order_by.variance](#)[Action_variance_order_by](/docs/api/lockup/graphql/envio/inputs/action-variance-order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-avg-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-avg-order-by.mdx new file mode 100644 index 00000000..4f725f36 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-avg-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-avg-order-by +title: Action_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Action" + +```graphql +input Action_avg_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_avg_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_avg_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx new file mode 100644 index 00000000..c29b7428 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx @@ -0,0 +1,134 @@ +--- +id: action-bool-exp +title: Action_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Action". All fields are combined with a logical 'AND'. + +```graphql +input Action_bool_exp { + _and: [Action_bool_exp!] + _not: Action_bool_exp + _or: [Action_bool_exp!] + addressA: String_comparison_exp + addressB: String_comparison_exp + amountA: numeric_comparison_exp + amountB: numeric_comparison_exp + block: numeric_comparison_exp + category: actioncategory_comparison_exp + chainId: numeric_comparison_exp + contract: Contract_bool_exp + contract_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + fee: numeric_comparison_exp + from: String_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + stream: Stream_bool_exp + stream_id: String_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Action_bool_exp.\_and](#)[[Action_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_not](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.\_or](#)[[Action_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Action_bool_exp.addressA](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.addressB](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.amountA](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.amountB](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.block](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.category](#)[actioncategory_comparison_exp](/docs/api/lockup/graphql/envio/inputs/actioncategory-comparison-exp.mdx) + +#### [Action_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.contract](#)[Contract_bool_exp](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Action_bool_exp.contract_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Action_bool_exp.fee](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.from](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.stream](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Action_bool_exp.stream_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Action_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Action_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-max-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-max-order-by.mdx new file mode 100644 index 00000000..1834a802 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-max-order-by.mdx @@ -0,0 +1,119 @@ +--- +id: action-max-order-by +title: Action_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Action" + +```graphql +input Action_max_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_max_order_by.addressA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.addressB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.from](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_max_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-min-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-min-order-by.mdx new file mode 100644 index 00000000..4be1b9bf --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-min-order-by.mdx @@ -0,0 +1,119 @@ +--- +id: action-min-order-by +title: Action_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Action" + +```graphql +input Action_min_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_min_order_by.addressA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.addressB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.from](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_min_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx new file mode 100644 index 00000000..e409531b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: action-order-by +title: Action_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Action". + +```graphql +input Action_order_by { + addressA: order_by + addressB: order_by + amountA: order_by + amountB: order_by + block: order_by + category: order_by + chainId: order_by + contract: Contract_order_by + contract_id: order_by + db_write_timestamp: order_by + fee: order_by + from: order_by + hash: order_by + id: order_by + stream: Stream_order_by + stream_id: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_order_by.addressA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.addressB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.contract](#)[Contract_order_by](/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx) + +#### [Action_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.from](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.stream](#)[Stream_order_by](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +#### [Action_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-stddev-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-stddev-order-by.mdx new file mode 100644 index 00000000..e003c839 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-stddev-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-order-by +title: Action_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Action" + +```graphql +input Action_stddev_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-stddev-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-stddev-pop-order-by.mdx new file mode 100644 index 00000000..0cc3d6a9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-stddev-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-pop-order-by +title: Action_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Action" + +```graphql +input Action_stddev_pop_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_pop_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-stddev-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-stddev-samp-order-by.mdx new file mode 100644 index 00000000..95d46d57 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-stddev-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-stddev-samp-order-by +title: Action_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Action" + +```graphql +input Action_stddev_samp_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_stddev_samp_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-input.mdx new file mode 100644 index 00000000..7e0aebef --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: action-stream-cursor-input +title: Action_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Action" + +```graphql +input Action_stream_cursor_input { + initial_value: Action_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Action_stream_cursor_input.initial_value](#)[Action_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Action_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-value-input.mdx new file mode 100644 index 00000000..e68d26de --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-stream-cursor-value-input.mdx @@ -0,0 +1,119 @@ +--- +id: action-stream-cursor-value-input +title: Action_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Action_stream_cursor_value_input { + addressA: String + addressB: String + amountA: numeric + amountB: numeric + block: numeric + category: actioncategory + chainId: numeric + contract_id: String + db_write_timestamp: timestamp + fee: numeric + from: String + hash: String + id: String + stream_id: String + subgraphId: numeric + timestamp: numeric +} +``` + +### Fields + +#### [Action_stream_cursor_value_input.addressA](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.addressB](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.amountA](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.amountB](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.block](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.category](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [Action_stream_cursor_value_input.chainId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.contract_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Action_stream_cursor_value_input.fee](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.from](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.stream_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-sum-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-sum-order-by.mdx new file mode 100644 index 00000000..68b8303d --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-sum-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-sum-order-by +title: Action_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Action" + +```graphql +input Action_sum_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_sum_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_sum_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-var-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-var-pop-order-by.mdx new file mode 100644 index 00000000..b3ab44ac --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-var-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-var-pop-order-by +title: Action_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Action" + +```graphql +input Action_var_pop_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_pop_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-var-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-var-samp-order-by.mdx new file mode 100644 index 00000000..c69cc8ef --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-var-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-var-samp-order-by +title: Action_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Action" + +```graphql +input Action_var_samp_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_var_samp_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_var_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/action-variance-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/action-variance-order-by.mdx new file mode 100644 index 00000000..1f4f4dcd --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/action-variance-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: action-variance-order-by +title: Action_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Action" + +```graphql +input Action_variance_order_by { + amountA: order_by + amountB: order_by + block: order_by + chainId: order_by + fee: order_by + subgraphId: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Action_variance_order_by.amountA](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.amountB](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.fee](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Action_variance_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/actioncategory-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/actioncategory-comparison-exp.mdx new file mode 100644 index 00000000..1a1f9b5a --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/actioncategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: actioncategory-comparison-exp +title: actioncategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "actioncategory". All fields are combined with logical 'AND'. + +```graphql +input actioncategory_comparison_exp { + _eq: actioncategory + _gt: actioncategory + _gte: actioncategory + _in: [actioncategory!] + _is_null: Boolean + _lt: actioncategory + _lte: actioncategory + _neq: actioncategory + _nin: [actioncategory!] +} +``` + +### Fields + +#### [actioncategory_comparison_exp.\_eq](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gt](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_gte](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_in](#)[[actioncategory!]](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [actioncategory_comparison_exp.\_lt](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_lte](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_neq](#)[actioncategory](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [actioncategory_comparison_exp.\_nin](#)[[actioncategory!]](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx new file mode 100644 index 00000000..8056d459 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx @@ -0,0 +1,104 @@ +--- +id: asset-bool-exp +title: Asset_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Asset". All fields are combined with a logical 'AND'. + +```graphql +input Asset_bool_exp { + _and: [Asset_bool_exp!] + _not: Asset_bool_exp + _or: [Asset_bool_exp!] + address: String_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + decimals: numeric_comparison_exp + id: String_comparison_exp + name: String_comparison_exp + streams: Stream_bool_exp + symbol: String_comparison_exp +} +``` + +### Fields + +#### [Asset_bool_exp.\_and](#)[[Asset_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_not](#)[Asset_bool_exp](/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.\_or](#)[[Asset_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Asset_bool_exp.address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Asset_bool_exp.decimals](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Asset_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.name](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Asset_bool_exp.streams](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Asset_bool_exp.symbol](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/asset-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/asset-order-by.mdx new file mode 100644 index 00000000..578d112f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/asset-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: asset-order-by +title: Asset_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Asset". + +```graphql +input Asset_order_by { + address: order_by + chainId: order_by + db_write_timestamp: order_by + decimals: order_by + id: order_by + name: order_by + streams_aggregate: Stream_aggregate_order_by + symbol: order_by +} +``` + +### Fields + +#### [Asset_order_by.address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.decimals](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.name](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Asset_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Asset_order_by.symbol](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-input.mdx new file mode 100644 index 00000000..04f7bb04 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: asset-stream-cursor-input +title: Asset_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Asset" + +```graphql +input Asset_stream_cursor_input { + initial_value: Asset_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Asset_stream_cursor_input.initial_value](#)[Asset_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Asset_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-value-input.mdx new file mode 100644 index 00000000..fbe4d819 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/asset-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: asset-stream-cursor-value-input +title: Asset_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Asset_stream_cursor_value_input { + address: String + chainId: numeric + db_write_timestamp: timestamp + decimals: numeric + id: String + name: String + symbol: String +} +``` + +### Fields + +#### [Asset_stream_cursor_value_input.address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.chainId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Asset_stream_cursor_value_input.decimals](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Asset_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.name](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset_stream_cursor_value_input.symbol](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-aggregate-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-aggregate-order-by.mdx new file mode 100644 index 00000000..bec25592 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: batch-aggregate-order-by +title: Batch_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Batch" + +```graphql +input Batch_aggregate_order_by { + avg: Batch_avg_order_by + count: order_by + max: Batch_max_order_by + min: Batch_min_order_by + stddev: Batch_stddev_order_by + stddev_pop: Batch_stddev_pop_order_by + stddev_samp: Batch_stddev_samp_order_by + sum: Batch_sum_order_by + var_pop: Batch_var_pop_order_by + var_samp: Batch_var_samp_order_by + variance: Batch_variance_order_by +} +``` + +### Fields + +#### [Batch_aggregate_order_by.avg](#)[Batch_avg_order_by](/docs/api/lockup/graphql/envio/inputs/batch-avg-order-by.mdx) + +#### [Batch_aggregate_order_by.count](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_aggregate_order_by.max](#)[Batch_max_order_by](/docs/api/lockup/graphql/envio/inputs/batch-max-order-by.mdx) + +#### [Batch_aggregate_order_by.min](#)[Batch_min_order_by](/docs/api/lockup/graphql/envio/inputs/batch-min-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev](#)[Batch_stddev_order_by](/docs/api/lockup/graphql/envio/inputs/batch-stddev-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev_pop](#)[Batch_stddev_pop_order_by](/docs/api/lockup/graphql/envio/inputs/batch-stddev-pop-order-by.mdx) + +#### [Batch_aggregate_order_by.stddev_samp](#)[Batch_stddev_samp_order_by](/docs/api/lockup/graphql/envio/inputs/batch-stddev-samp-order-by.mdx) + +#### [Batch_aggregate_order_by.sum](#)[Batch_sum_order_by](/docs/api/lockup/graphql/envio/inputs/batch-sum-order-by.mdx) + +#### [Batch_aggregate_order_by.var_pop](#)[Batch_var_pop_order_by](/docs/api/lockup/graphql/envio/inputs/batch-var-pop-order-by.mdx) + +#### [Batch_aggregate_order_by.var_samp](#)[Batch_var_samp_order_by](/docs/api/lockup/graphql/envio/inputs/batch-var-samp-order-by.mdx) + +#### [Batch_aggregate_order_by.variance](#)[Batch_variance_order_by](/docs/api/lockup/graphql/envio/inputs/batch-variance-order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-avg-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-avg-order-by.mdx new file mode 100644 index 00000000..0563d26f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-avg-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-avg-order-by +title: Batch_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Batch" + +```graphql +input Batch_avg_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_avg_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_avg_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx new file mode 100644 index 00000000..730e6e76 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx @@ -0,0 +1,107 @@ +--- +id: batch-bool-exp +title: Batch_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Batch". All fields are combined with a logical 'AND'. + +```graphql +input Batch_bool_exp { + _and: [Batch_bool_exp!] + _not: Batch_bool_exp + _or: [Batch_bool_exp!] + batcher: Batcher_bool_exp + batcher_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + label: String_comparison_exp + size: numeric_comparison_exp + streams: Stream_bool_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Batch_bool_exp.\_and](#)[[Batch_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.\_not](#)[Batch_bool_exp](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.\_or](#)[[Batch_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batch_bool_exp.batcher](#)[Batcher_bool_exp](/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batch_bool_exp.batcher_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Batch_bool_exp.hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.label](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batch_bool_exp.size](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Batch_bool_exp.streams](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Batch_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-max-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-max-order-by.mdx new file mode 100644 index 00000000..b335a95e --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-max-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: batch-max-order-by +title: Batch_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Batch" + +```graphql +input Batch_max_order_by { + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_max_order_by.batcher_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.label](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_max_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-min-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-min-order-by.mdx new file mode 100644 index 00000000..f6f94ea2 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-min-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: batch-min-order-by +title: Batch_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Batch" + +```graphql +input Batch_min_order_by { + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_min_order_by.batcher_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.label](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_min_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx new file mode 100644 index 00000000..b5d1d727 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx @@ -0,0 +1,98 @@ +--- +id: batch-order-by +title: Batch_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Batch". + +```graphql +input Batch_order_by { + batcher: Batcher_order_by + batcher_id: order_by + db_write_timestamp: order_by + hash: order_by + id: order_by + label: order_by + size: order_by + streams_aggregate: Stream_aggregate_order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_order_by.batcher](#)[Batcher_order_by](/docs/api/lockup/graphql/envio/inputs/batcher-order-by.mdx) + +#### [Batch_order_by.batcher_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.label](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Batch_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-stddev-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-stddev-order-by.mdx new file mode 100644 index 00000000..f7ab7b0e --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-stddev-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-order-by +title: Batch_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Batch" + +```graphql +input Batch_stddev_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-stddev-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-stddev-pop-order-by.mdx new file mode 100644 index 00000000..ee2ac69b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-stddev-pop-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-pop-order-by +title: Batch_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Batch" + +```graphql +input Batch_stddev_pop_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_pop_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-stddev-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-stddev-samp-order-by.mdx new file mode 100644 index 00000000..8a48f9b6 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-stddev-samp-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-stddev-samp-order-by +title: Batch_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Batch" + +```graphql +input Batch_stddev_samp_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_stddev_samp_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-input.mdx new file mode 100644 index 00000000..2b4494fc --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: batch-stream-cursor-input +title: Batch_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Batch" + +```graphql +input Batch_stream_cursor_input { + initial_value: Batch_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Batch_stream_cursor_input.initial_value](#)[Batch_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Batch_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-value-input.mdx new file mode 100644 index 00000000..01da7b99 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: batch-stream-cursor-value-input +title: Batch_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Batch_stream_cursor_value_input { + batcher_id: String + db_write_timestamp: timestamp + hash: String + id: String + label: String + size: numeric + timestamp: numeric +} +``` + +### Fields + +#### [Batch_stream_cursor_value_input.batcher_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Batch_stream_cursor_value_input.hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.label](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch_stream_cursor_value_input.size](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Batch_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-sum-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-sum-order-by.mdx new file mode 100644 index 00000000..88f20a8d --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-sum-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-sum-order-by +title: Batch_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Batch" + +```graphql +input Batch_sum_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_sum_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_sum_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-var-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-var-pop-order-by.mdx new file mode 100644 index 00000000..450f9562 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-var-pop-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-var-pop-order-by +title: Batch_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Batch" + +```graphql +input Batch_var_pop_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_var_pop_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_var_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-var-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-var-samp-order-by.mdx new file mode 100644 index 00000000..384f83f1 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-var-samp-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-var-samp-order-by +title: Batch_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Batch" + +```graphql +input Batch_var_samp_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_var_samp_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_var_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batch-variance-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batch-variance-order-by.mdx new file mode 100644 index 00000000..094df3b1 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batch-variance-order-by.mdx @@ -0,0 +1,77 @@ +--- +id: batch-variance-order-by +title: Batch_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Batch" + +```graphql +input Batch_variance_order_by { + size: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Batch_variance_order_by.size](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batch_variance_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx new file mode 100644 index 00000000..1fb3373b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx @@ -0,0 +1,95 @@ +--- +id: batcher-bool-exp +title: Batcher_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Batcher". All fields are combined with a logical 'AND'. + +```graphql +input Batcher_bool_exp { + _and: [Batcher_bool_exp!] + _not: Batcher_bool_exp + _or: [Batcher_bool_exp!] + address: String_comparison_exp + batchIndex: numeric_comparison_exp + batches: Batch_bool_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp +} +``` + +### Fields + +#### [Batcher_bool_exp.\_and](#)[[Batcher_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.\_not](#)[Batcher_bool_exp](/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.\_or](#)[[Batcher_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx) + +#### [Batcher_bool_exp.address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Batcher_bool_exp.batchIndex](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Batcher_bool_exp.batches](#)[Batch_bool_exp](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Batcher_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Batcher_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batcher-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/batcher-order-by.mdx new file mode 100644 index 00000000..fd24d488 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batcher-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: batcher-order-by +title: Batcher_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Batcher". + +```graphql +input Batcher_order_by { + address: order_by + batchIndex: order_by + batches_aggregate: Batch_aggregate_order_by + db_write_timestamp: order_by + id: order_by +} +``` + +### Fields + +#### [Batcher_order_by.address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.batchIndex](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.batches_aggregate](#)[Batch_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/batch-aggregate-order-by.mdx) + +#### [Batcher_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Batcher_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-input.mdx new file mode 100644 index 00000000..c3df2673 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: batcher-stream-cursor-input +title: Batcher_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Batcher" + +```graphql +input Batcher_stream_cursor_input { + initial_value: Batcher_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Batcher_stream_cursor_input.initial_value](#)[Batcher_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Batcher_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx new file mode 100644 index 00000000..a37ca860 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/batcher-stream-cursor-value-input.mdx @@ -0,0 +1,83 @@ +--- +id: batcher-stream-cursor-value-input +title: Batcher_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Batcher_stream_cursor_value_input { + address: String + batchIndex: numeric + db_write_timestamp: timestamp + id: String +} +``` + +### Fields + +#### [Batcher_stream_cursor_value_input.address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batcher_stream_cursor_value_input.batchIndex](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Batcher_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Batcher_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx new file mode 100644 index 00000000..e587b28c --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: boolean-comparison-exp +title: Boolean_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. + +```graphql +input Boolean_comparison_exp { + _eq: Boolean + _gt: Boolean + _gte: Boolean + _in: [Boolean!] + _is_null: Boolean + _lt: Boolean + _lte: Boolean + _neq: Boolean + _nin: [Boolean!] +} +``` + +### Fields + +#### [Boolean_comparison_exp.\_eq](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gt](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_gte](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_in](#)[[Boolean!]](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lt](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_lte](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_neq](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Boolean_comparison_exp.\_nin](#)[[Boolean!]](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx new file mode 100644 index 00000000..51d90d44 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx @@ -0,0 +1,113 @@ +--- +id: chain-metadata-bool-exp +title: chain_metadata_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "chain_metadata". All fields are combined with a logical 'AND'. + +```graphql +input chain_metadata_bool_exp { + _and: [chain_metadata_bool_exp!] + _not: chain_metadata_bool_exp + _or: [chain_metadata_bool_exp!] + block_height: Int_comparison_exp + chain_id: Int_comparison_exp + end_block: Int_comparison_exp + first_event_block_number: Int_comparison_exp + is_hyper_sync: Boolean_comparison_exp + latest_fetched_block_number: Int_comparison_exp + latest_processed_block: Int_comparison_exp + num_batches_fetched: Int_comparison_exp + num_events_processed: Int_comparison_exp + start_block: Int_comparison_exp + timestamp_caught_up_to_head_or_endblock: timestamptz_comparison_exp +} +``` + +### Fields + +#### [chain_metadata_bool_exp.\_and](#)[[chain_metadata_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_not](#)[chain_metadata_bool_exp](/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.\_or](#)[[chain_metadata_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +#### [chain_metadata_bool_exp.block_height](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.end_block](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.first_event_block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.is_hyper_sync](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_fetched_block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.latest_processed_block](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_batches_fetched](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.num_events_processed](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.start_block](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [chain_metadata_bool_exp.timestamp_caught_up_to_head_or_endblock](#)[timestamptz_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamptz-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/chain-metadata-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/chain-metadata-order-by.mdx new file mode 100644 index 00000000..eda3fa65 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/chain-metadata-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-order-by +title: chain_metadata_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "chain_metadata". + +```graphql +input chain_metadata_order_by { + block_height: order_by + chain_id: order_by + end_block: order_by + first_event_block_number: order_by + is_hyper_sync: order_by + latest_fetched_block_number: order_by + latest_processed_block: order_by + num_batches_fetched: order_by + num_events_processed: order_by + start_block: order_by + timestamp_caught_up_to_head_or_endblock: order_by +} +``` + +### Fields + +#### [chain_metadata_order_by.block_height](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.chain_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.end_block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.first_event_block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.is_hyper_sync](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_fetched_block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.latest_processed_block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_batches_fetched](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.num_events_processed](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.start_block](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [chain_metadata_order_by.timestamp_caught_up_to_head_or_endblock](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx new file mode 100644 index 00000000..c493d7d2 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: chain-metadata-stream-cursor-input +title: chain_metadata_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "chain_metadata" + +```graphql +input chain_metadata_stream_cursor_input { + initial_value: chain_metadata_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_input.initial_value](#)[chain_metadata_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [chain_metadata_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx new file mode 100644 index 00000000..4f18c1d1 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/chain-metadata-stream-cursor-value-input.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata-stream-cursor-value-input +title: chain_metadata_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input chain_metadata_stream_cursor_value_input { + block_height: Int + chain_id: Int + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean + latest_fetched_block_number: Int + latest_processed_block: Int + num_batches_fetched: Int + num_events_processed: Int + start_block: Int + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata_stream_cursor_value_input.block_height](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.chain_id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.end_block](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.first_event_block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.is_hyper_sync](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_fetched_block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.latest_processed_block](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_batches_fetched](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.num_events_processed](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.start_block](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata_stream_cursor_value_input.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx new file mode 100644 index 00000000..51e7b20f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx @@ -0,0 +1,110 @@ +--- +id: contract-bool-exp +title: Contract_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Contract". All fields are combined with a logical 'AND'. + +```graphql +input Contract_bool_exp { + _and: [Contract_bool_exp!] + _not: Contract_bool_exp + _or: [Contract_bool_exp!] + actions: Action_bool_exp + address: String_comparison_exp + admin: String_comparison_exp + alias: String_comparison_exp + category: contractcategory_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + streams: Stream_bool_exp + version: String_comparison_exp +} +``` + +### Fields + +#### [Contract_bool_exp.\_and](#)[[Contract_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.\_not](#)[Contract_bool_exp](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.\_or](#)[[Contract_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Contract_bool_exp.actions](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Contract_bool_exp.address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.admin](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.alias](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.category](#)[contractcategory_comparison_exp](/docs/api/lockup/graphql/envio/inputs/contractcategory-comparison-exp.mdx) + +#### [Contract_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Contract_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Contract_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Contract_bool_exp.streams](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Contract_bool_exp.version](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx new file mode 100644 index 00000000..35e754c4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: contract-order-by +title: Contract_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Contract". + +```graphql +input Contract_order_by { + actions_aggregate: Action_aggregate_order_by + address: order_by + admin: order_by + alias: order_by + category: order_by + chainId: order_by + db_write_timestamp: order_by + id: order_by + streams_aggregate: Stream_aggregate_order_by + version: order_by +} +``` + +### Fields + +#### [Contract_order_by.actions_aggregate](#)[Action_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/action-aggregate-order-by.mdx) + +#### [Contract_order_by.address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.admin](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.alias](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Contract_order_by.streams_aggregate](#)[Stream_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx) + +#### [Contract_order_by.version](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-input.mdx new file mode 100644 index 00000000..2c2bf5a9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: contract-stream-cursor-input +title: Contract_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Contract" + +```graphql +input Contract_stream_cursor_input { + initial_value: Contract_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Contract_stream_cursor_input.initial_value](#)[Contract_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Contract_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-value-input.mdx new file mode 100644 index 00000000..26e0449a --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contract-stream-cursor-value-input.mdx @@ -0,0 +1,95 @@ +--- +id: contract-stream-cursor-value-input +title: Contract_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Contract_stream_cursor_value_input { + address: String + admin: String + alias: String + category: contractcategory + chainId: numeric + db_write_timestamp: timestamp + id: String + version: String +} +``` + +### Fields + +#### [Contract_stream_cursor_value_input.address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.admin](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.alias](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.category](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [Contract_stream_cursor_value_input.chainId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Contract_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Contract_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract_stream_cursor_value_input.version](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/contract-type-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/contract-type-comparison-exp.mdx new file mode 100644 index 00000000..f67f621c --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contract-type-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: contract-type-comparison-exp +title: contract_type_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "contract_type". All fields are combined with logical 'AND'. + +```graphql +input contract_type_comparison_exp { + _eq: contract_type + _gt: contract_type + _gte: contract_type + _in: [contract_type!] + _is_null: Boolean + _lt: contract_type + _lte: contract_type + _neq: contract_type + _nin: [contract_type!] +} +``` + +### Fields + +#### [contract_type_comparison_exp.\_eq](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gt](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_gte](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_in](#)[[contract_type!]](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [contract_type_comparison_exp.\_lt](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_lte](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_neq](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [contract_type_comparison_exp.\_nin](#)[[contract_type!]](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/contractcategory-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/contractcategory-comparison-exp.mdx new file mode 100644 index 00000000..98a54607 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/contractcategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: contractcategory-comparison-exp +title: contractcategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "contractcategory". All fields are combined with logical 'AND'. + +```graphql +input contractcategory_comparison_exp { + _eq: contractcategory + _gt: contractcategory + _gte: contractcategory + _in: [contractcategory!] + _is_null: Boolean + _lt: contractcategory + _lte: contractcategory + _neq: contractcategory + _nin: [contractcategory!] +} +``` + +### Fields + +#### [contractcategory_comparison_exp.\_eq](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_gt](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_gte](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_in](#)[[contractcategory!]](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [contractcategory_comparison_exp.\_lt](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_lte](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_neq](#)[contractcategory](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [contractcategory_comparison_exp.\_nin](#)[[contractcategory!]](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx new file mode 100644 index 00000000..b33d9093 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx @@ -0,0 +1,110 @@ +--- +id: dynamic-contract-registry-bool-exp +title: dynamic_contract_registry_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "dynamic_contract_registry". All fields are combined with a logical 'AND'. + +```graphql +input dynamic_contract_registry_bool_exp { + _and: [dynamic_contract_registry_bool_exp!] + _not: dynamic_contract_registry_bool_exp + _or: [dynamic_contract_registry_bool_exp!] + chain_id: Int_comparison_exp + contract_address: String_comparison_exp + contract_type: contract_type_comparison_exp + id: String_comparison_exp + registering_event_block_number: Int_comparison_exp + registering_event_block_timestamp: Int_comparison_exp + registering_event_contract_name: String_comparison_exp + registering_event_log_index: Int_comparison_exp + registering_event_name: String_comparison_exp + registering_event_src_address: String_comparison_exp +} +``` + +### Fields + +#### [dynamic_contract_registry_bool_exp.\_and](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_not](#)[dynamic_contract_registry_bool_exp](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.\_or](#)[[dynamic_contract_registry_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.contract_type](#)[contract_type_comparison_exp](/docs/api/lockup/graphql/envio/inputs/contract-type-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_block_timestamp](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_contract_name](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_log_index](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_name](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [dynamic_contract_registry_bool_exp.registering_event_src_address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx new file mode 100644 index 00000000..30bca5ea --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-order-by +title: dynamic_contract_registry_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "dynamic_contract_registry". + +```graphql +input dynamic_contract_registry_order_by { + chain_id: order_by + contract_address: order_by + contract_type: order_by + id: order_by + registering_event_block_number: order_by + registering_event_block_timestamp: order_by + registering_event_contract_name: order_by + registering_event_log_index: order_by + registering_event_name: order_by + registering_event_src_address: order_by +} +``` + +### Fields + +#### [dynamic_contract_registry_order_by.chain_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.contract_type](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_block_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_contract_name](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_log_index](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_name](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [dynamic_contract_registry_order_by.registering_event_src_address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx new file mode 100644 index 00000000..ba6a6673 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: dynamic-contract-registry-stream-cursor-input +title: dynamic_contract_registry_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "dynamic_contract_registry" + +```graphql +input dynamic_contract_registry_stream_cursor_input { + initial_value: dynamic_contract_registry_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_input.initial_value](#)[dynamic_contract_registry_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [dynamic_contract_registry_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx new file mode 100644 index 00000000..62a62890 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-stream-cursor-value-input.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry-stream-cursor-value-input +title: dynamic_contract_registry_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input dynamic_contract_registry_stream_cursor_value_input { + chain_id: Int + contract_address: String + contract_type: contract_type + id: String + registering_event_block_number: Int + registering_event_block_timestamp: Int + registering_event_contract_name: String + registering_event_log_index: Int + registering_event_name: String + registering_event_src_address: String +} +``` + +### Fields + +#### [dynamic_contract_registry_stream_cursor_value_input.chain_id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.contract_type](#)[contract_type](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_block_timestamp](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_contract_name](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_log_index](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_name](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry_stream_cursor_value_input.registering_event_src_address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx new file mode 100644 index 00000000..5bcb5207 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx @@ -0,0 +1,89 @@ +--- +id: end-of-block-range-scanned-data-bool-exp +title: end_of_block_range_scanned_data_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "end_of_block_range_scanned_data". All fields are combined with a logical 'AND'. + +```graphql +input end_of_block_range_scanned_data_bool_exp { + _and: [end_of_block_range_scanned_data_bool_exp!] + _not: end_of_block_range_scanned_data_bool_exp + _or: [end_of_block_range_scanned_data_bool_exp!] + block_hash: String_comparison_exp + block_number: Int_comparison_exp + chain_id: Int_comparison_exp +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_bool_exp.\_and](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_not](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.\_or](#)[[end_of_block_range_scanned_data_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [end_of_block_range_scanned_data_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx new file mode 100644 index 00000000..205baf9a --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-order-by +title: end_of_block_range_scanned_data_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "end_of_block_range_scanned_data". + +```graphql +input end_of_block_range_scanned_data_order_by { + block_hash: order_by + block_number: order_by + chain_id: order_by +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_order_by.block_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [end_of_block_range_scanned_data_order_by.chain_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx new file mode 100644 index 00000000..666b2c79 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-input +title: end_of_block_range_scanned_data_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "end_of_block_range_scanned_data" + +```graphql +input end_of_block_range_scanned_data_stream_cursor_input { + initial_value: end_of_block_range_scanned_data_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_input.initial_value](#)[end_of_block_range_scanned_data_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [end_of_block_range_scanned_data_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx new file mode 100644 index 00000000..7a7b49c9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-stream-cursor-value-input.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data-stream-cursor-value-input +title: end_of_block_range_scanned_data_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input end_of_block_range_scanned_data_stream_cursor_value_input { + block_hash: String + block_number: Int + chain_id: Int +} +``` + +### Fields + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_stream_cursor_value_input.chain_id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx new file mode 100644 index 00000000..e5171b53 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx @@ -0,0 +1,95 @@ +--- +id: event-sync-state-bool-exp +title: event_sync_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "event_sync_state". All fields are combined with a logical 'AND'. + +```graphql +input event_sync_state_bool_exp { + _and: [event_sync_state_bool_exp!] + _not: event_sync_state_bool_exp + _or: [event_sync_state_bool_exp!] + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + is_pre_registering_dynamic_contracts: Boolean_comparison_exp + log_index: Int_comparison_exp +} +``` + +### Fields + +#### [event_sync_state_bool_exp.\_and](#)[[event_sync_state_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_not](#)[event_sync_state_bool_exp](/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.\_or](#)[[event_sync_state_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +#### [event_sync_state_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.is_pre_registering_dynamic_contracts](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [event_sync_state_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/event-sync-state-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/event-sync-state-order-by.mdx new file mode 100644 index 00000000..6bd41e4e --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/event-sync-state-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-order-by +title: event_sync_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "event_sync_state". + +```graphql +input event_sync_state_order_by { + block_number: order_by + block_timestamp: order_by + chain_id: order_by + is_pre_registering_dynamic_contracts: order_by + log_index: order_by +} +``` + +### Fields + +#### [event_sync_state_order_by.block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.block_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.chain_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.is_pre_registering_dynamic_contracts](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [event_sync_state_order_by.log_index](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx new file mode 100644 index 00000000..f6399b7b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: event-sync-state-stream-cursor-input +title: event_sync_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "event_sync_state" + +```graphql +input event_sync_state_stream_cursor_input { + initial_value: event_sync_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_input.initial_value](#)[event_sync_state_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [event_sync_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..0d5fe9b9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/event-sync-state-stream-cursor-value-input.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state-stream-cursor-value-input +title: event_sync_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input event_sync_state_stream_cursor_value_input { + block_number: Int + block_timestamp: Int + chain_id: Int + is_pre_registering_dynamic_contracts: Boolean + log_index: Int +} +``` + +### Fields + +#### [event_sync_state_stream_cursor_value_input.block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.chain_id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state_stream_cursor_value_input.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state_stream_cursor_value_input.log_index](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx new file mode 100644 index 00000000..56bb18e3 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: int-comparison-exp +title: Int_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. + +```graphql +input Int_comparison_exp { + _eq: Int + _gt: Int + _gte: Int + _in: [Int!] + _is_null: Boolean + _lt: Int + _lte: Int + _neq: Int + _nin: [Int!] +} +``` + +### Fields + +#### [Int_comparison_exp.\_eq](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gt](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_gte](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_in](#)[[Int!]](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Int_comparison_exp.\_lt](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_lte](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_neq](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [Int_comparison_exp.\_nin](#)[[Int!]](/docs/api/lockup/graphql/envio/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/jsonb-cast-exp.mdx b/docs/api/lockup/graphql/envio/inputs/jsonb-cast-exp.mdx new file mode 100644 index 00000000..c3ab6368 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/jsonb-cast-exp.mdx @@ -0,0 +1,74 @@ +--- +id: jsonb-cast-exp +title: jsonb_cast_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input jsonb_cast_exp { + String: String_comparison_exp +} +``` + +### Fields + +#### [jsonb_cast_exp.String](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx new file mode 100644 index 00000000..a8cbea27 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx @@ -0,0 +1,126 @@ +--- +id: jsonb-comparison-exp +title: jsonb_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. + +```graphql +input jsonb_comparison_exp { + _cast: jsonb_cast_exp + _contained_in: jsonb + _contains: jsonb + _eq: jsonb + _gt: jsonb + _gte: jsonb + _has_key: String + _has_keys_all: [String!] + _has_keys_any: [String!] + _in: [jsonb!] + _is_null: Boolean + _lt: jsonb + _lte: jsonb + _neq: jsonb + _nin: [jsonb!] +} +``` + +### Fields + +#### [jsonb_comparison_exp.\_cast](#)[jsonb_cast_exp](/docs/api/lockup/graphql/envio/inputs/jsonb-cast-exp.mdx) + +#### [jsonb_comparison_exp.\_contained_in](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +is the column contained in the given json value + +#### [jsonb_comparison_exp.\_contains](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +does the column contain the given json value at the top level + +#### [jsonb_comparison_exp.\_eq](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gt](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_gte](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_has_key](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the string exist as a top-level key in the column + +#### [jsonb_comparison_exp.\_has_keys_all](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +do all of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_has_keys_any](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +do any of these strings exist as top-level keys in the column + +#### [jsonb_comparison_exp.\_in](#)[[jsonb!]](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [jsonb_comparison_exp.\_lt](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_lte](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_neq](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [jsonb_comparison_exp.\_nin](#)[[jsonb!]](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx new file mode 100644 index 00000000..b4d42912 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: numeric-comparison-exp +title: numeric_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. + +```graphql +input numeric_comparison_exp { + _eq: numeric + _gt: numeric + _gte: numeric + _in: [numeric!] + _is_null: Boolean + _lt: numeric + _lte: numeric + _neq: numeric + _nin: [numeric!] +} +``` + +### Fields + +#### [numeric_comparison_exp.\_eq](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gt](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_gte](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_in](#)[[numeric!]](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [numeric_comparison_exp.\_lt](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_lte](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_neq](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [numeric_comparison_exp.\_nin](#)[[numeric!]](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx new file mode 100644 index 00000000..3e405503 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx @@ -0,0 +1,98 @@ +--- +id: persisted-state-bool-exp +title: persisted_state_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "persisted_state". All fields are combined with a logical 'AND'. + +```graphql +input persisted_state_bool_exp { + _and: [persisted_state_bool_exp!] + _not: persisted_state_bool_exp + _or: [persisted_state_bool_exp!] + abi_files_hash: String_comparison_exp + config_hash: String_comparison_exp + envio_version: String_comparison_exp + handler_files_hash: String_comparison_exp + id: Int_comparison_exp + schema_hash: String_comparison_exp +} +``` + +### Fields + +#### [persisted_state_bool_exp.\_and](#)[[persisted_state_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_not](#)[persisted_state_bool_exp](/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.\_or](#)[[persisted_state_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +#### [persisted_state_bool_exp.abi_files_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.config_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.envio_version](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.handler_files_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [persisted_state_bool_exp.id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [persisted_state_bool_exp.schema_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/persisted-state-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/persisted-state-order-by.mdx new file mode 100644 index 00000000..11ba76bc --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/persisted-state-order-by.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-order-by +title: persisted_state_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "persisted_state". + +```graphql +input persisted_state_order_by { + abi_files_hash: order_by + config_hash: order_by + envio_version: order_by + handler_files_hash: order_by + id: order_by + schema_hash: order_by +} +``` + +### Fields + +#### [persisted_state_order_by.abi_files_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.config_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.envio_version](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.handler_files_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [persisted_state_order_by.schema_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx new file mode 100644 index 00000000..3c3095fd --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: persisted-state-stream-cursor-input +title: persisted_state_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "persisted_state" + +```graphql +input persisted_state_stream_cursor_input { + initial_value: persisted_state_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [persisted_state_stream_cursor_input.initial_value](#)[persisted_state_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [persisted_state_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx new file mode 100644 index 00000000..2b0f96f8 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/persisted-state-stream-cursor-value-input.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state-stream-cursor-value-input +title: persisted_state_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input persisted_state_stream_cursor_value_input { + abi_files_hash: String + config_hash: String + envio_version: String + handler_files_hash: String + id: Int + schema_hash: String +} +``` + +### Fields + +#### [persisted_state_stream_cursor_value_input.abi_files_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.config_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.envio_version](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.handler_files_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state_stream_cursor_value_input.id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [persisted_state_stream_cursor_value_input.schema_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx new file mode 100644 index 00000000..c6195ac5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx @@ -0,0 +1,122 @@ +--- +id: raw-events-bool-exp +title: raw_events_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "raw_events". All fields are combined with a logical 'AND'. + +```graphql +input raw_events_bool_exp { + _and: [raw_events_bool_exp!] + _not: raw_events_bool_exp + _or: [raw_events_bool_exp!] + block_fields: jsonb_comparison_exp + block_hash: String_comparison_exp + block_number: Int_comparison_exp + block_timestamp: Int_comparison_exp + chain_id: Int_comparison_exp + contract_name: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + event_id: numeric_comparison_exp + event_name: String_comparison_exp + log_index: Int_comparison_exp + params: jsonb_comparison_exp + serial: Int_comparison_exp + src_address: String_comparison_exp + transaction_fields: jsonb_comparison_exp +} +``` + +### Fields + +#### [raw_events_bool_exp.\_and](#)[[raw_events_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_not](#)[raw_events_bool_exp](/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.\_or](#)[[raw_events_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx) + +#### [raw_events_bool_exp.block_fields](#)[jsonb_comparison_exp](/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_number](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.block_timestamp](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.chain_id](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.contract_name](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_id](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [raw_events_bool_exp.event_name](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.log_index](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.params](#)[jsonb_comparison_exp](/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx) + +#### [raw_events_bool_exp.serial](#)[Int_comparison_exp](/docs/api/lockup/graphql/envio/inputs/int-comparison-exp.mdx) + +#### [raw_events_bool_exp.src_address](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [raw_events_bool_exp.transaction_fields](#)[jsonb_comparison_exp](/docs/api/lockup/graphql/envio/inputs/jsonb-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/raw-events-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/raw-events-order-by.mdx new file mode 100644 index 00000000..9e1778a3 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/raw-events-order-by.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-order-by +title: raw_events_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "raw_events". + +```graphql +input raw_events_order_by { + block_fields: order_by + block_hash: order_by + block_number: order_by + block_timestamp: order_by + chain_id: order_by + contract_name: order_by + db_write_timestamp: order_by + event_id: order_by + event_name: order_by + log_index: order_by + params: order_by + serial: order_by + src_address: order_by + transaction_fields: order_by +} +``` + +### Fields + +#### [raw_events_order_by.block_fields](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_number](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.block_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.chain_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.contract_name](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.event_name](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.log_index](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.params](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.serial](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.src_address](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [raw_events_order_by.transaction_fields](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-input.mdx new file mode 100644 index 00000000..02ceb7a0 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: raw-events-stream-cursor-input +title: raw_events_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "raw_events" + +```graphql +input raw_events_stream_cursor_input { + initial_value: raw_events_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [raw_events_stream_cursor_input.initial_value](#)[raw_events_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [raw_events_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx new file mode 100644 index 00000000..326e81a7 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/raw-events-stream-cursor-value-input.mdx @@ -0,0 +1,113 @@ +--- +id: raw-events-stream-cursor-value-input +title: raw_events_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input raw_events_stream_cursor_value_input { + block_fields: jsonb + block_hash: String + block_number: Int + block_timestamp: Int + chain_id: Int + contract_name: String + db_write_timestamp: timestamp + event_id: numeric + event_name: String + log_index: Int + params: jsonb + serial: Int + src_address: String + transaction_fields: jsonb +} +``` + +### Fields + +#### [raw_events_stream_cursor_value_input.block_fields](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.block_hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.block_timestamp](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.chain_id](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.contract_name](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events_stream_cursor_value_input.event_id](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [raw_events_stream_cursor_value_input.event_name](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.log_index](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.params](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +#### [raw_events_stream_cursor_value_input.serial](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events_stream_cursor_value_input.src_address](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events_stream_cursor_value_input.transaction_fields](#)[jsonb](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-aggregate-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-aggregate-order-by.mdx new file mode 100644 index 00000000..416dc4a4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: segment-aggregate-order-by +title: Segment_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Segment" + +```graphql +input Segment_aggregate_order_by { + avg: Segment_avg_order_by + count: order_by + max: Segment_max_order_by + min: Segment_min_order_by + stddev: Segment_stddev_order_by + stddev_pop: Segment_stddev_pop_order_by + stddev_samp: Segment_stddev_samp_order_by + sum: Segment_sum_order_by + var_pop: Segment_var_pop_order_by + var_samp: Segment_var_samp_order_by + variance: Segment_variance_order_by +} +``` + +### Fields + +#### [Segment_aggregate_order_by.avg](#)[Segment_avg_order_by](/docs/api/lockup/graphql/envio/inputs/segment-avg-order-by.mdx) + +#### [Segment_aggregate_order_by.count](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_aggregate_order_by.max](#)[Segment_max_order_by](/docs/api/lockup/graphql/envio/inputs/segment-max-order-by.mdx) + +#### [Segment_aggregate_order_by.min](#)[Segment_min_order_by](/docs/api/lockup/graphql/envio/inputs/segment-min-order-by.mdx) + +#### [Segment_aggregate_order_by.stddev](#)[Segment_stddev_order_by](/docs/api/lockup/graphql/envio/inputs/segment-stddev-order-by.mdx) + +#### [Segment_aggregate_order_by.stddev_pop](#)[Segment_stddev_pop_order_by](/docs/api/lockup/graphql/envio/inputs/segment-stddev-pop-order-by.mdx) + +#### [Segment_aggregate_order_by.stddev_samp](#)[Segment_stddev_samp_order_by](/docs/api/lockup/graphql/envio/inputs/segment-stddev-samp-order-by.mdx) + +#### [Segment_aggregate_order_by.sum](#)[Segment_sum_order_by](/docs/api/lockup/graphql/envio/inputs/segment-sum-order-by.mdx) + +#### [Segment_aggregate_order_by.var_pop](#)[Segment_var_pop_order_by](/docs/api/lockup/graphql/envio/inputs/segment-var-pop-order-by.mdx) + +#### [Segment_aggregate_order_by.var_samp](#)[Segment_var_samp_order_by](/docs/api/lockup/graphql/envio/inputs/segment-var-samp-order-by.mdx) + +#### [Segment_aggregate_order_by.variance](#)[Segment_variance_order_by](/docs/api/lockup/graphql/envio/inputs/segment-variance-order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-avg-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-avg-order-by.mdx new file mode 100644 index 00000000..4f3553d5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-avg-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-avg-order-by +title: Segment_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Segment" + +```graphql +input Segment_avg_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_avg_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_avg_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx new file mode 100644 index 00000000..c1b893c5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx @@ -0,0 +1,116 @@ +--- +id: segment-bool-exp +title: Segment_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Segment". All fields are combined with a logical 'AND'. + +```graphql +input Segment_bool_exp { + _and: [Segment_bool_exp!] + _not: Segment_bool_exp + _or: [Segment_bool_exp!] + amount: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + endAmount: numeric_comparison_exp + endTime: numeric_comparison_exp + exponent: numeric_comparison_exp + id: String_comparison_exp + milestone: numeric_comparison_exp + position: numeric_comparison_exp + startAmount: numeric_comparison_exp + startTime: numeric_comparison_exp + stream: Stream_bool_exp + stream_id: String_comparison_exp +} +``` + +### Fields + +#### [Segment_bool_exp.\_and](#)[[Segment_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +#### [Segment_bool_exp.\_not](#)[Segment_bool_exp](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +#### [Segment_bool_exp.\_or](#)[[Segment_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +#### [Segment_bool_exp.amount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Segment_bool_exp.endAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.endTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.exponent](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Segment_bool_exp.milestone](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.position](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.startAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.startTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Segment_bool_exp.stream](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Segment_bool_exp.stream_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-max-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-max-order-by.mdx new file mode 100644 index 00000000..7c158ae5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-max-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: segment-max-order-by +title: Segment_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Segment" + +```graphql +input Segment_max_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + id: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream_id: order_by +} +``` + +### Fields + +#### [Segment_max_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_max_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-min-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-min-order-by.mdx new file mode 100644 index 00000000..6e1a3709 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-min-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: segment-min-order-by +title: Segment_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Segment" + +```graphql +input Segment_min_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + id: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream_id: order_by +} +``` + +### Fields + +#### [Segment_min_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_min_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-order-by.mdx new file mode 100644 index 00000000..f62f0a26 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-order-by.mdx @@ -0,0 +1,107 @@ +--- +id: segment-order-by +title: Segment_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Segment". + +```graphql +input Segment_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + id: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream: Stream_order_by + stream_id: order_by +} +``` + +### Fields + +#### [Segment_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_order_by.stream](#)[Stream_order_by](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +#### [Segment_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-stddev-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-stddev-order-by.mdx new file mode 100644 index 00000000..b01dbc51 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-stddev-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-stddev-order-by +title: Segment_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Segment" + +```graphql +input Segment_stddev_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_stddev_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-stddev-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-stddev-pop-order-by.mdx new file mode 100644 index 00000000..9e3d7666 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-stddev-pop-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-stddev-pop-order-by +title: Segment_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Segment" + +```graphql +input Segment_stddev_pop_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_stddev_pop_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-stddev-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-stddev-samp-order-by.mdx new file mode 100644 index 00000000..6577cd9b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-stddev-samp-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-stddev-samp-order-by +title: Segment_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Segment" + +```graphql +input Segment_stddev_samp_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_stddev_samp_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_stddev_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-input.mdx new file mode 100644 index 00000000..3f8c1f75 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: segment-stream-cursor-input +title: Segment_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Segment" + +```graphql +input Segment_stream_cursor_input { + initial_value: Segment_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Segment_stream_cursor_input.initial_value](#)[Segment_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Segment_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-value-input.mdx new file mode 100644 index 00000000..1ccf7086 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-stream-cursor-value-input.mdx @@ -0,0 +1,104 @@ +--- +id: segment-stream-cursor-value-input +title: Segment_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Segment_stream_cursor_value_input { + amount: numeric + db_write_timestamp: timestamp + endAmount: numeric + endTime: numeric + exponent: numeric + id: String + milestone: numeric + position: numeric + startAmount: numeric + startTime: numeric + stream_id: String +} +``` + +### Fields + +#### [Segment_stream_cursor_value_input.amount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Segment_stream_cursor_value_input.endAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.endTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.exponent](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Segment_stream_cursor_value_input.milestone](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.position](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.startAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.startTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment_stream_cursor_value_input.stream_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-sum-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-sum-order-by.mdx new file mode 100644 index 00000000..601a987d --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-sum-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-sum-order-by +title: Segment_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Segment" + +```graphql +input Segment_sum_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_sum_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_sum_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-var-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-var-pop-order-by.mdx new file mode 100644 index 00000000..5abcff83 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-var-pop-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-var-pop-order-by +title: Segment_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Segment" + +```graphql +input Segment_var_pop_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_var_pop_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-var-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-var-samp-order-by.mdx new file mode 100644 index 00000000..0c5bd71d --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-var-samp-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-var-samp-order-by +title: Segment_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Segment" + +```graphql +input Segment_var_samp_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_var_samp_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_var_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/segment-variance-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/segment-variance-order-by.mdx new file mode 100644 index 00000000..a8d57752 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/segment-variance-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: segment-variance-order-by +title: Segment_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Segment" + +```graphql +input Segment_variance_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + exponent: order_by + milestone: order_by + position: order_by + startAmount: order_by + startTime: order_by +} +``` + +### Fields + +#### [Segment_variance_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.exponent](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.milestone](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Segment_variance_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx new file mode 100644 index 00000000..48256f32 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: stream-aggregate-order-by +title: Stream_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Stream" + +```graphql +input Stream_aggregate_order_by { + avg: Stream_avg_order_by + count: order_by + max: Stream_max_order_by + min: Stream_min_order_by + stddev: Stream_stddev_order_by + stddev_pop: Stream_stddev_pop_order_by + stddev_samp: Stream_stddev_samp_order_by + sum: Stream_sum_order_by + var_pop: Stream_var_pop_order_by + var_samp: Stream_var_samp_order_by + variance: Stream_variance_order_by +} +``` + +### Fields + +#### [Stream_aggregate_order_by.avg](#)[Stream_avg_order_by](/docs/api/lockup/graphql/envio/inputs/stream-avg-order-by.mdx) + +#### [Stream_aggregate_order_by.count](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_aggregate_order_by.max](#)[Stream_max_order_by](/docs/api/lockup/graphql/envio/inputs/stream-max-order-by.mdx) + +#### [Stream_aggregate_order_by.min](#)[Stream_min_order_by](/docs/api/lockup/graphql/envio/inputs/stream-min-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev](#)[Stream_stddev_order_by](/docs/api/lockup/graphql/envio/inputs/stream-stddev-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev_pop](#)[Stream_stddev_pop_order_by](/docs/api/lockup/graphql/envio/inputs/stream-stddev-pop-order-by.mdx) + +#### [Stream_aggregate_order_by.stddev_samp](#)[Stream_stddev_samp_order_by](/docs/api/lockup/graphql/envio/inputs/stream-stddev-samp-order-by.mdx) + +#### [Stream_aggregate_order_by.sum](#)[Stream_sum_order_by](/docs/api/lockup/graphql/envio/inputs/stream-sum-order-by.mdx) + +#### [Stream_aggregate_order_by.var_pop](#)[Stream_var_pop_order_by](/docs/api/lockup/graphql/envio/inputs/stream-var-pop-order-by.mdx) + +#### [Stream_aggregate_order_by.var_samp](#)[Stream_var_samp_order_by](/docs/api/lockup/graphql/envio/inputs/stream-var-samp-order-by.mdx) + +#### [Stream_aggregate_order_by.variance](#)[Stream_variance_order_by](/docs/api/lockup/graphql/envio/inputs/stream-variance-order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-avg-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-avg-order-by.mdx new file mode 100644 index 00000000..adaa652f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-avg-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-avg-order-by +title: Stream_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Stream" + +```graphql +input Stream_avg_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_avg_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_avg_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx new file mode 100644 index 00000000..76ae9140 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx @@ -0,0 +1,227 @@ +--- +id: stream-bool-exp +title: Stream_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Stream". All fields are combined with a logical 'AND'. + +```graphql +input Stream_bool_exp { + _and: [Stream_bool_exp!] + _not: Stream_bool_exp + _or: [Stream_bool_exp!] + actions: Action_bool_exp + alias: String_comparison_exp + asset: Asset_bool_exp + asset_id: String_comparison_exp + batch: Batch_bool_exp + batch_id: String_comparison_exp + brokerFeeAmount: numeric_comparison_exp + cancelable: Boolean_comparison_exp + canceled: Boolean_comparison_exp + canceledAction: Action_bool_exp + canceledAction_id: String_comparison_exp + canceledTime: numeric_comparison_exp + category: streamcategory_comparison_exp + chainId: numeric_comparison_exp + cliff: Boolean_comparison_exp + cliffAmount: numeric_comparison_exp + cliffTime: numeric_comparison_exp + contract: Contract_bool_exp + contract_id: String_comparison_exp + db_write_timestamp: timestamp_comparison_exp + depositAmount: numeric_comparison_exp + duration: numeric_comparison_exp + endTime: numeric_comparison_exp + funder: String_comparison_exp + hash: String_comparison_exp + id: String_comparison_exp + initial: Boolean_comparison_exp + initialAmount: numeric_comparison_exp + intactAmount: numeric_comparison_exp + parties: String_array_comparison_exp + position: numeric_comparison_exp + protocolFeeAmount: numeric_comparison_exp + proxender: String_comparison_exp + proxied: Boolean_comparison_exp + recipient: String_comparison_exp + renounceAction: Action_bool_exp + renounceAction_id: String_comparison_exp + renounceTime: numeric_comparison_exp + segments: Segment_bool_exp + sender: String_comparison_exp + shape: String_comparison_exp + startTime: numeric_comparison_exp + subgraphId: numeric_comparison_exp + timestamp: numeric_comparison_exp + tokenId: numeric_comparison_exp + tranches: Tranche_bool_exp + transferable: Boolean_comparison_exp + version: String_comparison_exp + withdrawnAmount: numeric_comparison_exp +} +``` + +### Fields + +#### [Stream_bool_exp.\_and](#)[[Stream_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.\_not](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.\_or](#)[[Stream_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Stream_bool_exp.actions](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.alias](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.asset](#)[Asset_bool_exp](/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx) + +#### [Stream_bool_exp.asset_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.batch](#)[Batch_bool_exp](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +#### [Stream_bool_exp.batch_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.brokerFeeAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.cancelable](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.canceled](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.canceledAction](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.canceledAction_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.canceledTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.category](#)[streamcategory_comparison_exp](/docs/api/lockup/graphql/envio/inputs/streamcategory-comparison-exp.mdx) + +#### [Stream_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.cliff](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.cliffAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.cliffTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.contract](#)[Contract_bool_exp](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +#### [Stream_bool_exp.contract_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Stream_bool_exp.depositAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.duration](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.endTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.funder](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.hash](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.initial](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.initialAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.intactAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.parties](#)[String_array_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-array-comparison-exp.mdx) + +#### [Stream_bool_exp.position](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.protocolFeeAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.proxender](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.proxied](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.recipient](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.renounceAction](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +#### [Stream_bool_exp.renounceAction_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.renounceTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.segments](#)[Segment_bool_exp](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +#### [Stream_bool_exp.sender](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.shape](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.startTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.subgraphId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.tokenId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Stream_bool_exp.tranches](#)[Tranche_bool_exp](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Stream_bool_exp.transferable](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Stream_bool_exp.version](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Stream_bool_exp.withdrawnAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-max-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-max-order-by.mdx new file mode 100644 index 00000000..92200c26 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-max-order-by.mdx @@ -0,0 +1,176 @@ +--- +id: stream-max-order-by +title: Stream_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Stream" + +```graphql +input Stream_max_order_by { + alias: order_by + asset_id: order_by + batch_id: order_by + brokerFeeAmount: order_by + canceledAction_id: order_by + canceledTime: order_by + category: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + contract_id: order_by + db_write_timestamp: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + funder: order_by + hash: order_by + id: order_by + initialAmount: order_by + intactAmount: order_by + parties: order_by + position: order_by + protocolFeeAmount: order_by + proxender: order_by + recipient: order_by + renounceAction_id: order_by + renounceTime: order_by + sender: order_by + shape: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + version: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_max_order_by.alias](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.asset_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.batch_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.canceledAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.funder](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.parties](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.proxender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.recipient](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.renounceAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.sender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.shape](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.version](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_max_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-min-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-min-order-by.mdx new file mode 100644 index 00000000..1d332e9a --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-min-order-by.mdx @@ -0,0 +1,176 @@ +--- +id: stream-min-order-by +title: Stream_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Stream" + +```graphql +input Stream_min_order_by { + alias: order_by + asset_id: order_by + batch_id: order_by + brokerFeeAmount: order_by + canceledAction_id: order_by + canceledTime: order_by + category: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + contract_id: order_by + db_write_timestamp: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + funder: order_by + hash: order_by + id: order_by + initialAmount: order_by + intactAmount: order_by + parties: order_by + position: order_by + protocolFeeAmount: order_by + proxender: order_by + recipient: order_by + renounceAction_id: order_by + renounceTime: order_by + sender: order_by + shape: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + version: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_min_order_by.alias](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.asset_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.batch_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.canceledAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.funder](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.parties](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.proxender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.recipient](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.renounceAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.sender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.shape](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.version](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_min_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx new file mode 100644 index 00000000..9741c0cb --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx @@ -0,0 +1,218 @@ +--- +id: stream-order-by +title: Stream_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Stream". + +```graphql +input Stream_order_by { + actions_aggregate: Action_aggregate_order_by + alias: order_by + asset: Asset_order_by + asset_id: order_by + batch: Batch_order_by + batch_id: order_by + brokerFeeAmount: order_by + cancelable: order_by + canceled: order_by + canceledAction: Action_order_by + canceledAction_id: order_by + canceledTime: order_by + category: order_by + chainId: order_by + cliff: order_by + cliffAmount: order_by + cliffTime: order_by + contract: Contract_order_by + contract_id: order_by + db_write_timestamp: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + funder: order_by + hash: order_by + id: order_by + initial: order_by + initialAmount: order_by + intactAmount: order_by + parties: order_by + position: order_by + protocolFeeAmount: order_by + proxender: order_by + proxied: order_by + recipient: order_by + renounceAction: Action_order_by + renounceAction_id: order_by + renounceTime: order_by + segments_aggregate: Segment_aggregate_order_by + sender: order_by + shape: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + tranches_aggregate: Tranche_aggregate_order_by + transferable: order_by + version: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_order_by.actions_aggregate](#)[Action_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/action-aggregate-order-by.mdx) + +#### [Stream_order_by.alias](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.asset](#)[Asset_order_by](/docs/api/lockup/graphql/envio/inputs/asset-order-by.mdx) + +#### [Stream_order_by.asset_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.batch](#)[Batch_order_by](/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx) + +#### [Stream_order_by.batch_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.cancelable](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.canceled](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.canceledAction](#)[Action_order_by](/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx) + +#### [Stream_order_by.canceledAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.category](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.cliff](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.contract](#)[Contract_order_by](/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx) + +#### [Stream_order_by.contract_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.funder](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.hash](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.initial](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.parties](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.proxender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.proxied](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.recipient](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.renounceAction](#)[Action_order_by](/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx) + +#### [Stream_order_by.renounceAction_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.segments_aggregate](#)[Segment_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/segment-aggregate-order-by.mdx) + +#### [Stream_order_by.sender](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.shape](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.tranches_aggregate](#)[Tranche_aggregate_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-aggregate-order-by.mdx) + +#### [Stream_order_by.transferable](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.version](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-stddev-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-stddev-order-by.mdx new file mode 100644 index 00000000..169ed590 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-stddev-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-order-by +title: Stream_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Stream" + +```graphql +input Stream_stddev_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-stddev-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-stddev-pop-order-by.mdx new file mode 100644 index 00000000..9a3c3127 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-stddev-pop-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-pop-order-by +title: Stream_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Stream" + +```graphql +input Stream_stddev_pop_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_pop_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_pop_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-stddev-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-stddev-samp-order-by.mdx new file mode 100644 index 00000000..ae697025 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-stddev-samp-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-stddev-samp-order-by +title: Stream_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Stream" + +```graphql +input Stream_stddev_samp_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_stddev_samp_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_stddev_samp_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-input.mdx new file mode 100644 index 00000000..fd416cc7 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: stream-stream-cursor-input +title: Stream_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Stream" + +```graphql +input Stream_stream_cursor_input { + initial_value: Stream_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Stream_stream_cursor_input.initial_value](#)[Stream_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Stream_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-value-input.mdx new file mode 100644 index 00000000..dc787f29 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-stream-cursor-value-input.mdx @@ -0,0 +1,194 @@ +--- +id: stream-stream-cursor-value-input +title: Stream_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Stream_stream_cursor_value_input { + alias: String + asset_id: String + batch_id: String + brokerFeeAmount: numeric + cancelable: Boolean + canceled: Boolean + canceledAction_id: String + canceledTime: numeric + category: streamcategory + chainId: numeric + cliff: Boolean + cliffAmount: numeric + cliffTime: numeric + contract_id: String + db_write_timestamp: timestamp + depositAmount: numeric + duration: numeric + endTime: numeric + funder: String + hash: String + id: String + initial: Boolean + initialAmount: numeric + intactAmount: numeric + parties: [String!] + position: numeric + protocolFeeAmount: numeric + proxender: String + proxied: Boolean + recipient: String + renounceAction_id: String + renounceTime: numeric + sender: String + shape: String + startTime: numeric + subgraphId: numeric + timestamp: numeric + tokenId: numeric + transferable: Boolean + version: String + withdrawnAmount: numeric +} +``` + +### Fields + +#### [Stream_stream_cursor_value_input.alias](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.asset_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.batch_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.brokerFeeAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.cancelable](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.canceled](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.canceledAction_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.canceledTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.category](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [Stream_stream_cursor_value_input.chainId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.cliff](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.cliffAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.cliffTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.contract_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Stream_stream_cursor_value_input.depositAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.duration](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.endTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.funder](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.hash](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.initial](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.initialAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.intactAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.parties](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.position](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.protocolFeeAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.proxender](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.proxied](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.recipient](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.renounceAction_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.renounceTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.sender](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.shape](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.startTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.subgraphId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.tokenId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream_stream_cursor_value_input.transferable](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream_stream_cursor_value_input.version](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream_stream_cursor_value_input.withdrawnAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-sum-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-sum-order-by.mdx new file mode 100644 index 00000000..8482659f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-sum-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-sum-order-by +title: Stream_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Stream" + +```graphql +input Stream_sum_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_sum_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_sum_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-var-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-var-pop-order-by.mdx new file mode 100644 index 00000000..3d565d4f --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-var-pop-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-var-pop-order-by +title: Stream_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Stream" + +```graphql +input Stream_var_pop_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_var_pop_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_pop_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-var-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-var-samp-order-by.mdx new file mode 100644 index 00000000..23490b76 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-var-samp-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-var-samp-order-by +title: Stream_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Stream" + +```graphql +input Stream_var_samp_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_var_samp_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_var_samp_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/stream-variance-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/stream-variance-order-by.mdx new file mode 100644 index 00000000..d36260c5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/stream-variance-order-by.mdx @@ -0,0 +1,125 @@ +--- +id: stream-variance-order-by +title: Stream_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Stream" + +```graphql +input Stream_variance_order_by { + brokerFeeAmount: order_by + canceledTime: order_by + chainId: order_by + cliffAmount: order_by + cliffTime: order_by + depositAmount: order_by + duration: order_by + endTime: order_by + initialAmount: order_by + intactAmount: order_by + position: order_by + protocolFeeAmount: order_by + renounceTime: order_by + startTime: order_by + subgraphId: order_by + timestamp: order_by + tokenId: order_by + withdrawnAmount: order_by +} +``` + +### Fields + +#### [Stream_variance_order_by.brokerFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.canceledTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.cliffAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.cliffTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.depositAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.duration](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.initialAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.intactAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.protocolFeeAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.renounceTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.subgraphId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.tokenId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Stream_variance_order_by.withdrawnAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/streamcategory-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/streamcategory-comparison-exp.mdx new file mode 100644 index 00000000..eadc5999 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/streamcategory-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: streamcategory-comparison-exp +title: streamcategory_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "streamcategory". All fields are combined with logical 'AND'. + +```graphql +input streamcategory_comparison_exp { + _eq: streamcategory + _gt: streamcategory + _gte: streamcategory + _in: [streamcategory!] + _is_null: Boolean + _lt: streamcategory + _lte: streamcategory + _neq: streamcategory + _nin: [streamcategory!] +} +``` + +### Fields + +#### [streamcategory_comparison_exp.\_eq](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_gt](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_gte](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_in](#)[[streamcategory!]](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [streamcategory_comparison_exp.\_lt](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_lte](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_neq](#)[streamcategory](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [streamcategory_comparison_exp.\_nin](#)[[streamcategory!]](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/string-array-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/string-array-comparison-exp.mdx new file mode 100644 index 00000000..b35c5629 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/string-array-comparison-exp.mdx @@ -0,0 +1,108 @@ +--- +id: string-array-comparison-exp +title: String_array_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_array_comparison_exp { + _contained_in: [String!] + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _is_null: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} +``` + +### Fields + +#### [String_array_comparison_exp.\_contained_in](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +is the array contained in the given array value + +#### [String_array_comparison_exp.\_contains](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the array contain the given value + +#### [String_array_comparison_exp.\_eq](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gt](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_gte](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_in](#)[[[String!]!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [String_array_comparison_exp.\_lt](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_lte](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_neq](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_array_comparison_exp.\_nin](#)[[[String!]!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx new file mode 100644 index 00000000..a9dc31c4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx @@ -0,0 +1,148 @@ +--- +id: string-comparison-exp +title: String_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. + +```graphql +input String_comparison_exp { + _eq: String + _gt: String + _gte: String + _ilike: String + _in: [String!] + _iregex: String + _is_null: Boolean + _like: String + _lt: String + _lte: String + _neq: String + _nilike: String + _nin: [String!] + _niregex: String + _nlike: String + _nregex: String + _nsimilar: String + _regex: String + _similar: String +} +``` + +### Fields + +#### [String_comparison_exp.\_eq](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gt](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_gte](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_ilike](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column match the given case-insensitive pattern + +#### [String_comparison_exp.\_in](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_iregex](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [String_comparison_exp.\_like](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column match the given pattern + +#### [String_comparison_exp.\_lt](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_lte](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_neq](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_nilike](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column NOT match the given case-insensitive pattern + +#### [String_comparison_exp.\_nin](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [String_comparison_exp.\_niregex](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case insensitive + +#### [String_comparison_exp.\_nlike](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column NOT match the given pattern + +#### [String_comparison_exp.\_nregex](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column NOT match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_nsimilar](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column NOT match the given SQL regular expression + +#### [String_comparison_exp.\_regex](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column match the given POSIX regular expression, case sensitive + +#### [String_comparison_exp.\_similar](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +does the column match the given SQL regular expression diff --git a/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx new file mode 100644 index 00000000..55023370 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamp-comparison-exp +title: timestamp_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. + +```graphql +input timestamp_comparison_exp { + _eq: timestamp + _gt: timestamp + _gte: timestamp + _in: [timestamp!] + _is_null: Boolean + _lt: timestamp + _lte: timestamp + _neq: timestamp + _nin: [timestamp!] +} +``` + +### Fields + +#### [timestamp_comparison_exp.\_eq](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gt](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_gte](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_in](#)[[timestamp!]](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [timestamp_comparison_exp.\_lt](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_lte](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_neq](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [timestamp_comparison_exp.\_nin](#)[[timestamp!]](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/timestamptz-comparison-exp.mdx b/docs/api/lockup/graphql/envio/inputs/timestamptz-comparison-exp.mdx new file mode 100644 index 00000000..9321e8ed --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/timestamptz-comparison-exp.mdx @@ -0,0 +1,98 @@ +--- +id: timestamptz-comparison-exp +title: timestamptz_comparison_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. + +```graphql +input timestamptz_comparison_exp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _is_null: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} +``` + +### Fields + +#### [timestamptz_comparison_exp.\_eq](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gt](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_gte](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_in](#)[[timestamptz!]](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_is_null](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [timestamptz_comparison_exp.\_lt](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_lte](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_neq](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) + +#### [timestamptz_comparison_exp.\_nin](#)[[timestamptz!]](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-aggregate-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-aggregate-order-by.mdx new file mode 100644 index 00000000..9e507096 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-aggregate-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: tranche-aggregate-order-by +title: Tranche_aggregate_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by aggregate values of table "Tranche" + +```graphql +input Tranche_aggregate_order_by { + avg: Tranche_avg_order_by + count: order_by + max: Tranche_max_order_by + min: Tranche_min_order_by + stddev: Tranche_stddev_order_by + stddev_pop: Tranche_stddev_pop_order_by + stddev_samp: Tranche_stddev_samp_order_by + sum: Tranche_sum_order_by + var_pop: Tranche_var_pop_order_by + var_samp: Tranche_var_samp_order_by + variance: Tranche_variance_order_by +} +``` + +### Fields + +#### [Tranche_aggregate_order_by.avg](#)[Tranche_avg_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-avg-order-by.mdx) + +#### [Tranche_aggregate_order_by.count](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_aggregate_order_by.max](#)[Tranche_max_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-max-order-by.mdx) + +#### [Tranche_aggregate_order_by.min](#)[Tranche_min_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-min-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev](#)[Tranche_stddev_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-stddev-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev_pop](#)[Tranche_stddev_pop_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx) + +#### [Tranche_aggregate_order_by.stddev_samp](#)[Tranche_stddev_samp_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx) + +#### [Tranche_aggregate_order_by.sum](#)[Tranche_sum_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-sum-order-by.mdx) + +#### [Tranche_aggregate_order_by.var_pop](#)[Tranche_var_pop_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-var-pop-order-by.mdx) + +#### [Tranche_aggregate_order_by.var_samp](#)[Tranche_var_samp_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-var-samp-order-by.mdx) + +#### [Tranche_aggregate_order_by.variance](#)[Tranche_variance_order_by](/docs/api/lockup/graphql/envio/inputs/tranche-variance-order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-avg-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-avg-order-by.mdx new file mode 100644 index 00000000..445a172b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-avg-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-avg-order-by +title: Tranche_avg_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by avg() on columns of table "Tranche" + +```graphql +input Tranche_avg_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_avg_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_avg_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx new file mode 100644 index 00000000..22863f37 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx @@ -0,0 +1,113 @@ +--- +id: tranche-bool-exp +title: Tranche_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Tranche". All fields are combined with a logical 'AND'. + +```graphql +input Tranche_bool_exp { + _and: [Tranche_bool_exp!] + _not: Tranche_bool_exp + _or: [Tranche_bool_exp!] + amount: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + endAmount: numeric_comparison_exp + endTime: numeric_comparison_exp + id: String_comparison_exp + position: numeric_comparison_exp + startAmount: numeric_comparison_exp + startTime: numeric_comparison_exp + stream: Stream_bool_exp + stream_id: String_comparison_exp + timestamp: numeric_comparison_exp +} +``` + +### Fields + +#### [Tranche_bool_exp.\_and](#)[[Tranche_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.\_not](#)[Tranche_bool_exp](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.\_or](#)[[Tranche_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +#### [Tranche_bool_exp.amount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Tranche_bool_exp.endAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.endTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Tranche_bool_exp.position](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.startAmount](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.startTime](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Tranche_bool_exp.stream](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +#### [Tranche_bool_exp.stream_id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Tranche_bool_exp.timestamp](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-max-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-max-order-by.mdx new file mode 100644 index 00000000..f6b19756 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-max-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-max-order-by +title: Tranche_max_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by max() on columns of table "Tranche" + +```graphql +input Tranche_max_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + id: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream_id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_max_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_max_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-min-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-min-order-by.mdx new file mode 100644 index 00000000..78333402 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-min-order-by.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-min-order-by +title: Tranche_min_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by min() on columns of table "Tranche" + +```graphql +input Tranche_min_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + id: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream_id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_min_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_min_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-order-by.mdx new file mode 100644 index 00000000..09d0e1b2 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-order-by.mdx @@ -0,0 +1,104 @@ +--- +id: tranche-order-by +title: Tranche_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Tranche". + +```graphql +input Tranche_order_by { + amount: order_by + db_write_timestamp: order_by + endAmount: order_by + endTime: order_by + id: order_by + position: order_by + startAmount: order_by + startTime: order_by + stream: Stream_order_by + stream_id: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.stream](#)[Stream_order_by](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +#### [Tranche_order_by.stream_id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-stddev-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-order-by.mdx new file mode 100644 index 00000000..d440f9af --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-order-by +title: Tranche_stddev_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev() on columns of table "Tranche" + +```graphql +input Tranche_stddev_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_stddev_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx new file mode 100644 index 00000000..0523186b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-pop-order-by +title: Tranche_stddev_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_pop() on columns of table "Tranche" + +```graphql +input Tranche_stddev_pop_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_stddev_pop_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx new file mode 100644 index 00000000..1e5024ce --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-stddev-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-stddev-samp-order-by +title: Tranche_stddev_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by stddev_samp() on columns of table "Tranche" + +```graphql +input Tranche_stddev_samp_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_stddev_samp_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_stddev_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-input.mdx new file mode 100644 index 00000000..4f3d0396 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: tranche-stream-cursor-input +title: Tranche_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Tranche" + +```graphql +input Tranche_stream_cursor_input { + initial_value: Tranche_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Tranche_stream_cursor_input.initial_value](#)[Tranche_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Tranche_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx new file mode 100644 index 00000000..b0a0d18e --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-stream-cursor-value-input.mdx @@ -0,0 +1,101 @@ +--- +id: tranche-stream-cursor-value-input +title: Tranche_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Tranche_stream_cursor_value_input { + amount: numeric + db_write_timestamp: timestamp + endAmount: numeric + endTime: numeric + id: String + position: numeric + startAmount: numeric + startTime: numeric + stream_id: String + timestamp: numeric +} +``` + +### Fields + +#### [Tranche_stream_cursor_value_input.amount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Tranche_stream_cursor_value_input.endAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.endTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Tranche_stream_cursor_value_input.position](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.startAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.startTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche_stream_cursor_value_input.stream_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Tranche_stream_cursor_value_input.timestamp](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-sum-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-sum-order-by.mdx new file mode 100644 index 00000000..5e7c7680 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-sum-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-sum-order-by +title: Tranche_sum_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by sum() on columns of table "Tranche" + +```graphql +input Tranche_sum_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_sum_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_sum_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-var-pop-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-var-pop-order-by.mdx new file mode 100644 index 00000000..eb27d467 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-var-pop-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-var-pop-order-by +title: Tranche_var_pop_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_pop() on columns of table "Tranche" + +```graphql +input Tranche_var_pop_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_var_pop_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_pop_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-var-samp-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-var-samp-order-by.mdx new file mode 100644 index 00000000..7e01332b --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-var-samp-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-var-samp-order-by +title: Tranche_var_samp_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by var_samp() on columns of table "Tranche" + +```graphql +input Tranche_var_samp_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_var_samp_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_var_samp_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/tranche-variance-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/tranche-variance-order-by.mdx new file mode 100644 index 00000000..2ab92466 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/tranche-variance-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: tranche-variance-order-by +title: Tranche_variance_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +order by variance() on columns of table "Tranche" + +```graphql +input Tranche_variance_order_by { + amount: order_by + endAmount: order_by + endTime: order_by + position: order_by + startAmount: order_by + startTime: order_by + timestamp: order_by +} +``` + +### Fields + +#### [Tranche_variance_order_by.amount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.endAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.endTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.position](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.startAmount](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.startTime](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Tranche_variance_order_by.timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx b/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx new file mode 100644 index 00000000..cc2570d7 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx @@ -0,0 +1,101 @@ +--- +id: watcher-bool-exp +title: Watcher_bool_exp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Boolean expression to filter rows from the table "Watcher". All fields are combined with a logical 'AND'. + +```graphql +input Watcher_bool_exp { + _and: [Watcher_bool_exp!] + _not: Watcher_bool_exp + _or: [Watcher_bool_exp!] + actionIndex: numeric_comparison_exp + chainId: numeric_comparison_exp + db_write_timestamp: timestamp_comparison_exp + id: String_comparison_exp + initialized: Boolean_comparison_exp + logs: String_array_comparison_exp + streamIndex: numeric_comparison_exp +} +``` + +### Fields + +#### [Watcher_bool_exp.\_and](#)[[Watcher_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_not](#)[Watcher_bool_exp](/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.\_or](#)[[Watcher_bool_exp!]](/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx) + +#### [Watcher_bool_exp.actionIndex](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.chainId](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) + +#### [Watcher_bool_exp.db_write_timestamp](#)[timestamp_comparison_exp](/docs/api/lockup/graphql/envio/inputs/timestamp-comparison-exp.mdx) + +#### [Watcher_bool_exp.id](#)[String_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-comparison-exp.mdx) + +#### [Watcher_bool_exp.initialized](#)[Boolean_comparison_exp](/docs/api/lockup/graphql/envio/inputs/boolean-comparison-exp.mdx) + +#### [Watcher_bool_exp.logs](#)[String_array_comparison_exp](/docs/api/lockup/graphql/envio/inputs/string-array-comparison-exp.mdx) + +#### [Watcher_bool_exp.streamIndex](#)[numeric_comparison_exp](/docs/api/lockup/graphql/envio/inputs/numeric-comparison-exp.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/watcher-order-by.mdx b/docs/api/lockup/graphql/envio/inputs/watcher-order-by.mdx new file mode 100644 index 00000000..e46635b5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/watcher-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-order-by +title: Watcher_order_by +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Ordering options when selecting data from "Watcher". + +```graphql +input Watcher_order_by { + actionIndex: order_by + chainId: order_by + db_write_timestamp: order_by + id: order_by + initialized: order_by + logs: order_by + streamIndex: order_by +} +``` + +### Fields + +#### [Watcher_order_by.actionIndex](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.chainId](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.db_write_timestamp](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.id](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.initialized](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.logs](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) + +#### [Watcher_order_by.streamIndex](#)[order_by](/docs/api/lockup/graphql/envio/enums/order-by.mdx) diff --git a/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-input.mdx b/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-input.mdx new file mode 100644 index 00000000..953b298a --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-input.mdx @@ -0,0 +1,81 @@ +--- +id: watcher-stream-cursor-input +title: Watcher_stream_cursor_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Streaming cursor of the table "Watcher" + +```graphql +input Watcher_stream_cursor_input { + initial_value: Watcher_stream_cursor_value_input! + ordering: cursor_ordering +} +``` + +### Fields + +#### [Watcher_stream_cursor_input.initial_value](#)[Watcher_stream_cursor_value_input!](/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx) + +Stream column input with initial value + +#### [Watcher_stream_cursor_input.ordering](#)[cursor_ordering](/docs/api/lockup/graphql/envio/enums/cursor-ordering.mdx) + +cursor ordering diff --git a/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx b/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx new file mode 100644 index 00000000..b1c4fe4d --- /dev/null +++ b/docs/api/lockup/graphql/envio/inputs/watcher-stream-cursor-value-input.mdx @@ -0,0 +1,92 @@ +--- +id: watcher-stream-cursor-value-input +title: Watcher_stream_cursor_value_input +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Initial value of the column from where the streaming should start + +```graphql +input Watcher_stream_cursor_value_input { + actionIndex: numeric + chainId: numeric + db_write_timestamp: timestamp + id: String + initialized: Boolean + logs: [String!] + streamIndex: numeric +} +``` + +### Fields + +#### [Watcher_stream_cursor_value_input.actionIndex](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.chainId](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Watcher_stream_cursor_value_input.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher_stream_cursor_value_input.id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Watcher_stream_cursor_value_input.initialized](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Watcher_stream_cursor_value_input.logs](#)[[String!]](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Watcher_stream_cursor_value_input.streamIndex](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/_category_.yml b/docs/api/lockup/graphql/envio/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/lockup/graphql/envio/objects/action.mdx b/docs/api/lockup/graphql/envio/objects/action.mdx new file mode 100644 index 00000000..7c84569a --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/action.mdx @@ -0,0 +1,129 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Action" + +```graphql +type Action { + addressA: String + addressB: String + amountA: numeric + amountB: numeric + block: numeric! + category: actioncategory! + chainId: numeric! + contract: Contract + contract_id: String! + db_write_timestamp: timestamp + fee: numeric + from: String! + hash: String! + id: String! + stream: Stream + stream_id: String + subgraphId: numeric! + timestamp: numeric! +} +``` + +### Fields + +#### [Action.addressA](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.addressB](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.amountA](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.amountB](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.block](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.category](#)[actioncategory!](/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx) + +#### [Action.chainId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.contract](#)[Contract](/docs/api/lockup/graphql/envio/objects/contract.mdx) + +An object relationship + +#### [Action.contract_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Action.fee](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.from](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.stream](#)[Stream](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An object relationship + +#### [Action.stream_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Action.subgraphId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Action.timestamp](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/asset.mdx b/docs/api/lockup/graphql/envio/objects/asset.mdx new file mode 100644 index 00000000..2b777caa --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/asset.mdx @@ -0,0 +1,123 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Asset" + +```graphql +type Asset { + address: String! + chainId: numeric! + db_write_timestamp: timestamp + decimals: numeric! + id: String! + name: String! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + symbol: String! +} +``` + +### Fields + +#### [Asset.address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset.chainId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Asset.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Asset.decimals](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Asset.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset.name](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Asset.streams](#)[[Stream!]!](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Asset.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Asset.streams.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Asset.streams.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Asset.streams.order_by](#)[[Stream_order_by!]](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Asset.streams.where](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Asset.symbol](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/batch.mdx b/docs/api/lockup/graphql/envio/objects/batch.mdx new file mode 100644 index 00000000..37413e82 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/batch.mdx @@ -0,0 +1,128 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Batch" + +```graphql +type Batch { + batcher: Batcher + batcher_id: String + db_write_timestamp: timestamp + hash: String! + id: String! + label: String + size: numeric! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + timestamp: numeric! +} +``` + +### Fields + +#### [Batch.batcher](#)[Batcher](/docs/api/lockup/graphql/envio/objects/batcher.mdx) + +An object relationship + +#### [Batch.batcher_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Batch.hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch.label](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batch.size](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Batch.streams](#)[[Stream!]!](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Batch.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Batch.streams.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Batch.streams.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Batch.streams.order_by](#)[[Stream_order_by!]](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Batch.streams.where](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Batch.timestamp](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/batcher.mdx b/docs/api/lockup/graphql/envio/objects/batcher.mdx new file mode 100644 index 00000000..e07dc20a --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/batcher.mdx @@ -0,0 +1,114 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Batcher" + +```graphql +type Batcher { + address: String! + batchIndex: numeric! + batches( + distinct_on: [Batch_select_column!] + limit: Int + offset: Int + order_by: [Batch_order_by!] + where: Batch_bool_exp + ): [Batch!]! + db_write_timestamp: timestamp + id: String! +} +``` + +### Fields + +#### [Batcher.address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Batcher.batchIndex](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Batcher.batches](#)[[Batch!]!](/docs/api/lockup/graphql/envio/objects/batch.mdx) + +An array relationship + +##### [Batcher.batches.distinct_on](#)[[Batch_select_column!]](/docs/api/lockup/graphql/envio/enums/batch-select-column.mdx) + +distinct select on columns + +##### [Batcher.batches.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Batcher.batches.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Batcher.batches.order_by](#)[[Batch_order_by!]](/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx) + +sort the rows by one or more columns + +##### [Batcher.batches.where](#)[Batch_bool_exp](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +filter the rows returned + +#### [Batcher.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Batcher.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/chain-metadata.mdx b/docs/api/lockup/graphql/envio/objects/chain-metadata.mdx new file mode 100644 index 00000000..92423b4b --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/chain-metadata.mdx @@ -0,0 +1,104 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "chain_metadata" + +```graphql +type chain_metadata { + block_height: Int! + chain_id: Int! + end_block: Int + first_event_block_number: Int + is_hyper_sync: Boolean! + latest_fetched_block_number: Int! + latest_processed_block: Int + num_batches_fetched: Int! + num_events_processed: Int + start_block: Int! + timestamp_caught_up_to_head_or_endblock: timestamptz +} +``` + +### Fields + +#### [chain_metadata.block_height](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.end_block](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.first_event_block_number](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.is_hyper_sync](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [chain_metadata.latest_fetched_block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.latest_processed_block](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_batches_fetched](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.num_events_processed](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.start_block](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [chain_metadata.timestamp_caught_up_to_head_or_endblock](#)[timestamptz](/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/contract.mdx b/docs/api/lockup/graphql/envio/objects/contract.mdx new file mode 100644 index 00000000..7eb52178 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/contract.mdx @@ -0,0 +1,157 @@ +--- +id: contract +title: Contract +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Contract" + +```graphql +type Contract { + actions( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp + ): [Action!]! + address: String! + admin: String + alias: String! + category: contractcategory! + chainId: numeric! + db_write_timestamp: timestamp + id: String! + streams( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp + ): [Stream!]! + version: String! +} +``` + +### Fields + +#### [Contract.actions](#)[[Action!]!](/docs/api/lockup/graphql/envio/objects/action.mdx) + +An array relationship + +##### [Contract.actions.distinct_on](#)[[Action_select_column!]](/docs/api/lockup/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +##### [Contract.actions.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Contract.actions.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Contract.actions.order_by](#)[[Action_order_by!]](/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +##### [Contract.actions.where](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +#### [Contract.address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract.admin](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract.alias](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract.category](#)[contractcategory!](/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx) + +#### [Contract.chainId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Contract.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Contract.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Contract.streams](#)[[Stream!]!](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An array relationship + +##### [Contract.streams.distinct_on](#)[[Stream_select_column!]](/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +##### [Contract.streams.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Contract.streams.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Contract.streams.order_by](#)[[Stream_order_by!]](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +##### [Contract.streams.where](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +#### [Contract.version](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/dynamic-contract-registry.mdx b/docs/api/lockup/graphql/envio/objects/dynamic-contract-registry.mdx new file mode 100644 index 00000000..68c003b7 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/dynamic-contract-registry.mdx @@ -0,0 +1,101 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "dynamic_contract_registry" + +```graphql +type dynamic_contract_registry { + chain_id: Int! + contract_address: String! + contract_type: contract_type! + id: String! + registering_event_block_number: Int! + registering_event_block_timestamp: Int! + registering_event_contract_name: String! + registering_event_log_index: Int! + registering_event_name: String! + registering_event_src_address: String! +} +``` + +### Fields + +#### [dynamic_contract_registry.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.contract_address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.contract_type](#)[contract_type!](/docs/api/lockup/graphql/envio/scalars/contract-type.mdx) + +#### [dynamic_contract_registry.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_block_timestamp](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_contract_name](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_log_index](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [dynamic_contract_registry.registering_event_name](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [dynamic_contract_registry.registering_event_src_address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/end-of-block-range-scanned-data.mdx b/docs/api/lockup/graphql/envio/objects/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..223dc95b --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/end-of-block-range-scanned-data.mdx @@ -0,0 +1,80 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "end_of_block_range_scanned_data" + +```graphql +type end_of_block_range_scanned_data { + block_hash: String! + block_number: Int! + chain_id: Int! +} +``` + +### Fields + +#### [end_of_block_range_scanned_data.block_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [end_of_block_range_scanned_data.block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/event-sync-state.mdx b/docs/api/lockup/graphql/envio/objects/event-sync-state.mdx new file mode 100644 index 00000000..aaf1e7fa --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/event-sync-state.mdx @@ -0,0 +1,86 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "event_sync_state" + +```graphql +type event_sync_state { + block_number: Int! + block_timestamp: Int! + chain_id: Int! + is_pre_registering_dynamic_contracts: Boolean + log_index: Int! +} +``` + +### Fields + +#### [event_sync_state.block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.block_timestamp](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [event_sync_state.is_pre_registering_dynamic_contracts](#)[Boolean](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [event_sync_state.log_index](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/persisted-state.mdx b/docs/api/lockup/graphql/envio/objects/persisted-state.mdx new file mode 100644 index 00000000..8c34b37a --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/persisted-state.mdx @@ -0,0 +1,89 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "persisted_state" + +```graphql +type persisted_state { + abi_files_hash: String! + config_hash: String! + envio_version: String! + handler_files_hash: String! + id: Int! + schema_hash: String! +} +``` + +### Fields + +#### [persisted_state.abi_files_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state.config_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state.envio_version](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state.handler_files_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [persisted_state.id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [persisted_state.schema_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/raw-events.mdx b/docs/api/lockup/graphql/envio/objects/raw-events.mdx new file mode 100644 index 00000000..fc19ad07 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/raw-events.mdx @@ -0,0 +1,125 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "raw_events" + +```graphql +type raw_events { + block_fields(path: String): jsonb! + block_hash: String! + block_number: Int! + block_timestamp: Int! + chain_id: Int! + contract_name: String! + db_write_timestamp: timestamp + event_id: numeric! + event_name: String! + log_index: Int! + params(path: String): jsonb! + serial: Int! + src_address: String! + transaction_fields(path: String): jsonb! +} +``` + +### Fields + +#### [raw_events.block_fields](#)[jsonb!](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.block_fields.path](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.block_hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events.block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events.block_timestamp](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events.contract_name](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [raw_events.event_id](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [raw_events.event_name](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events.log_index](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events.params](#)[jsonb!](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.params.path](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +JSON select path + +#### [raw_events.serial](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [raw_events.src_address](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [raw_events.transaction_fields](#)[jsonb!](/docs/api/lockup/graphql/envio/scalars/jsonb.mdx) + +##### [raw_events.transaction_fields.path](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +JSON select path diff --git a/docs/api/lockup/graphql/envio/objects/segment.mdx b/docs/api/lockup/graphql/envio/objects/segment.mdx new file mode 100644 index 00000000..b9376767 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/segment.mdx @@ -0,0 +1,109 @@ +--- +id: segment +title: Segment +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Segment" + +```graphql +type Segment { + amount: numeric! + db_write_timestamp: timestamp + endAmount: numeric! + endTime: numeric! + exponent: numeric! + id: String! + milestone: numeric! + position: numeric! + startAmount: numeric! + startTime: numeric! + stream: Stream + stream_id: String! +} +``` + +### Fields + +#### [Segment.amount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Segment.endAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.endTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.exponent](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Segment.milestone](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.position](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.startAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.startTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Segment.stream](#)[Stream](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An object relationship + +#### [Segment.stream_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/stream.mdx b/docs/api/lockup/graphql/envio/objects/stream.mdx new file mode 100644 index 00000000..89a375d7 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/stream.mdx @@ -0,0 +1,312 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Stream" + +```graphql +type Stream { + actions( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp + ): [Action!]! + alias: String! + asset: Asset + asset_id: String! + batch: Batch + batch_id: String! + brokerFeeAmount: numeric! + cancelable: Boolean! + canceled: Boolean! + canceledAction: Action + canceledAction_id: String + canceledTime: numeric + category: streamcategory! + chainId: numeric! + cliff: Boolean! + cliffAmount: numeric + cliffTime: numeric + contract: Contract + contract_id: String! + db_write_timestamp: timestamp + depositAmount: numeric! + duration: numeric! + endTime: numeric! + funder: String! + hash: String! + id: String! + initial: Boolean! + initialAmount: numeric + intactAmount: numeric! + parties: [String!]! + position: numeric! + protocolFeeAmount: numeric! + proxender: String + proxied: Boolean! + recipient: String! + renounceAction: Action + renounceAction_id: String + renounceTime: numeric + segments( + distinct_on: [Segment_select_column!] + limit: Int + offset: Int + order_by: [Segment_order_by!] + where: Segment_bool_exp + ): [Segment!]! + sender: String! + shape: String + startTime: numeric! + subgraphId: numeric! + timestamp: numeric! + tokenId: numeric! + tranches( + distinct_on: [Tranche_select_column!] + limit: Int + offset: Int + order_by: [Tranche_order_by!] + where: Tranche_bool_exp + ): [Tranche!]! + transferable: Boolean! + version: String! + withdrawnAmount: numeric! +} +``` + +### Fields + +#### [Stream.actions](#)[[Action!]!](/docs/api/lockup/graphql/envio/objects/action.mdx) + +An array relationship + +##### [Stream.actions.distinct_on](#)[[Action_select_column!]](/docs/api/lockup/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +##### [Stream.actions.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Stream.actions.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Stream.actions.order_by](#)[[Action_order_by!]](/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +##### [Stream.actions.where](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +#### [Stream.alias](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.asset](#)[Asset](/docs/api/lockup/graphql/envio/objects/asset.mdx) + +An object relationship + +#### [Stream.asset_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.batch](#)[Batch](/docs/api/lockup/graphql/envio/objects/batch.mdx) + +An object relationship + +#### [Stream.batch_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.brokerFeeAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.cancelable](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.canceled](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.canceledAction](#)[Action](/docs/api/lockup/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Stream.canceledAction_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.canceledTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.category](#)[streamcategory!](/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx) + +#### [Stream.chainId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.cliff](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.cliffAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.cliffTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.contract](#)[Contract](/docs/api/lockup/graphql/envio/objects/contract.mdx) + +An object relationship + +#### [Stream.contract_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Stream.depositAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.duration](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.endTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.funder](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.hash](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.initial](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.initialAmount](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.intactAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.parties](#)[[String!]!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.position](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.protocolFeeAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.proxender](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.proxied](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.recipient](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.renounceAction](#)[Action](/docs/api/lockup/graphql/envio/objects/action.mdx) + +An object relationship + +#### [Stream.renounceAction_id](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.renounceTime](#)[numeric](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.segments](#)[[Segment!]!](/docs/api/lockup/graphql/envio/objects/segment.mdx) + +An array relationship + +##### [Stream.segments.distinct_on](#)[[Segment_select_column!]](/docs/api/lockup/graphql/envio/enums/segment-select-column.mdx) + +distinct select on columns + +##### [Stream.segments.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Stream.segments.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Stream.segments.order_by](#)[[Segment_order_by!]](/docs/api/lockup/graphql/envio/inputs/segment-order-by.mdx) + +sort the rows by one or more columns + +##### [Stream.segments.where](#)[Segment_bool_exp](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +filter the rows returned + +#### [Stream.sender](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.shape](#)[String](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.startTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.subgraphId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.timestamp](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.tokenId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Stream.tranches](#)[[Tranche!]!](/docs/api/lockup/graphql/envio/objects/tranche.mdx) + +An array relationship + +##### [Stream.tranches.distinct_on](#)[[Tranche_select_column!]](/docs/api/lockup/graphql/envio/enums/tranche-select-column.mdx) + +distinct select on columns + +##### [Stream.tranches.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +##### [Stream.tranches.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +##### [Stream.tranches.order_by](#)[[Tranche_order_by!]](/docs/api/lockup/graphql/envio/inputs/tranche-order-by.mdx) + +sort the rows by one or more columns + +##### [Stream.tranches.where](#)[Tranche_bool_exp](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +filter the rows returned + +#### [Stream.transferable](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Stream.version](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Stream.withdrawnAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/tranche.mdx b/docs/api/lockup/graphql/envio/objects/tranche.mdx new file mode 100644 index 00000000..b4a24b88 --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/tranche.mdx @@ -0,0 +1,106 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Tranche" + +```graphql +type Tranche { + amount: numeric! + db_write_timestamp: timestamp + endAmount: numeric! + endTime: numeric! + id: String! + position: numeric! + startAmount: numeric! + startTime: numeric! + stream: Stream + stream_id: String! + timestamp: numeric! +} +``` + +### Fields + +#### [Tranche.amount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Tranche.endAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.endTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Tranche.position](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.startAmount](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.startTime](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Tranche.stream](#)[Stream](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +An object relationship + +#### [Tranche.stream_id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Tranche.timestamp](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/objects/watcher.mdx b/docs/api/lockup/graphql/envio/objects/watcher.mdx new file mode 100644 index 00000000..2762b33e --- /dev/null +++ b/docs/api/lockup/graphql/envio/objects/watcher.mdx @@ -0,0 +1,92 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +columns and relationships of "Watcher" + +```graphql +type Watcher { + actionIndex: numeric! + chainId: numeric! + db_write_timestamp: timestamp + id: String! + initialized: Boolean! + logs: [String!]! + streamIndex: numeric! +} +``` + +### Fields + +#### [Watcher.actionIndex](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.chainId](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) + +#### [Watcher.db_write_timestamp](#)[timestamp](/docs/api/lockup/graphql/envio/scalars/timestamp.mdx) + +#### [Watcher.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Watcher.initialized](#)[Boolean!](/docs/api/lockup/graphql/envio/scalars/boolean.mdx) + +#### [Watcher.logs](#)[[String!]!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +#### [Watcher.streamIndex](#)[numeric!](/docs/api/lockup/graphql/envio/scalars/numeric.mdx) diff --git a/docs/api/lockup/graphql/envio/queries/_category_.yml b/docs/api/lockup/graphql/envio/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/lockup/graphql/envio/queries/action-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/action-by-pk.mdx new file mode 100644 index 00000000..01d57561 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/action-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: action-by-pk +title: Action_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Action" using primary key columns + +```graphql +Action_by_pk( + id: String! +): Action +``` + +### Arguments + +#### [Action_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Action](/docs/api/lockup/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/lockup/graphql/envio/queries/action.mdx b/docs/api/lockup/graphql/envio/queries/action.mdx new file mode 100644 index 00000000..bd8933f0 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/action.mdx @@ -0,0 +1,102 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Action" + +```graphql +Action( + distinct_on: [Action_select_column!] + limit: Int + offset: Int + order_by: [Action_order_by!] + where: Action_bool_exp +): [Action!]! +``` + +### Arguments + +#### [Action.distinct_on](#)[[Action_select_column!]](/docs/api/lockup/graphql/envio/enums/action-select-column.mdx) + +distinct select on columns + +#### [Action.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Action.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Action.order_by](#)[[Action_order_by!]](/docs/api/lockup/graphql/envio/inputs/action-order-by.mdx) + +sort the rows by one or more columns + +#### [Action.where](#)[Action_bool_exp](/docs/api/lockup/graphql/envio/inputs/action-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Action](/docs/api/lockup/graphql/envio/objects/action.mdx) + +columns and relationships of "Action" diff --git a/docs/api/lockup/graphql/envio/queries/asset-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/asset-by-pk.mdx new file mode 100644 index 00000000..d54235d9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/asset-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: asset-by-pk +title: Asset_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Asset" using primary key columns + +```graphql +Asset_by_pk( + id: String! +): Asset +``` + +### Arguments + +#### [Asset_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Asset](/docs/api/lockup/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/lockup/graphql/envio/queries/asset.mdx b/docs/api/lockup/graphql/envio/queries/asset.mdx new file mode 100644 index 00000000..9f3331bf --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/asset.mdx @@ -0,0 +1,102 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Asset" + +```graphql +Asset( + distinct_on: [Asset_select_column!] + limit: Int + offset: Int + order_by: [Asset_order_by!] + where: Asset_bool_exp +): [Asset!]! +``` + +### Arguments + +#### [Asset.distinct_on](#)[[Asset_select_column!]](/docs/api/lockup/graphql/envio/enums/asset-select-column.mdx) + +distinct select on columns + +#### [Asset.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Asset.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Asset.order_by](#)[[Asset_order_by!]](/docs/api/lockup/graphql/envio/inputs/asset-order-by.mdx) + +sort the rows by one or more columns + +#### [Asset.where](#)[Asset_bool_exp](/docs/api/lockup/graphql/envio/inputs/asset-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Asset](/docs/api/lockup/graphql/envio/objects/asset.mdx) + +columns and relationships of "Asset" diff --git a/docs/api/lockup/graphql/envio/queries/batch-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/batch-by-pk.mdx new file mode 100644 index 00000000..5e50efbb --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/batch-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: batch-by-pk +title: Batch_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batch" using primary key columns + +```graphql +Batch_by_pk( + id: String! +): Batch +``` + +### Arguments + +#### [Batch_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Batch](/docs/api/lockup/graphql/envio/objects/batch.mdx) + +columns and relationships of "Batch" diff --git a/docs/api/lockup/graphql/envio/queries/batch.mdx b/docs/api/lockup/graphql/envio/queries/batch.mdx new file mode 100644 index 00000000..5c0c5da8 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/batch.mdx @@ -0,0 +1,102 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batch" + +```graphql +Batch( + distinct_on: [Batch_select_column!] + limit: Int + offset: Int + order_by: [Batch_order_by!] + where: Batch_bool_exp +): [Batch!]! +``` + +### Arguments + +#### [Batch.distinct_on](#)[[Batch_select_column!]](/docs/api/lockup/graphql/envio/enums/batch-select-column.mdx) + +distinct select on columns + +#### [Batch.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Batch.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Batch.order_by](#)[[Batch_order_by!]](/docs/api/lockup/graphql/envio/inputs/batch-order-by.mdx) + +sort the rows by one or more columns + +#### [Batch.where](#)[Batch_bool_exp](/docs/api/lockup/graphql/envio/inputs/batch-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Batch](/docs/api/lockup/graphql/envio/objects/batch.mdx) + +columns and relationships of "Batch" diff --git a/docs/api/lockup/graphql/envio/queries/batcher-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/batcher-by-pk.mdx new file mode 100644 index 00000000..5422a00f --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/batcher-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: batcher-by-pk +title: Batcher_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batcher" using primary key columns + +```graphql +Batcher_by_pk( + id: String! +): Batcher +``` + +### Arguments + +#### [Batcher_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Batcher](/docs/api/lockup/graphql/envio/objects/batcher.mdx) + +columns and relationships of "Batcher" diff --git a/docs/api/lockup/graphql/envio/queries/batcher.mdx b/docs/api/lockup/graphql/envio/queries/batcher.mdx new file mode 100644 index 00000000..62c8f4d9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/batcher.mdx @@ -0,0 +1,102 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Batcher" + +```graphql +Batcher( + distinct_on: [Batcher_select_column!] + limit: Int + offset: Int + order_by: [Batcher_order_by!] + where: Batcher_bool_exp +): [Batcher!]! +``` + +### Arguments + +#### [Batcher.distinct_on](#)[[Batcher_select_column!]](/docs/api/lockup/graphql/envio/enums/batcher-select-column.mdx) + +distinct select on columns + +#### [Batcher.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Batcher.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Batcher.order_by](#)[[Batcher_order_by!]](/docs/api/lockup/graphql/envio/inputs/batcher-order-by.mdx) + +sort the rows by one or more columns + +#### [Batcher.where](#)[Batcher_bool_exp](/docs/api/lockup/graphql/envio/inputs/batcher-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Batcher](/docs/api/lockup/graphql/envio/objects/batcher.mdx) + +columns and relationships of "Batcher" diff --git a/docs/api/lockup/graphql/envio/queries/chain-metadata-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/chain-metadata-by-pk.mdx new file mode 100644 index 00000000..44eccbd3 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/chain-metadata-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: chain-metadata-by-pk +title: chain_metadata_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "chain_metadata" using primary key columns + +```graphql +chain_metadata_by_pk( + chain_id: Int! +): chain_metadata +``` + +### Arguments + +#### [chain_metadata_by_pk.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +### Type + +#### [chain_metadata](/docs/api/lockup/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/lockup/graphql/envio/queries/chain-metadata.mdx b/docs/api/lockup/graphql/envio/queries/chain-metadata.mdx new file mode 100644 index 00000000..861f329b --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/chain-metadata.mdx @@ -0,0 +1,102 @@ +--- +id: chain-metadata +title: chain_metadata +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "chain_metadata" + +```graphql +chain_metadata( + distinct_on: [chain_metadata_select_column!] + limit: Int + offset: Int + order_by: [chain_metadata_order_by!] + where: chain_metadata_bool_exp +): [chain_metadata!]! +``` + +### Arguments + +#### [chain_metadata.distinct_on](#)[[chain_metadata_select_column!]](/docs/api/lockup/graphql/envio/enums/chain-metadata-select-column.mdx) + +distinct select on columns + +#### [chain_metadata.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [chain_metadata.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [chain_metadata.order_by](#)[[chain_metadata_order_by!]](/docs/api/lockup/graphql/envio/inputs/chain-metadata-order-by.mdx) + +sort the rows by one or more columns + +#### [chain_metadata.where](#)[chain_metadata_bool_exp](/docs/api/lockup/graphql/envio/inputs/chain-metadata-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [chain_metadata](/docs/api/lockup/graphql/envio/objects/chain-metadata.mdx) + +columns and relationships of "chain_metadata" diff --git a/docs/api/lockup/graphql/envio/queries/contract-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/contract-by-pk.mdx new file mode 100644 index 00000000..3eaa7ae3 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/contract-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: contract-by-pk +title: Contract_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Contract" using primary key columns + +```graphql +Contract_by_pk( + id: String! +): Contract +``` + +### Arguments + +#### [Contract_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Contract](/docs/api/lockup/graphql/envio/objects/contract.mdx) + +columns and relationships of "Contract" diff --git a/docs/api/lockup/graphql/envio/queries/contract.mdx b/docs/api/lockup/graphql/envio/queries/contract.mdx new file mode 100644 index 00000000..26a215f4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/contract.mdx @@ -0,0 +1,102 @@ +--- +id: contract +title: Contract +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Contract" + +```graphql +Contract( + distinct_on: [Contract_select_column!] + limit: Int + offset: Int + order_by: [Contract_order_by!] + where: Contract_bool_exp +): [Contract!]! +``` + +### Arguments + +#### [Contract.distinct_on](#)[[Contract_select_column!]](/docs/api/lockup/graphql/envio/enums/contract-select-column.mdx) + +distinct select on columns + +#### [Contract.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Contract.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Contract.order_by](#)[[Contract_order_by!]](/docs/api/lockup/graphql/envio/inputs/contract-order-by.mdx) + +sort the rows by one or more columns + +#### [Contract.where](#)[Contract_bool_exp](/docs/api/lockup/graphql/envio/inputs/contract-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Contract](/docs/api/lockup/graphql/envio/objects/contract.mdx) + +columns and relationships of "Contract" diff --git a/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx new file mode 100644 index 00000000..2a8909f5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: dynamic-contract-registry-by-pk +title: dynamic_contract_registry_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "dynamic_contract_registry" using primary key columns + +```graphql +dynamic_contract_registry_by_pk( + id: String! +): dynamic_contract_registry +``` + +### Arguments + +#### [dynamic_contract_registry_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [dynamic_contract_registry](/docs/api/lockup/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry.mdx b/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry.mdx new file mode 100644 index 00000000..1204d60f --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/dynamic-contract-registry.mdx @@ -0,0 +1,102 @@ +--- +id: dynamic-contract-registry +title: dynamic_contract_registry +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "dynamic_contract_registry" + +```graphql +dynamic_contract_registry( + distinct_on: [dynamic_contract_registry_select_column!] + limit: Int + offset: Int + order_by: [dynamic_contract_registry_order_by!] + where: dynamic_contract_registry_bool_exp +): [dynamic_contract_registry!]! +``` + +### Arguments + +#### [dynamic_contract_registry.distinct_on](#)[[dynamic_contract_registry_select_column!]](/docs/api/lockup/graphql/envio/enums/dynamic-contract-registry-select-column.mdx) + +distinct select on columns + +#### [dynamic_contract_registry.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [dynamic_contract_registry.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [dynamic_contract_registry.order_by](#)[[dynamic_contract_registry_order_by!]](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-order-by.mdx) + +sort the rows by one or more columns + +#### [dynamic_contract_registry.where](#)[dynamic_contract_registry_bool_exp](/docs/api/lockup/graphql/envio/inputs/dynamic-contract-registry-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [dynamic_contract_registry](/docs/api/lockup/graphql/envio/objects/dynamic-contract-registry.mdx) + +columns and relationships of "dynamic_contract_registry" diff --git a/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx new file mode 100644 index 00000000..8c69a79f --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data-by-pk.mdx @@ -0,0 +1,83 @@ +--- +id: end-of-block-range-scanned-data-by-pk +title: end_of_block_range_scanned_data_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" using primary key columns + +```graphql +end_of_block_range_scanned_data_by_pk( + block_number: Int! + chain_id: Int! +): end_of_block_range_scanned_data +``` + +### Arguments + +#### [end_of_block_range_scanned_data_by_pk.block_number](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +#### [end_of_block_range_scanned_data_by_pk.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/lockup/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data.mdx b/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data.mdx new file mode 100644 index 00000000..72bd9051 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/end-of-block-range-scanned-data.mdx @@ -0,0 +1,102 @@ +--- +id: end-of-block-range-scanned-data +title: end_of_block_range_scanned_data +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "end_of_block_range_scanned_data" + +```graphql +end_of_block_range_scanned_data( + distinct_on: [end_of_block_range_scanned_data_select_column!] + limit: Int + offset: Int + order_by: [end_of_block_range_scanned_data_order_by!] + where: end_of_block_range_scanned_data_bool_exp +): [end_of_block_range_scanned_data!]! +``` + +### Arguments + +#### [end_of_block_range_scanned_data.distinct_on](#)[[end_of_block_range_scanned_data_select_column!]](/docs/api/lockup/graphql/envio/enums/end-of-block-range-scanned-data-select-column.mdx) + +distinct select on columns + +#### [end_of_block_range_scanned_data.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [end_of_block_range_scanned_data.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [end_of_block_range_scanned_data.order_by](#)[[end_of_block_range_scanned_data_order_by!]](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-order-by.mdx) + +sort the rows by one or more columns + +#### [end_of_block_range_scanned_data.where](#)[end_of_block_range_scanned_data_bool_exp](/docs/api/lockup/graphql/envio/inputs/end-of-block-range-scanned-data-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [end_of_block_range_scanned_data](/docs/api/lockup/graphql/envio/objects/end-of-block-range-scanned-data.mdx) + +columns and relationships of "end_of_block_range_scanned_data" diff --git a/docs/api/lockup/graphql/envio/queries/event-sync-state-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/event-sync-state-by-pk.mdx new file mode 100644 index 00000000..178dc924 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/event-sync-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: event-sync-state-by-pk +title: event_sync_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "event_sync_state" using primary key columns + +```graphql +event_sync_state_by_pk( + chain_id: Int! +): event_sync_state +``` + +### Arguments + +#### [event_sync_state_by_pk.chain_id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +### Type + +#### [event_sync_state](/docs/api/lockup/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/lockup/graphql/envio/queries/event-sync-state.mdx b/docs/api/lockup/graphql/envio/queries/event-sync-state.mdx new file mode 100644 index 00000000..df5c3051 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/event-sync-state.mdx @@ -0,0 +1,102 @@ +--- +id: event-sync-state +title: event_sync_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "event_sync_state" + +```graphql +event_sync_state( + distinct_on: [event_sync_state_select_column!] + limit: Int + offset: Int + order_by: [event_sync_state_order_by!] + where: event_sync_state_bool_exp +): [event_sync_state!]! +``` + +### Arguments + +#### [event_sync_state.distinct_on](#)[[event_sync_state_select_column!]](/docs/api/lockup/graphql/envio/enums/event-sync-state-select-column.mdx) + +distinct select on columns + +#### [event_sync_state.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [event_sync_state.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [event_sync_state.order_by](#)[[event_sync_state_order_by!]](/docs/api/lockup/graphql/envio/inputs/event-sync-state-order-by.mdx) + +sort the rows by one or more columns + +#### [event_sync_state.where](#)[event_sync_state_bool_exp](/docs/api/lockup/graphql/envio/inputs/event-sync-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [event_sync_state](/docs/api/lockup/graphql/envio/objects/event-sync-state.mdx) + +columns and relationships of "event_sync_state" diff --git a/docs/api/lockup/graphql/envio/queries/persisted-state-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/persisted-state-by-pk.mdx new file mode 100644 index 00000000..cb9c68fa --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/persisted-state-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: persisted-state-by-pk +title: persisted_state_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "persisted_state" using primary key columns + +```graphql +persisted_state_by_pk( + id: Int! +): persisted_state +``` + +### Arguments + +#### [persisted_state_by_pk.id](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +### Type + +#### [persisted_state](/docs/api/lockup/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/lockup/graphql/envio/queries/persisted-state.mdx b/docs/api/lockup/graphql/envio/queries/persisted-state.mdx new file mode 100644 index 00000000..c05e276b --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/persisted-state.mdx @@ -0,0 +1,102 @@ +--- +id: persisted-state +title: persisted_state +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "persisted_state" + +```graphql +persisted_state( + distinct_on: [persisted_state_select_column!] + limit: Int + offset: Int + order_by: [persisted_state_order_by!] + where: persisted_state_bool_exp +): [persisted_state!]! +``` + +### Arguments + +#### [persisted_state.distinct_on](#)[[persisted_state_select_column!]](/docs/api/lockup/graphql/envio/enums/persisted-state-select-column.mdx) + +distinct select on columns + +#### [persisted_state.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [persisted_state.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [persisted_state.order_by](#)[[persisted_state_order_by!]](/docs/api/lockup/graphql/envio/inputs/persisted-state-order-by.mdx) + +sort the rows by one or more columns + +#### [persisted_state.where](#)[persisted_state_bool_exp](/docs/api/lockup/graphql/envio/inputs/persisted-state-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [persisted_state](/docs/api/lockup/graphql/envio/objects/persisted-state.mdx) + +columns and relationships of "persisted_state" diff --git a/docs/api/lockup/graphql/envio/queries/raw-events-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/raw-events-by-pk.mdx new file mode 100644 index 00000000..d6ba6d8e --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/raw-events-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: raw-events-by-pk +title: raw_events_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "raw_events" using primary key columns + +```graphql +raw_events_by_pk( + serial: Int! +): raw_events +``` + +### Arguments + +#### [raw_events_by_pk.serial](#)[Int!](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +### Type + +#### [raw_events](/docs/api/lockup/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/lockup/graphql/envio/queries/raw-events.mdx b/docs/api/lockup/graphql/envio/queries/raw-events.mdx new file mode 100644 index 00000000..688fbe3d --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/raw-events.mdx @@ -0,0 +1,102 @@ +--- +id: raw-events +title: raw_events +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "raw_events" + +```graphql +raw_events( + distinct_on: [raw_events_select_column!] + limit: Int + offset: Int + order_by: [raw_events_order_by!] + where: raw_events_bool_exp +): [raw_events!]! +``` + +### Arguments + +#### [raw_events.distinct_on](#)[[raw_events_select_column!]](/docs/api/lockup/graphql/envio/enums/raw-events-select-column.mdx) + +distinct select on columns + +#### [raw_events.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [raw_events.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [raw_events.order_by](#)[[raw_events_order_by!]](/docs/api/lockup/graphql/envio/inputs/raw-events-order-by.mdx) + +sort the rows by one or more columns + +#### [raw_events.where](#)[raw_events_bool_exp](/docs/api/lockup/graphql/envio/inputs/raw-events-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [raw_events](/docs/api/lockup/graphql/envio/objects/raw-events.mdx) + +columns and relationships of "raw_events" diff --git a/docs/api/lockup/graphql/envio/queries/segment-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/segment-by-pk.mdx new file mode 100644 index 00000000..e014c986 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/segment-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: segment-by-pk +title: Segment_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Segment" using primary key columns + +```graphql +Segment_by_pk( + id: String! +): Segment +``` + +### Arguments + +#### [Segment_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Segment](/docs/api/lockup/graphql/envio/objects/segment.mdx) + +columns and relationships of "Segment" diff --git a/docs/api/lockup/graphql/envio/queries/segment.mdx b/docs/api/lockup/graphql/envio/queries/segment.mdx new file mode 100644 index 00000000..74a17c78 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/segment.mdx @@ -0,0 +1,102 @@ +--- +id: segment +title: Segment +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Segment" + +```graphql +Segment( + distinct_on: [Segment_select_column!] + limit: Int + offset: Int + order_by: [Segment_order_by!] + where: Segment_bool_exp +): [Segment!]! +``` + +### Arguments + +#### [Segment.distinct_on](#)[[Segment_select_column!]](/docs/api/lockup/graphql/envio/enums/segment-select-column.mdx) + +distinct select on columns + +#### [Segment.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Segment.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Segment.order_by](#)[[Segment_order_by!]](/docs/api/lockup/graphql/envio/inputs/segment-order-by.mdx) + +sort the rows by one or more columns + +#### [Segment.where](#)[Segment_bool_exp](/docs/api/lockup/graphql/envio/inputs/segment-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Segment](/docs/api/lockup/graphql/envio/objects/segment.mdx) + +columns and relationships of "Segment" diff --git a/docs/api/lockup/graphql/envio/queries/stream-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/stream-by-pk.mdx new file mode 100644 index 00000000..d1a41cd9 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/stream-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: stream-by-pk +title: Stream_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Stream" using primary key columns + +```graphql +Stream_by_pk( + id: String! +): Stream +``` + +### Arguments + +#### [Stream_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Stream](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +columns and relationships of "Stream" diff --git a/docs/api/lockup/graphql/envio/queries/stream.mdx b/docs/api/lockup/graphql/envio/queries/stream.mdx new file mode 100644 index 00000000..3c51872b --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/stream.mdx @@ -0,0 +1,102 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Stream" + +```graphql +Stream( + distinct_on: [Stream_select_column!] + limit: Int + offset: Int + order_by: [Stream_order_by!] + where: Stream_bool_exp +): [Stream!]! +``` + +### Arguments + +#### [Stream.distinct_on](#)[[Stream_select_column!]](/docs/api/lockup/graphql/envio/enums/stream-select-column.mdx) + +distinct select on columns + +#### [Stream.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Stream.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Stream.order_by](#)[[Stream_order_by!]](/docs/api/lockup/graphql/envio/inputs/stream-order-by.mdx) + +sort the rows by one or more columns + +#### [Stream.where](#)[Stream_bool_exp](/docs/api/lockup/graphql/envio/inputs/stream-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Stream](/docs/api/lockup/graphql/envio/objects/stream.mdx) + +columns and relationships of "Stream" diff --git a/docs/api/lockup/graphql/envio/queries/tranche-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/tranche-by-pk.mdx new file mode 100644 index 00000000..f3701c1d --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/tranche-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: tranche-by-pk +title: Tranche_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Tranche" using primary key columns + +```graphql +Tranche_by_pk( + id: String! +): Tranche +``` + +### Arguments + +#### [Tranche_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Tranche](/docs/api/lockup/graphql/envio/objects/tranche.mdx) + +columns and relationships of "Tranche" diff --git a/docs/api/lockup/graphql/envio/queries/tranche.mdx b/docs/api/lockup/graphql/envio/queries/tranche.mdx new file mode 100644 index 00000000..93c92087 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/tranche.mdx @@ -0,0 +1,102 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Tranche" + +```graphql +Tranche( + distinct_on: [Tranche_select_column!] + limit: Int + offset: Int + order_by: [Tranche_order_by!] + where: Tranche_bool_exp +): [Tranche!]! +``` + +### Arguments + +#### [Tranche.distinct_on](#)[[Tranche_select_column!]](/docs/api/lockup/graphql/envio/enums/tranche-select-column.mdx) + +distinct select on columns + +#### [Tranche.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Tranche.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Tranche.order_by](#)[[Tranche_order_by!]](/docs/api/lockup/graphql/envio/inputs/tranche-order-by.mdx) + +sort the rows by one or more columns + +#### [Tranche.where](#)[Tranche_bool_exp](/docs/api/lockup/graphql/envio/inputs/tranche-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Tranche](/docs/api/lockup/graphql/envio/objects/tranche.mdx) + +columns and relationships of "Tranche" diff --git a/docs/api/lockup/graphql/envio/queries/watcher-by-pk.mdx b/docs/api/lockup/graphql/envio/queries/watcher-by-pk.mdx new file mode 100644 index 00000000..a7edb83b --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/watcher-by-pk.mdx @@ -0,0 +1,80 @@ +--- +id: watcher-by-pk +title: Watcher_by_pk +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Watcher" using primary key columns + +```graphql +Watcher_by_pk( + id: String! +): Watcher +``` + +### Arguments + +#### [Watcher_by_pk.id](#)[String!](/docs/api/lockup/graphql/envio/scalars/string.mdx) + +### Type + +#### [Watcher](/docs/api/lockup/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/lockup/graphql/envio/queries/watcher.mdx b/docs/api/lockup/graphql/envio/queries/watcher.mdx new file mode 100644 index 00000000..b419c701 --- /dev/null +++ b/docs/api/lockup/graphql/envio/queries/watcher.mdx @@ -0,0 +1,102 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +fetch data from the table: "Watcher" + +```graphql +Watcher( + distinct_on: [Watcher_select_column!] + limit: Int + offset: Int + order_by: [Watcher_order_by!] + where: Watcher_bool_exp +): [Watcher!]! +``` + +### Arguments + +#### [Watcher.distinct_on](#)[[Watcher_select_column!]](/docs/api/lockup/graphql/envio/enums/watcher-select-column.mdx) + +distinct select on columns + +#### [Watcher.limit](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +limit the number of rows returned + +#### [Watcher.offset](#)[Int](/docs/api/lockup/graphql/envio/scalars/int.mdx) + +skip the first n rows. Use only with order_by + +#### [Watcher.order_by](#)[[Watcher_order_by!]](/docs/api/lockup/graphql/envio/inputs/watcher-order-by.mdx) + +sort the rows by one or more columns + +#### [Watcher.where](#)[Watcher_bool_exp](/docs/api/lockup/graphql/envio/inputs/watcher-bool-exp.mdx) + +filter the rows returned + +### Type + +#### [Watcher](/docs/api/lockup/graphql/envio/objects/watcher.mdx) + +columns and relationships of "Watcher" diff --git a/docs/api/lockup/graphql/envio/scalars/_category_.yml b/docs/api/lockup/graphql/envio/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx b/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx new file mode 100644 index 00000000..21e4645d --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/actioncategory.mdx @@ -0,0 +1,68 @@ +--- +id: actioncategory +title: actioncategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar actioncategory +``` diff --git a/docs/api/lockup/graphql/envio/scalars/boolean.mdx b/docs/api/lockup/graphql/envio/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/lockup/graphql/envio/scalars/contract-type.mdx b/docs/api/lockup/graphql/envio/scalars/contract-type.mdx new file mode 100644 index 00000000..99414710 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/contract-type.mdx @@ -0,0 +1,68 @@ +--- +id: contract-type +title: contract_type +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar contract_type +``` diff --git a/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx b/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx new file mode 100644 index 00000000..99df023f --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/contractcategory.mdx @@ -0,0 +1,68 @@ +--- +id: contractcategory +title: contractcategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar contractcategory +``` diff --git a/docs/api/lockup/graphql/envio/scalars/int.mdx b/docs/api/lockup/graphql/envio/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/lockup/graphql/envio/scalars/jsonb.mdx b/docs/api/lockup/graphql/envio/scalars/jsonb.mdx new file mode 100644 index 00000000..0949bff4 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/jsonb.mdx @@ -0,0 +1,68 @@ +--- +id: jsonb +title: jsonb +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar jsonb +``` diff --git a/docs/api/lockup/graphql/envio/scalars/numeric.mdx b/docs/api/lockup/graphql/envio/scalars/numeric.mdx new file mode 100644 index 00000000..f30f26d5 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/numeric.mdx @@ -0,0 +1,68 @@ +--- +id: numeric +title: numeric +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar numeric +``` diff --git a/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx b/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx new file mode 100644 index 00000000..8b0436c3 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/streamcategory.mdx @@ -0,0 +1,68 @@ +--- +id: streamcategory +title: streamcategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar streamcategory +``` diff --git a/docs/api/lockup/graphql/envio/scalars/string.mdx b/docs/api/lockup/graphql/envio/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/lockup/graphql/envio/scalars/timestamp.mdx b/docs/api/lockup/graphql/envio/scalars/timestamp.mdx new file mode 100644 index 00000000..2787af52 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar timestamp +``` diff --git a/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx b/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx new file mode 100644 index 00000000..f6fafd93 --- /dev/null +++ b/docs/api/lockup/graphql/envio/scalars/timestamptz.mdx @@ -0,0 +1,68 @@ +--- +id: timestamptz +title: timestamptz +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar timestamptz +``` diff --git a/docs/api/lockup/graphql/the-graph/_category_.yml b/docs/api/lockup/graphql/the-graph/_category_.yml new file mode 100644 index 00000000..3dfd192f --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: The Graph +position: 2 diff --git a/docs/api/lockup/graphql/the-graph/enums/_category_.yml b/docs/api/lockup/graphql/the-graph/enums/_category_.yml new file mode 100644 index 00000000..fd594d5b --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Enums +position: 4 diff --git a/docs/api/lockup/graphql/the-graph/enums/action-category.mdx b/docs/api/lockup/graphql/the-graph/enums/action-category.mdx new file mode 100644 index 00000000..a5890a92 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/action-category.mdx @@ -0,0 +1,92 @@ +--- +id: action-category +title: ActionCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum ActionCategory { + Approval + ApprovalForAll + Cancel + Create + Renounce + Transfer + Withdraw +} +``` + +### Values + +#### [ActionCategory.Approval](#) + +#### [ActionCategory.ApprovalForAll](#) + +#### [ActionCategory.Cancel](#) + +#### [ActionCategory.Create](#) + +#### [ActionCategory.Renounce](#) + +#### [ActionCategory.Transfer](#) + +#### [ActionCategory.Withdraw](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/action-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/action-order-by.mdx new file mode 100644 index 00000000..b70c6062 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/action-order-by.mdx @@ -0,0 +1,218 @@ +--- +id: action-order-by +title: Action_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Action_orderBy { + id + subgraphId + block + chainId + from + hash + timestamp + category + contract + fee + stream + stream__id + stream__alias + stream__chainId + stream__subgraphId + stream__tokenId + stream__hash + stream__timestamp + stream__assetDecimals + stream__category + stream__contract + stream__position + stream__recipient + stream__sender + stream__startTime + stream__transferable + stream__version + stream__withdrawnAmount + stream__cancelable + stream__canceled + stream__canceledTime + stream__depositAmount + stream__duration + stream__endTime + stream__funder + stream__intactAmount + stream__proxender + stream__proxied + stream__renounceTime + stream__shape + stream__cliff + stream__cliffAmount + stream__cliffTime + stream__initial + stream__initialAmount + addressA + addressB + amountA + amountB +} +``` + +### Values + +#### [Action_orderBy.id](#) + +#### [Action_orderBy.subgraphId](#) + +#### [Action_orderBy.block](#) + +#### [Action_orderBy.chainId](#) + +#### [Action_orderBy.from](#) + +#### [Action_orderBy.hash](#) + +#### [Action_orderBy.timestamp](#) + +#### [Action_orderBy.category](#) + +#### [Action_orderBy.contract](#) + +#### [Action_orderBy.fee](#) + +#### [Action_orderBy.stream](#) + +#### [Action_orderBy.stream\_\_id](#) + +#### [Action_orderBy.stream\_\_alias](#) + +#### [Action_orderBy.stream\_\_chainId](#) + +#### [Action_orderBy.stream\_\_subgraphId](#) + +#### [Action_orderBy.stream\_\_tokenId](#) + +#### [Action_orderBy.stream\_\_hash](#) + +#### [Action_orderBy.stream\_\_timestamp](#) + +#### [Action_orderBy.stream\_\_assetDecimals](#) + +#### [Action_orderBy.stream\_\_category](#) + +#### [Action_orderBy.stream\_\_contract](#) + +#### [Action_orderBy.stream\_\_position](#) + +#### [Action_orderBy.stream\_\_recipient](#) + +#### [Action_orderBy.stream\_\_sender](#) + +#### [Action_orderBy.stream\_\_startTime](#) + +#### [Action_orderBy.stream\_\_transferable](#) + +#### [Action_orderBy.stream\_\_version](#) + +#### [Action_orderBy.stream\_\_withdrawnAmount](#) + +#### [Action_orderBy.stream\_\_cancelable](#) + +#### [Action_orderBy.stream\_\_canceled](#) + +#### [Action_orderBy.stream\_\_canceledTime](#) + +#### [Action_orderBy.stream\_\_depositAmount](#) + +#### [Action_orderBy.stream\_\_duration](#) + +#### [Action_orderBy.stream\_\_endTime](#) + +#### [Action_orderBy.stream\_\_funder](#) + +#### [Action_orderBy.stream\_\_intactAmount](#) + +#### [Action_orderBy.stream\_\_proxender](#) + +#### [Action_orderBy.stream\_\_proxied](#) + +#### [Action_orderBy.stream\_\_renounceTime](#) + +#### [Action_orderBy.stream\_\_shape](#) + +#### [Action_orderBy.stream\_\_cliff](#) + +#### [Action_orderBy.stream\_\_cliffAmount](#) + +#### [Action_orderBy.stream\_\_cliffTime](#) + +#### [Action_orderBy.stream\_\_initial](#) + +#### [Action_orderBy.stream\_\_initialAmount](#) + +#### [Action_orderBy.addressA](#) + +#### [Action_orderBy.addressB](#) + +#### [Action_orderBy.amountA](#) + +#### [Action_orderBy.amountB](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/aggregation-interval.mdx b/docs/api/lockup/graphql/the-graph/enums/aggregation-interval.mdx new file mode 100644 index 00000000..5d3091f6 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/aggregation-interval.mdx @@ -0,0 +1,77 @@ +--- +id: aggregation-interval +title: Aggregation_interval +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Aggregation_interval { + hour + day +} +``` + +### Values + +#### [Aggregation_interval.hour](#) + +#### [Aggregation_interval.day](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/asset-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/asset-order-by.mdx new file mode 100644 index 00000000..43d32157 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/asset-order-by.mdx @@ -0,0 +1,92 @@ +--- +id: asset-order-by +title: Asset_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Asset_orderBy { + id + address + chainId + decimals + name + symbol + streams +} +``` + +### Values + +#### [Asset_orderBy.id](#) + +#### [Asset_orderBy.address](#) + +#### [Asset_orderBy.chainId](#) + +#### [Asset_orderBy.decimals](#) + +#### [Asset_orderBy.name](#) + +#### [Asset_orderBy.symbol](#) + +#### [Asset_orderBy.streams](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/batch-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/batch-order-by.mdx new file mode 100644 index 00000000..d5397966 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/batch-order-by.mdx @@ -0,0 +1,95 @@ +--- +id: batch-order-by +title: Batch_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Batch_orderBy { + id + hash + timestamp + batcher + batcher__id + batcher__batchCounter + size + streams +} +``` + +### Values + +#### [Batch_orderBy.id](#) + +#### [Batch_orderBy.hash](#) + +#### [Batch_orderBy.timestamp](#) + +#### [Batch_orderBy.batcher](#) + +#### [Batch_orderBy.batcher\_\_id](#) + +#### [Batch_orderBy.batcher\_\_batchCounter](#) + +#### [Batch_orderBy.size](#) + +#### [Batch_orderBy.streams](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/batcher-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/batcher-order-by.mdx new file mode 100644 index 00000000..9296b136 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/batcher-order-by.mdx @@ -0,0 +1,80 @@ +--- +id: batcher-order-by +title: Batcher_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Batcher_orderBy { + id + batchCounter + batches +} +``` + +### Values + +#### [Batcher_orderBy.id](#) + +#### [Batcher_orderBy.batchCounter](#) + +#### [Batcher_orderBy.batches](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx b/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx new file mode 100644 index 00000000..028fa7ab --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx @@ -0,0 +1,77 @@ +--- +id: order-direction +title: OrderDirection +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Defines the order direction, either ascending or descending + +```graphql +enum OrderDirection { + asc + desc +} +``` + +### Values + +#### [OrderDirection.asc](#) + +#### [OrderDirection.desc](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/segment-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/segment-order-by.mdx new file mode 100644 index 00000000..50f6b6b6 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/segment-order-by.mdx @@ -0,0 +1,203 @@ +--- +id: segment-order-by +title: Segment_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Segment_orderBy { + id + amount + endAmount + endTime + exponent + milestone + position + startAmount + startTime + stream + stream__id + stream__alias + stream__chainId + stream__subgraphId + stream__tokenId + stream__hash + stream__timestamp + stream__assetDecimals + stream__category + stream__contract + stream__position + stream__recipient + stream__sender + stream__startTime + stream__transferable + stream__version + stream__withdrawnAmount + stream__cancelable + stream__canceled + stream__canceledTime + stream__depositAmount + stream__duration + stream__endTime + stream__funder + stream__intactAmount + stream__proxender + stream__proxied + stream__renounceTime + stream__shape + stream__cliff + stream__cliffAmount + stream__cliffTime + stream__initial + stream__initialAmount +} +``` + +### Values + +#### [Segment_orderBy.id](#) + +#### [Segment_orderBy.amount](#) + +#### [Segment_orderBy.endAmount](#) + +#### [Segment_orderBy.endTime](#) + +#### [Segment_orderBy.exponent](#) + +#### [Segment_orderBy.milestone](#) + +#### [Segment_orderBy.position](#) + +#### [Segment_orderBy.startAmount](#) + +#### [Segment_orderBy.startTime](#) + +#### [Segment_orderBy.stream](#) + +#### [Segment_orderBy.stream\_\_id](#) + +#### [Segment_orderBy.stream\_\_alias](#) + +#### [Segment_orderBy.stream\_\_chainId](#) + +#### [Segment_orderBy.stream\_\_subgraphId](#) + +#### [Segment_orderBy.stream\_\_tokenId](#) + +#### [Segment_orderBy.stream\_\_hash](#) + +#### [Segment_orderBy.stream\_\_timestamp](#) + +#### [Segment_orderBy.stream\_\_assetDecimals](#) + +#### [Segment_orderBy.stream\_\_category](#) + +#### [Segment_orderBy.stream\_\_contract](#) + +#### [Segment_orderBy.stream\_\_position](#) + +#### [Segment_orderBy.stream\_\_recipient](#) + +#### [Segment_orderBy.stream\_\_sender](#) + +#### [Segment_orderBy.stream\_\_startTime](#) + +#### [Segment_orderBy.stream\_\_transferable](#) + +#### [Segment_orderBy.stream\_\_version](#) + +#### [Segment_orderBy.stream\_\_withdrawnAmount](#) + +#### [Segment_orderBy.stream\_\_cancelable](#) + +#### [Segment_orderBy.stream\_\_canceled](#) + +#### [Segment_orderBy.stream\_\_canceledTime](#) + +#### [Segment_orderBy.stream\_\_depositAmount](#) + +#### [Segment_orderBy.stream\_\_duration](#) + +#### [Segment_orderBy.stream\_\_endTime](#) + +#### [Segment_orderBy.stream\_\_funder](#) + +#### [Segment_orderBy.stream\_\_intactAmount](#) + +#### [Segment_orderBy.stream\_\_proxender](#) + +#### [Segment_orderBy.stream\_\_proxied](#) + +#### [Segment_orderBy.stream\_\_renounceTime](#) + +#### [Segment_orderBy.stream\_\_shape](#) + +#### [Segment_orderBy.stream\_\_cliff](#) + +#### [Segment_orderBy.stream\_\_cliffAmount](#) + +#### [Segment_orderBy.stream\_\_cliffTime](#) + +#### [Segment_orderBy.stream\_\_initial](#) + +#### [Segment_orderBy.stream\_\_initialAmount](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx b/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx new file mode 100644 index 00000000..5f7705cd --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx @@ -0,0 +1,80 @@ +--- +id: stream-category +title: StreamCategory +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum StreamCategory { + LockupDynamic + LockupLinear + LockupTranched +} +``` + +### Values + +#### [StreamCategory.LockupDynamic](#) + +#### [StreamCategory.LockupLinear](#) + +#### [StreamCategory.LockupTranched](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx new file mode 100644 index 00000000..0adc4f88 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx @@ -0,0 +1,311 @@ +--- +id: stream-order-by +title: Stream_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Stream_orderBy { + id + alias + chainId + subgraphId + tokenId + hash + timestamp + actions + asset + asset__id + asset__address + asset__chainId + asset__decimals + asset__name + asset__symbol + assetDecimals + batch + batch__id + batch__hash + batch__timestamp + batch__size + category + contract + position + recipient + sender + startTime + transferable + version + withdrawnAmount + canceledAction + canceledAction__id + canceledAction__subgraphId + canceledAction__block + canceledAction__chainId + canceledAction__from + canceledAction__hash + canceledAction__timestamp + canceledAction__category + canceledAction__contract + canceledAction__fee + canceledAction__addressA + canceledAction__addressB + canceledAction__amountA + canceledAction__amountB + renounceAction + renounceAction__id + renounceAction__subgraphId + renounceAction__block + renounceAction__chainId + renounceAction__from + renounceAction__hash + renounceAction__timestamp + renounceAction__category + renounceAction__contract + renounceAction__fee + renounceAction__addressA + renounceAction__addressB + renounceAction__amountA + renounceAction__amountB + cancelable + canceled + canceledTime + depositAmount + duration + endTime + funder + intactAmount + parties + proxender + proxied + renounceTime + shape + cliff + cliffAmount + cliffTime + initial + initialAmount + segments + tranches +} +``` + +### Values + +#### [Stream_orderBy.id](#) + +#### [Stream_orderBy.alias](#) + +#### [Stream_orderBy.chainId](#) + +#### [Stream_orderBy.subgraphId](#) + +#### [Stream_orderBy.tokenId](#) + +#### [Stream_orderBy.hash](#) + +#### [Stream_orderBy.timestamp](#) + +#### [Stream_orderBy.actions](#) + +#### [Stream_orderBy.asset](#) + +#### [Stream_orderBy.asset\_\_id](#) + +#### [Stream_orderBy.asset\_\_address](#) + +#### [Stream_orderBy.asset\_\_chainId](#) + +#### [Stream_orderBy.asset\_\_decimals](#) + +#### [Stream_orderBy.asset\_\_name](#) + +#### [Stream_orderBy.asset\_\_symbol](#) + +#### [Stream_orderBy.assetDecimals](#) + +#### [Stream_orderBy.batch](#) + +#### [Stream_orderBy.batch\_\_id](#) + +#### [Stream_orderBy.batch\_\_hash](#) + +#### [Stream_orderBy.batch\_\_timestamp](#) + +#### [Stream_orderBy.batch\_\_size](#) + +#### [Stream_orderBy.category](#) + +#### [Stream_orderBy.contract](#) + +#### [Stream_orderBy.position](#) + +#### [Stream_orderBy.recipient](#) + +#### [Stream_orderBy.sender](#) + +#### [Stream_orderBy.startTime](#) + +#### [Stream_orderBy.transferable](#) + +#### [Stream_orderBy.version](#) + +#### [Stream_orderBy.withdrawnAmount](#) + +#### [Stream_orderBy.canceledAction](#) + +#### [Stream_orderBy.canceledAction\_\_id](#) + +#### [Stream_orderBy.canceledAction\_\_subgraphId](#) + +#### [Stream_orderBy.canceledAction\_\_block](#) + +#### [Stream_orderBy.canceledAction\_\_chainId](#) + +#### [Stream_orderBy.canceledAction\_\_from](#) + +#### [Stream_orderBy.canceledAction\_\_hash](#) + +#### [Stream_orderBy.canceledAction\_\_timestamp](#) + +#### [Stream_orderBy.canceledAction\_\_category](#) + +#### [Stream_orderBy.canceledAction\_\_contract](#) + +#### [Stream_orderBy.canceledAction\_\_fee](#) + +#### [Stream_orderBy.canceledAction\_\_addressA](#) + +#### [Stream_orderBy.canceledAction\_\_addressB](#) + +#### [Stream_orderBy.canceledAction\_\_amountA](#) + +#### [Stream_orderBy.canceledAction\_\_amountB](#) + +#### [Stream_orderBy.renounceAction](#) + +#### [Stream_orderBy.renounceAction\_\_id](#) + +#### [Stream_orderBy.renounceAction\_\_subgraphId](#) + +#### [Stream_orderBy.renounceAction\_\_block](#) + +#### [Stream_orderBy.renounceAction\_\_chainId](#) + +#### [Stream_orderBy.renounceAction\_\_from](#) + +#### [Stream_orderBy.renounceAction\_\_hash](#) + +#### [Stream_orderBy.renounceAction\_\_timestamp](#) + +#### [Stream_orderBy.renounceAction\_\_category](#) + +#### [Stream_orderBy.renounceAction\_\_contract](#) + +#### [Stream_orderBy.renounceAction\_\_fee](#) + +#### [Stream_orderBy.renounceAction\_\_addressA](#) + +#### [Stream_orderBy.renounceAction\_\_addressB](#) + +#### [Stream_orderBy.renounceAction\_\_amountA](#) + +#### [Stream_orderBy.renounceAction\_\_amountB](#) + +#### [Stream_orderBy.cancelable](#) + +#### [Stream_orderBy.canceled](#) + +#### [Stream_orderBy.canceledTime](#) + +#### [Stream_orderBy.depositAmount](#) + +#### [Stream_orderBy.duration](#) + +#### [Stream_orderBy.endTime](#) + +#### [Stream_orderBy.funder](#) + +#### [Stream_orderBy.intactAmount](#) + +#### [Stream_orderBy.parties](#) + +#### [Stream_orderBy.proxender](#) + +#### [Stream_orderBy.proxied](#) + +#### [Stream_orderBy.renounceTime](#) + +#### [Stream_orderBy.shape](#) + +#### [Stream_orderBy.cliff](#) + +#### [Stream_orderBy.cliffAmount](#) + +#### [Stream_orderBy.cliffTime](#) + +#### [Stream_orderBy.initial](#) + +#### [Stream_orderBy.initialAmount](#) + +#### [Stream_orderBy.segments](#) + +#### [Stream_orderBy.tranches](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx b/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx new file mode 100644 index 00000000..f1af4993 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx @@ -0,0 +1,81 @@ +--- +id: subgraph-error-policy +title: _SubgraphErrorPolicy_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum _SubgraphErrorPolicy_ { + allow + deny +} +``` + +### Values + +#### [\_SubgraphErrorPolicy\_.allow](#) + +Data will be returned even if the subgraph has indexing errors + +#### [\_SubgraphErrorPolicy\_.deny](#) + +If the subgraph has indexing errors, data will be omitted. The default. diff --git a/docs/api/lockup/graphql/the-graph/enums/tranche-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/tranche-order-by.mdx new file mode 100644 index 00000000..f4161399 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/tranche-order-by.mdx @@ -0,0 +1,200 @@ +--- +id: tranche-order-by +title: Tranche_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Tranche_orderBy { + id + amount + endAmount + endTime + position + startAmount + startTime + stream + stream__id + stream__alias + stream__chainId + stream__subgraphId + stream__tokenId + stream__hash + stream__timestamp + stream__assetDecimals + stream__category + stream__contract + stream__position + stream__recipient + stream__sender + stream__startTime + stream__transferable + stream__version + stream__withdrawnAmount + stream__cancelable + stream__canceled + stream__canceledTime + stream__depositAmount + stream__duration + stream__endTime + stream__funder + stream__intactAmount + stream__proxender + stream__proxied + stream__renounceTime + stream__shape + stream__cliff + stream__cliffAmount + stream__cliffTime + stream__initial + stream__initialAmount + timestamp +} +``` + +### Values + +#### [Tranche_orderBy.id](#) + +#### [Tranche_orderBy.amount](#) + +#### [Tranche_orderBy.endAmount](#) + +#### [Tranche_orderBy.endTime](#) + +#### [Tranche_orderBy.position](#) + +#### [Tranche_orderBy.startAmount](#) + +#### [Tranche_orderBy.startTime](#) + +#### [Tranche_orderBy.stream](#) + +#### [Tranche_orderBy.stream\_\_id](#) + +#### [Tranche_orderBy.stream\_\_alias](#) + +#### [Tranche_orderBy.stream\_\_chainId](#) + +#### [Tranche_orderBy.stream\_\_subgraphId](#) + +#### [Tranche_orderBy.stream\_\_tokenId](#) + +#### [Tranche_orderBy.stream\_\_hash](#) + +#### [Tranche_orderBy.stream\_\_timestamp](#) + +#### [Tranche_orderBy.stream\_\_assetDecimals](#) + +#### [Tranche_orderBy.stream\_\_category](#) + +#### [Tranche_orderBy.stream\_\_contract](#) + +#### [Tranche_orderBy.stream\_\_position](#) + +#### [Tranche_orderBy.stream\_\_recipient](#) + +#### [Tranche_orderBy.stream\_\_sender](#) + +#### [Tranche_orderBy.stream\_\_startTime](#) + +#### [Tranche_orderBy.stream\_\_transferable](#) + +#### [Tranche_orderBy.stream\_\_version](#) + +#### [Tranche_orderBy.stream\_\_withdrawnAmount](#) + +#### [Tranche_orderBy.stream\_\_cancelable](#) + +#### [Tranche_orderBy.stream\_\_canceled](#) + +#### [Tranche_orderBy.stream\_\_canceledTime](#) + +#### [Tranche_orderBy.stream\_\_depositAmount](#) + +#### [Tranche_orderBy.stream\_\_duration](#) + +#### [Tranche_orderBy.stream\_\_endTime](#) + +#### [Tranche_orderBy.stream\_\_funder](#) + +#### [Tranche_orderBy.stream\_\_intactAmount](#) + +#### [Tranche_orderBy.stream\_\_proxender](#) + +#### [Tranche_orderBy.stream\_\_proxied](#) + +#### [Tranche_orderBy.stream\_\_renounceTime](#) + +#### [Tranche_orderBy.stream\_\_shape](#) + +#### [Tranche_orderBy.stream\_\_cliff](#) + +#### [Tranche_orderBy.stream\_\_cliffAmount](#) + +#### [Tranche_orderBy.stream\_\_cliffTime](#) + +#### [Tranche_orderBy.stream\_\_initial](#) + +#### [Tranche_orderBy.stream\_\_initialAmount](#) + +#### [Tranche_orderBy.timestamp](#) diff --git a/docs/api/lockup/graphql/the-graph/enums/watcher-order-by.mdx b/docs/api/lockup/graphql/the-graph/enums/watcher-order-by.mdx new file mode 100644 index 00000000..7c7837c8 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/enums/watcher-order-by.mdx @@ -0,0 +1,86 @@ +--- +id: watcher-order-by +title: Watcher_orderBy +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +enum Watcher_orderBy { + id + actionCounter + chainId + logs + streamCounter +} +``` + +### Values + +#### [Watcher_orderBy.id](#) + +#### [Watcher_orderBy.actionCounter](#) + +#### [Watcher_orderBy.chainId](#) + +#### [Watcher_orderBy.logs](#) + +#### [Watcher_orderBy.streamCounter](#) diff --git a/docs/api/lockup/graphql/the-graph/graphql-overview.md b/docs/api/lockup/graphql/the-graph/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/docs/api/lockup/graphql/the-graph/inputs/_category_.yml b/docs/api/lockup/graphql/the-graph/inputs/_category_.yml new file mode 100644 index 00000000..63a93590 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Inputs +position: 5 diff --git a/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx new file mode 100644 index 00000000..95a77508 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx @@ -0,0 +1,535 @@ +--- +id: action-filter +title: Action_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Action_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + from: Bytes + from_not: Bytes + from_gt: Bytes + from_lt: Bytes + from_gte: Bytes + from_lte: Bytes + from_in: [Bytes!] + from_not_in: [Bytes!] + from_contains: Bytes + from_not_contains: Bytes + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + category: ActionCategory + category_not: ActionCategory + category_in: [ActionCategory!] + category_not_in: [ActionCategory!] + contract: Bytes + contract_not: Bytes + contract_gt: Bytes + contract_lt: Bytes + contract_gte: Bytes + contract_lte: Bytes + contract_in: [Bytes!] + contract_not_in: [Bytes!] + contract_contains: Bytes + contract_not_contains: Bytes + fee: BigInt + fee_not: BigInt + fee_gt: BigInt + fee_lt: BigInt + fee_gte: BigInt + fee_lte: BigInt + fee_in: [BigInt!] + fee_not_in: [BigInt!] + stream: String + stream_not: String + stream_gt: String + stream_lt: String + stream_gte: String + stream_lte: String + stream_in: [String!] + stream_not_in: [String!] + stream_contains: String + stream_contains_nocase: String + stream_not_contains: String + stream_not_contains_nocase: String + stream_starts_with: String + stream_starts_with_nocase: String + stream_not_starts_with: String + stream_not_starts_with_nocase: String + stream_ends_with: String + stream_ends_with_nocase: String + stream_not_ends_with: String + stream_not_ends_with_nocase: String + stream_: Stream_filter + addressA: Bytes + addressA_not: Bytes + addressA_gt: Bytes + addressA_lt: Bytes + addressA_gte: Bytes + addressA_lte: Bytes + addressA_in: [Bytes!] + addressA_not_in: [Bytes!] + addressA_contains: Bytes + addressA_not_contains: Bytes + addressB: Bytes + addressB_not: Bytes + addressB_gt: Bytes + addressB_lt: Bytes + addressB_gte: Bytes + addressB_lte: Bytes + addressB_in: [Bytes!] + addressB_not_in: [Bytes!] + addressB_contains: Bytes + addressB_not_contains: Bytes + amountA: BigInt + amountA_not: BigInt + amountA_gt: BigInt + amountA_lt: BigInt + amountA_gte: BigInt + amountA_lte: BigInt + amountA_in: [BigInt!] + amountA_not_in: [BigInt!] + amountB: BigInt + amountB_not: BigInt + amountB_gt: BigInt + amountB_lt: BigInt + amountB_gte: BigInt + amountB_lte: BigInt + amountB_in: [BigInt!] + amountB_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Action_filter] + or: [Action_filter] +} +``` + +### Fields + +#### [Action_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.subgraphId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.block_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.chainId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.from](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.from_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.hash_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.timestamp](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.category](#)[ActionCategory](/docs/api/lockup/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not](#)[ActionCategory](/docs/api/lockup/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_in](#)[[ActionCategory!]](/docs/api/lockup/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.category_not_in](#)[[ActionCategory!]](/docs/api/lockup/graphql/the-graph/enums/action-category.mdx) + +#### [Action_filter.contract](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.contract_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.fee](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.fee_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.stream](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Action_filter.stream\_](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Action_filter.addressA](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressA_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.addressB_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Action_filter.amountA](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountA_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.amountB_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Action_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Action_filter.and](#)[[Action_filter]](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [Action_filter.or](#)[[Action_filter]](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx new file mode 100644 index 00000000..f089a661 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx @@ -0,0 +1,307 @@ +--- +id: asset-filter +title: Asset_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Asset_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_not_contains: Bytes + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + streams_: Stream_filter + _change_block: BlockChangedFilter + and: [Asset_filter] + or: [Asset_filter] +} +``` + +### Fields + +#### [Asset_filter.id](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gt](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lt](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_gte](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_lte](#)[ID](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_in](#)[[ID!]](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.id_not_in](#)[[ID!]](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [Asset_filter.address](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.address_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Asset_filter.chainId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.chainId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.decimals_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Asset_filter.name](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.name_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.symbol_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Asset_filter.streams\_](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Asset_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Asset_filter.and](#)[[Asset_filter]](/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Asset_filter.or](#)[[Asset_filter]](/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx new file mode 100644 index 00000000..1268c08b --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx @@ -0,0 +1,286 @@ +--- +id: batch-filter +title: Batch_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Batch_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + batcher: String + batcher_not: String + batcher_gt: String + batcher_lt: String + batcher_gte: String + batcher_lte: String + batcher_in: [String!] + batcher_not_in: [String!] + batcher_contains: String + batcher_contains_nocase: String + batcher_not_contains: String + batcher_not_contains_nocase: String + batcher_starts_with: String + batcher_starts_with_nocase: String + batcher_not_starts_with: String + batcher_not_starts_with_nocase: String + batcher_ends_with: String + batcher_ends_with_nocase: String + batcher_not_ends_with: String + batcher_not_ends_with_nocase: String + batcher_: Batcher_filter + size: BigInt + size_not: BigInt + size_gt: BigInt + size_lt: BigInt + size_gte: BigInt + size_lte: BigInt + size_in: [BigInt!] + size_not_in: [BigInt!] + streams_: Stream_filter + _change_block: BlockChangedFilter + and: [Batch_filter] + or: [Batch_filter] +} +``` + +### Fields + +#### [Batch_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.hash_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Batch_filter.timestamp](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.batcher](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batch_filter.batcher\_](#)[Batcher_filter](/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [Batch_filter.size](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.size_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batch_filter.streams\_](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Batch_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Batch_filter.and](#)[[Batch_filter]](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Batch_filter.or](#)[[Batch_filter]](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx new file mode 100644 index 00000000..2e207862 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx @@ -0,0 +1,169 @@ +--- +id: batcher-filter +title: Batcher_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Batcher_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + batchCounter: BigInt + batchCounter_not: BigInt + batchCounter_gt: BigInt + batchCounter_lt: BigInt + batchCounter_gte: BigInt + batchCounter_lte: BigInt + batchCounter_in: [BigInt!] + batchCounter_not_in: [BigInt!] + batches_: Batch_filter + _change_block: BlockChangedFilter + and: [Batcher_filter] + or: [Batcher_filter] +} +``` + +### Fields + +#### [Batcher_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Batcher_filter.batchCounter](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batchCounter_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Batcher_filter.batches\_](#)[Batch_filter](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Batcher_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Batcher_filter.and](#)[[Batcher_filter]](/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [Batcher_filter.or](#)[[Batcher_filter]](/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx new file mode 100644 index 00000000..d36202d7 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx @@ -0,0 +1,74 @@ +--- +id: block-changed-filter +title: BlockChangedFilter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input BlockChangedFilter { + number_gte: Int! +} +``` + +### Fields + +#### [BlockChangedFilter.number_gte](#)[Int!](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx b/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx new file mode 100644 index 00000000..3c53a88f --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx @@ -0,0 +1,80 @@ +--- +id: block-height +title: Block_height +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} +``` + +### Fields + +#### [Block_height.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Block_height.number](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [Block_height.number_gte](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx new file mode 100644 index 00000000..3f7ae21d --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx @@ -0,0 +1,397 @@ +--- +id: segment-filter +title: Segment_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Segment_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + endAmount: BigInt + endAmount_not: BigInt + endAmount_gt: BigInt + endAmount_lt: BigInt + endAmount_gte: BigInt + endAmount_lte: BigInt + endAmount_in: [BigInt!] + endAmount_not_in: [BigInt!] + endTime: BigInt + endTime_not: BigInt + endTime_gt: BigInt + endTime_lt: BigInt + endTime_gte: BigInt + endTime_lte: BigInt + endTime_in: [BigInt!] + endTime_not_in: [BigInt!] + exponent: BigInt + exponent_not: BigInt + exponent_gt: BigInt + exponent_lt: BigInt + exponent_gte: BigInt + exponent_lte: BigInt + exponent_in: [BigInt!] + exponent_not_in: [BigInt!] + milestone: BigInt + milestone_not: BigInt + milestone_gt: BigInt + milestone_lt: BigInt + milestone_gte: BigInt + milestone_lte: BigInt + milestone_in: [BigInt!] + milestone_not_in: [BigInt!] + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + startAmount: BigInt + startAmount_not: BigInt + startAmount_gt: BigInt + startAmount_lt: BigInt + startAmount_gte: BigInt + startAmount_lte: BigInt + startAmount_in: [BigInt!] + startAmount_not_in: [BigInt!] + startTime: BigInt + startTime_not: BigInt + startTime_gt: BigInt + startTime_lt: BigInt + startTime_gte: BigInt + startTime_lte: BigInt + startTime_in: [BigInt!] + startTime_not_in: [BigInt!] + stream: String + stream_not: String + stream_gt: String + stream_lt: String + stream_gte: String + stream_lte: String + stream_in: [String!] + stream_not_in: [String!] + stream_contains: String + stream_contains_nocase: String + stream_not_contains: String + stream_not_contains_nocase: String + stream_starts_with: String + stream_starts_with_nocase: String + stream_not_starts_with: String + stream_not_starts_with_nocase: String + stream_ends_with: String + stream_ends_with_nocase: String + stream_not_ends_with: String + stream_not_ends_with_nocase: String + stream_: Stream_filter + _change_block: BlockChangedFilter + and: [Segment_filter] + or: [Segment_filter] +} +``` + +### Fields + +#### [Segment_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.amount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.amount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.endTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.exponent_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.milestone_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.position_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.startTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Segment_filter.stream](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Segment_filter.stream\_](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Segment_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Segment_filter.and](#)[[Segment_filter]](/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx) + +#### [Segment_filter.or](#)[[Segment_filter]](/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx new file mode 100644 index 00000000..69646992 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx @@ -0,0 +1,1273 @@ +--- +id: stream-filter +title: Stream_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Stream_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + alias: String + alias_not: String + alias_gt: String + alias_lt: String + alias_gte: String + alias_lte: String + alias_in: [String!] + alias_not_in: [String!] + alias_contains: String + alias_contains_nocase: String + alias_not_contains: String + alias_not_contains_nocase: String + alias_starts_with: String + alias_starts_with_nocase: String + alias_not_starts_with: String + alias_not_starts_with_nocase: String + alias_ends_with: String + alias_ends_with_nocase: String + alias_not_ends_with: String + alias_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + subgraphId: BigInt + subgraphId_not: BigInt + subgraphId_gt: BigInt + subgraphId_lt: BigInt + subgraphId_gte: BigInt + subgraphId_lte: BigInt + subgraphId_in: [BigInt!] + subgraphId_not_in: [BigInt!] + tokenId: BigInt + tokenId_not: BigInt + tokenId_gt: BigInt + tokenId_lt: BigInt + tokenId_gte: BigInt + tokenId_lte: BigInt + tokenId_in: [BigInt!] + tokenId_not_in: [BigInt!] + hash: Bytes + hash_not: Bytes + hash_gt: Bytes + hash_lt: Bytes + hash_gte: Bytes + hash_lte: Bytes + hash_in: [Bytes!] + hash_not_in: [Bytes!] + hash_contains: Bytes + hash_not_contains: Bytes + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + actions_: Action_filter + asset: String + asset_not: String + asset_gt: String + asset_lt: String + asset_gte: String + asset_lte: String + asset_in: [String!] + asset_not_in: [String!] + asset_contains: String + asset_contains_nocase: String + asset_not_contains: String + asset_not_contains_nocase: String + asset_starts_with: String + asset_starts_with_nocase: String + asset_not_starts_with: String + asset_not_starts_with_nocase: String + asset_ends_with: String + asset_ends_with_nocase: String + asset_not_ends_with: String + asset_not_ends_with_nocase: String + asset_: Asset_filter + assetDecimals: BigInt + assetDecimals_not: BigInt + assetDecimals_gt: BigInt + assetDecimals_lt: BigInt + assetDecimals_gte: BigInt + assetDecimals_lte: BigInt + assetDecimals_in: [BigInt!] + assetDecimals_not_in: [BigInt!] + batch: String + batch_not: String + batch_gt: String + batch_lt: String + batch_gte: String + batch_lte: String + batch_in: [String!] + batch_not_in: [String!] + batch_contains: String + batch_contains_nocase: String + batch_not_contains: String + batch_not_contains_nocase: String + batch_starts_with: String + batch_starts_with_nocase: String + batch_not_starts_with: String + batch_not_starts_with_nocase: String + batch_ends_with: String + batch_ends_with_nocase: String + batch_not_ends_with: String + batch_not_ends_with_nocase: String + batch_: Batch_filter + category: StreamCategory + category_not: StreamCategory + category_in: [StreamCategory!] + category_not_in: [StreamCategory!] + contract: Bytes + contract_not: Bytes + contract_gt: Bytes + contract_lt: Bytes + contract_gte: Bytes + contract_lte: Bytes + contract_in: [Bytes!] + contract_not_in: [Bytes!] + contract_contains: Bytes + contract_not_contains: Bytes + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + recipient: Bytes + recipient_not: Bytes + recipient_gt: Bytes + recipient_lt: Bytes + recipient_gte: Bytes + recipient_lte: Bytes + recipient_in: [Bytes!] + recipient_not_in: [Bytes!] + recipient_contains: Bytes + recipient_not_contains: Bytes + sender: Bytes + sender_not: Bytes + sender_gt: Bytes + sender_lt: Bytes + sender_gte: Bytes + sender_lte: Bytes + sender_in: [Bytes!] + sender_not_in: [Bytes!] + sender_contains: Bytes + sender_not_contains: Bytes + startTime: BigInt + startTime_not: BigInt + startTime_gt: BigInt + startTime_lt: BigInt + startTime_gte: BigInt + startTime_lte: BigInt + startTime_in: [BigInt!] + startTime_not_in: [BigInt!] + transferable: Boolean + transferable_not: Boolean + transferable_in: [Boolean!] + transferable_not_in: [Boolean!] + version: String + version_not: String + version_gt: String + version_lt: String + version_gte: String + version_lte: String + version_in: [String!] + version_not_in: [String!] + version_contains: String + version_contains_nocase: String + version_not_contains: String + version_not_contains_nocase: String + version_starts_with: String + version_starts_with_nocase: String + version_not_starts_with: String + version_not_starts_with_nocase: String + version_ends_with: String + version_ends_with_nocase: String + version_not_ends_with: String + version_not_ends_with_nocase: String + withdrawnAmount: BigInt + withdrawnAmount_not: BigInt + withdrawnAmount_gt: BigInt + withdrawnAmount_lt: BigInt + withdrawnAmount_gte: BigInt + withdrawnAmount_lte: BigInt + withdrawnAmount_in: [BigInt!] + withdrawnAmount_not_in: [BigInt!] + canceledAction: String + canceledAction_not: String + canceledAction_gt: String + canceledAction_lt: String + canceledAction_gte: String + canceledAction_lte: String + canceledAction_in: [String!] + canceledAction_not_in: [String!] + canceledAction_contains: String + canceledAction_contains_nocase: String + canceledAction_not_contains: String + canceledAction_not_contains_nocase: String + canceledAction_starts_with: String + canceledAction_starts_with_nocase: String + canceledAction_not_starts_with: String + canceledAction_not_starts_with_nocase: String + canceledAction_ends_with: String + canceledAction_ends_with_nocase: String + canceledAction_not_ends_with: String + canceledAction_not_ends_with_nocase: String + canceledAction_: Action_filter + renounceAction: String + renounceAction_not: String + renounceAction_gt: String + renounceAction_lt: String + renounceAction_gte: String + renounceAction_lte: String + renounceAction_in: [String!] + renounceAction_not_in: [String!] + renounceAction_contains: String + renounceAction_contains_nocase: String + renounceAction_not_contains: String + renounceAction_not_contains_nocase: String + renounceAction_starts_with: String + renounceAction_starts_with_nocase: String + renounceAction_not_starts_with: String + renounceAction_not_starts_with_nocase: String + renounceAction_ends_with: String + renounceAction_ends_with_nocase: String + renounceAction_not_ends_with: String + renounceAction_not_ends_with_nocase: String + renounceAction_: Action_filter + cancelable: Boolean + cancelable_not: Boolean + cancelable_in: [Boolean!] + cancelable_not_in: [Boolean!] + canceled: Boolean + canceled_not: Boolean + canceled_in: [Boolean!] + canceled_not_in: [Boolean!] + canceledTime: BigInt + canceledTime_not: BigInt + canceledTime_gt: BigInt + canceledTime_lt: BigInt + canceledTime_gte: BigInt + canceledTime_lte: BigInt + canceledTime_in: [BigInt!] + canceledTime_not_in: [BigInt!] + depositAmount: BigInt + depositAmount_not: BigInt + depositAmount_gt: BigInt + depositAmount_lt: BigInt + depositAmount_gte: BigInt + depositAmount_lte: BigInt + depositAmount_in: [BigInt!] + depositAmount_not_in: [BigInt!] + duration: BigInt + duration_not: BigInt + duration_gt: BigInt + duration_lt: BigInt + duration_gte: BigInt + duration_lte: BigInt + duration_in: [BigInt!] + duration_not_in: [BigInt!] + endTime: BigInt + endTime_not: BigInt + endTime_gt: BigInt + endTime_lt: BigInt + endTime_gte: BigInt + endTime_lte: BigInt + endTime_in: [BigInt!] + endTime_not_in: [BigInt!] + funder: Bytes + funder_not: Bytes + funder_gt: Bytes + funder_lt: Bytes + funder_gte: Bytes + funder_lte: Bytes + funder_in: [Bytes!] + funder_not_in: [Bytes!] + funder_contains: Bytes + funder_not_contains: Bytes + intactAmount: BigInt + intactAmount_not: BigInt + intactAmount_gt: BigInt + intactAmount_lt: BigInt + intactAmount_gte: BigInt + intactAmount_lte: BigInt + intactAmount_in: [BigInt!] + intactAmount_not_in: [BigInt!] + parties: [Bytes!] + parties_not: [Bytes!] + parties_contains: [Bytes!] + parties_contains_nocase: [Bytes!] + parties_not_contains: [Bytes!] + parties_not_contains_nocase: [Bytes!] + proxender: Bytes + proxender_not: Bytes + proxender_gt: Bytes + proxender_lt: Bytes + proxender_gte: Bytes + proxender_lte: Bytes + proxender_in: [Bytes!] + proxender_not_in: [Bytes!] + proxender_contains: Bytes + proxender_not_contains: Bytes + proxied: Boolean + proxied_not: Boolean + proxied_in: [Boolean!] + proxied_not_in: [Boolean!] + renounceTime: BigInt + renounceTime_not: BigInt + renounceTime_gt: BigInt + renounceTime_lt: BigInt + renounceTime_gte: BigInt + renounceTime_lte: BigInt + renounceTime_in: [BigInt!] + renounceTime_not_in: [BigInt!] + shape: String + shape_not: String + shape_gt: String + shape_lt: String + shape_gte: String + shape_lte: String + shape_in: [String!] + shape_not_in: [String!] + shape_contains: String + shape_contains_nocase: String + shape_not_contains: String + shape_not_contains_nocase: String + shape_starts_with: String + shape_starts_with_nocase: String + shape_not_starts_with: String + shape_not_starts_with_nocase: String + shape_ends_with: String + shape_ends_with_nocase: String + shape_not_ends_with: String + shape_not_ends_with_nocase: String + cliff: Boolean + cliff_not: Boolean + cliff_in: [Boolean!] + cliff_not_in: [Boolean!] + cliffAmount: BigInt + cliffAmount_not: BigInt + cliffAmount_gt: BigInt + cliffAmount_lt: BigInt + cliffAmount_gte: BigInt + cliffAmount_lte: BigInt + cliffAmount_in: [BigInt!] + cliffAmount_not_in: [BigInt!] + cliffTime: BigInt + cliffTime_not: BigInt + cliffTime_gt: BigInt + cliffTime_lt: BigInt + cliffTime_gte: BigInt + cliffTime_lte: BigInt + cliffTime_in: [BigInt!] + cliffTime_not_in: [BigInt!] + initial: Boolean + initial_not: Boolean + initial_in: [Boolean!] + initial_not_in: [Boolean!] + initialAmount: BigInt + initialAmount_not: BigInt + initialAmount_gt: BigInt + initialAmount_lt: BigInt + initialAmount_gte: BigInt + initialAmount_lte: BigInt + initialAmount_in: [BigInt!] + initialAmount_not_in: [BigInt!] + segments_: Segment_filter + tranches_: Tranche_filter + _change_block: BlockChangedFilter + and: [Stream_filter] + or: [Stream_filter] +} +``` + +### Fields + +#### [Stream_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.alias_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.chainId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.chainId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.subgraphId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.tokenId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.hash_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.timestamp](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.actions\_](#)[Action_filter](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.asset](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.asset\_](#)[Asset_filter](/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx) + +#### [Stream_filter.assetDecimals](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.assetDecimals_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.batch](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.batch\_](#)[Batch_filter](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) + +#### [Stream_filter.category](#)[StreamCategory](/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_not](#)[StreamCategory](/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_in](#)[[StreamCategory!]](/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.category_not_in](#)[[StreamCategory!]](/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx) + +#### [Stream_filter.contract](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.contract_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.position](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.position_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.recipient](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.recipient_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.sender_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.startTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.startTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.transferable](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.transferable_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.version](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.version_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.withdrawnAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.withdrawnAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledAction](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.canceledAction\_](#)[Action_filter](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.renounceAction](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.renounceAction\_](#)[Action_filter](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream_filter.cancelable](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cancelable_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cancelable_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cancelable_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.canceled](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.canceled_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.canceled_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.canceled_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.canceledTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.canceledTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.depositAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.duration_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.endTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.funder](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.funder_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.intactAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.intactAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.parties](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.parties_not](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.parties_contains](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.parties_contains_nocase](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.parties_not_contains](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.parties_not_contains_nocase](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_not](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_gt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_lt](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_gte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_lte](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_not_in](#)[[Bytes!]](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxender_not_contains](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +#### [Stream_filter.proxied](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.proxied_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.proxied_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.proxied_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.renounceTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.renounceTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.shape](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.shape_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Stream_filter.cliff](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cliff_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cliff_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cliff_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.cliffAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.cliffTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initial](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.initial_not](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.initial_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.initial_not_in](#)[[Boolean!]](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +#### [Stream_filter.initialAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.initialAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Stream_filter.segments\_](#)[Segment_filter](/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx) + +#### [Stream_filter.tranches\_](#)[Tranche_filter](/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [Stream_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Stream_filter.and](#)[[Stream_filter]](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Stream_filter.or](#)[[Stream_filter]](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx new file mode 100644 index 00000000..8dc4fd96 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx @@ -0,0 +1,373 @@ +--- +id: tranche-filter +title: Tranche_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Tranche_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + endAmount: BigInt + endAmount_not: BigInt + endAmount_gt: BigInt + endAmount_lt: BigInt + endAmount_gte: BigInt + endAmount_lte: BigInt + endAmount_in: [BigInt!] + endAmount_not_in: [BigInt!] + endTime: BigInt + endTime_not: BigInt + endTime_gt: BigInt + endTime_lt: BigInt + endTime_gte: BigInt + endTime_lte: BigInt + endTime_in: [BigInt!] + endTime_not_in: [BigInt!] + position: BigInt + position_not: BigInt + position_gt: BigInt + position_lt: BigInt + position_gte: BigInt + position_lte: BigInt + position_in: [BigInt!] + position_not_in: [BigInt!] + startAmount: BigInt + startAmount_not: BigInt + startAmount_gt: BigInt + startAmount_lt: BigInt + startAmount_gte: BigInt + startAmount_lte: BigInt + startAmount_in: [BigInt!] + startAmount_not_in: [BigInt!] + startTime: BigInt + startTime_not: BigInt + startTime_gt: BigInt + startTime_lt: BigInt + startTime_gte: BigInt + startTime_lte: BigInt + startTime_in: [BigInt!] + startTime_not_in: [BigInt!] + stream: String + stream_not: String + stream_gt: String + stream_lt: String + stream_gte: String + stream_lte: String + stream_in: [String!] + stream_not_in: [String!] + stream_contains: String + stream_contains_nocase: String + stream_not_contains: String + stream_not_contains_nocase: String + stream_starts_with: String + stream_starts_with_nocase: String + stream_not_starts_with: String + stream_not_starts_with_nocase: String + stream_ends_with: String + stream_ends_with_nocase: String + stream_not_ends_with: String + stream_not_ends_with_nocase: String + stream_: Stream_filter + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Tranche_filter] + or: [Tranche_filter] +} +``` + +### Fields + +#### [Tranche_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.amount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.amount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.endTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.position_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startAmount_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.startTime_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.stream](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Tranche_filter.stream\_](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [Tranche_filter.timestamp](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.timestamp_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Tranche_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Tranche_filter.and](#)[[Tranche_filter]](/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [Tranche_filter.or](#)[[Tranche_filter]](/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx b/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx new file mode 100644 index 00000000..0f9069e7 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx @@ -0,0 +1,232 @@ +--- +id: watcher-filter +title: Watcher_filter +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +input Watcher_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + actionCounter: BigInt + actionCounter_not: BigInt + actionCounter_gt: BigInt + actionCounter_lt: BigInt + actionCounter_gte: BigInt + actionCounter_lte: BigInt + actionCounter_in: [BigInt!] + actionCounter_not_in: [BigInt!] + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + logs: [String!] + logs_not: [String!] + logs_contains: [String!] + logs_contains_nocase: [String!] + logs_not_contains: [String!] + logs_not_contains_nocase: [String!] + streamCounter: BigInt + streamCounter_not: BigInt + streamCounter_gt: BigInt + streamCounter_lt: BigInt + streamCounter_gte: BigInt + streamCounter_lte: BigInt + streamCounter_in: [BigInt!] + streamCounter_not_in: [BigInt!] + _change_block: BlockChangedFilter + and: [Watcher_filter] + or: [Watcher_filter] +} +``` + +### Fields + +#### [Watcher_filter.id](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lt](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_gte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_lte](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_in](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_contains_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_starts_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.id_not_ends_with_nocase](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.actionCounter](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.actionCounter_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.chainId_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.logs](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_contains_nocase](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.logs_not_contains_nocase](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +#### [Watcher_filter.streamCounter](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_not](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_gt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_lt](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_gte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_lte](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.streamCounter_not_in](#)[[BigInt!]](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +#### [Watcher_filter.\_change_block](#)[BlockChangedFilter](/docs/api/lockup/graphql/the-graph/inputs/block-changed-filter.mdx) + +Filter for the block changed event. + +#### [Watcher_filter.and](#)[[Watcher_filter]](/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [Watcher_filter.or](#)[[Watcher_filter]](/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/objects/_category_.yml b/docs/api/lockup/graphql/the-graph/objects/_category_.yml new file mode 100644 index 00000000..af956330 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Objects +position: 3 diff --git a/docs/api/lockup/graphql/the-graph/objects/action.mdx b/docs/api/lockup/graphql/the-graph/objects/action.mdx new file mode 100644 index 00000000..635dc4fa --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/action.mdx @@ -0,0 +1,147 @@ +--- +id: action +title: Action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. + +```graphql +type Action { + id: String! + subgraphId: BigInt! + block: BigInt! + chainId: BigInt! + from: Bytes! + hash: Bytes! + timestamp: BigInt! + category: ActionCategory! + contract: Bytes! + fee: BigInt + stream: Stream + addressA: Bytes + addressB: Bytes + amountA: BigInt + amountB: BigInt +} +``` + +### Fields + +#### [Action.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{txHash}-{blockLogIndex}` + +#### [Action.subgraphId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the `Watcher` entity. + +#### [Action.block](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Block number of the Ethereum transaction. + +#### [Action.chainId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g. 137 for Polygon. + +#### [Action.from](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +The msg.sender of the Ethereum transaction. + +#### [Action.hash](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction. + +#### [Action.timestamp](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp of the Ethereum transaction. + +#### [Action.category](#)[ActionCategory!](/docs/api/lockup/graphql/the-graph/enums/action-category.mdx) + +Category of action, e.g., Deposit. + +#### [Action.contract](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Contract through which the action was triggered. + +#### [Action.fee](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The Sablier fee paid in the native token of the chain, e.g., ETH for Ethereum Mainnet. +See https://docs.sablier.com/concepts/fees + +#### [Action.stream](#)[Stream](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) + +Stream linked to this action, if any. + +#### [Action.addressA](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Address of 1st actor. Who this is depends upon the action type, e.g. for Create, it is the sender. + +#### [Action.addressB](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Address of 2nd actor. Who this is depends upon the action type, e.g. for Transfer, it is the recipient. + +#### [Action.amountA](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +1st amount. What this is depends upon the action type, e.g. for Deposit, it is the deposit amount. + +#### [Action.amountB](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +2nd amount. What this is depends upon the action type, e.g. for Withdraw, it is the refund amount. diff --git a/docs/api/lockup/graphql/the-graph/objects/asset.mdx b/docs/api/lockup/graphql/the-graph/objects/asset.mdx new file mode 100644 index 00000000..aab7b191 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/asset.mdx @@ -0,0 +1,122 @@ +--- +id: asset +title: Asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +ERC-20 asset + +```graphql +type Asset { + id: ID! + address: Bytes! + chainId: BigInt! + decimals: BigInt! + name: String! + symbol: String! + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + ): [Stream!]! +} +``` + +### Fields + +#### [Asset.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +Contract address of the ERC20 token + +#### [Asset.address](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Alias for id + +#### [Asset.chainId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g. 137 for Polygon + +#### [Asset.decimals](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Decimals of the ERC20 token + +#### [Asset.name](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Name of the ERC20 token + +#### [Asset.symbol](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Symbol of the ERC20 token + +#### [Asset.streams](#)[[Stream!]!](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) + +Streams that rely on this token + +##### [Asset.streams.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Asset.streams.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Asset.streams.orderBy](#)[Stream_orderBy](/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx) + +##### [Asset.streams.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Asset.streams.where](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/objects/batch.mdx b/docs/api/lockup/graphql/the-graph/objects/batch.mdx new file mode 100644 index 00000000..0b84b543 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/batch.mdx @@ -0,0 +1,121 @@ +--- +id: batch +title: Batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities + +```graphql +type Batch { + id: String! + hash: Bytes + timestamp: BigInt + batcher: Batcher + size: BigInt! + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + ): [Stream!]! +} +``` + +### Fields + +#### [Batch.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{chainId}-{txHash}-{batcher}` + +#### [Batch.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction that created this batch. + +#### [Batch.timestamp](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Timestamp of the transaction that created this batch. + +#### [Batch.batcher](#)[Batcher](/docs/api/lockup/graphql/the-graph/objects/batcher.mdx) + +The sender address that created this batch. + +#### [Batch.size](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Number of streams part of this batch. + +#### [Batch.streams](#)[[Stream!]!](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) + +Streams part of this batch. + +##### [Batch.streams.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Batch.streams.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Batch.streams.orderBy](#)[Stream_orderBy](/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx) + +##### [Batch.streams.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Batch.streams.where](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/objects/batcher.mdx b/docs/api/lockup/graphql/the-graph/objects/batcher.mdx new file mode 100644 index 00000000..475f908a --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/batcher.mdx @@ -0,0 +1,102 @@ +--- +id: batcher +title: Batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Sender address that created batches. + +```graphql +type Batcher { + id: String! + batchCounter: BigInt! + batches( + skip: Int = 0 + first: Int = 100 + orderBy: Batch_orderBy + orderDirection: OrderDirection + where: Batch_filter + ): [Batch!]! +} +``` + +### Fields + +#### [Batcher.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{chainId}-{sender}` + +#### [Batcher.batchCounter](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Numerical index. + +#### [Batcher.batches](#)[[Batch!]!](/docs/api/lockup/graphql/the-graph/objects/batch.mdx) + +Batches started by this sender. + +##### [Batcher.batches.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Batcher.batches.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Batcher.batches.orderBy](#)[Batch_orderBy](/docs/api/lockup/graphql/the-graph/enums/batch-order-by.mdx) + +##### [Batcher.batches.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Batcher.batches.where](#)[Batch_filter](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/objects/block.mdx b/docs/api/lockup/graphql/the-graph/objects/block.mdx new file mode 100644 index 00000000..ddedf37e --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/block.mdx @@ -0,0 +1,91 @@ +--- +id: block +title: _Block_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type _Block_ { + hash: Bytes + number: Int! + timestamp: Int + parentHash: Bytes +} +``` + +### Fields + +#### [\_Block\_.hash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +The hash of the block + +#### [\_Block\_.number](#)[Int!](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +The block number + +#### [\_Block\_.timestamp](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +Integer representation of the timestamp stored in blocks for the chain + +#### [\_Block\_.parentHash](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +The hash of the parent block diff --git a/docs/api/lockup/graphql/the-graph/objects/meta.mdx b/docs/api/lockup/graphql/the-graph/objects/meta.mdx new file mode 100644 index 00000000..2c5872d3 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/meta.mdx @@ -0,0 +1,89 @@ +--- +id: meta +title: _Meta_ +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The type for the top-level \_meta field + +```graphql +type _Meta_ { + block: _Block_! + deployment: String! + hasIndexingErrors: Boolean! +} +``` + +### Fields + +#### [\_Meta\_.block](#)[\_Block\_!](/docs/api/lockup/graphql/the-graph/objects/block.mdx) + +Information about a specific subgraph block. The hash of the block +will be null if the \_meta field has a block constraint that asks for +a block number. It will be filled if the \_meta field has no block constraint +and therefore asks for the latest block + +#### [\_Meta\_.deployment](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +The deployment ID + +#### [\_Meta\_.hasIndexingErrors](#)[Boolean!](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +If `true`, the subgraph encountered indexing errors at some past block diff --git a/docs/api/lockup/graphql/the-graph/objects/segment.mdx b/docs/api/lockup/graphql/the-graph/objects/segment.mdx new file mode 100644 index 00000000..c13afbc4 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/segment.mdx @@ -0,0 +1,123 @@ +--- +id: segment +title: Segment +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +See https://docs.sablier.com/concepts/lockup/segments + +```graphql +type Segment { + id: String! + amount: BigInt! + endAmount: BigInt! + endTime: BigInt! + exponent: BigInt! + milestone: BigInt! + position: BigInt! + startAmount: BigInt! + startTime: BigInt! + stream: Stream! +} +``` + +### Fields + +#### [Segment.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{streamId}-{position}` + +#### [Segment.amount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Amount distributed by this segment. + +#### [Segment.endAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Total amount distributed at `endTime`. This is the sum of this segment's amount and all previous segments' amounts. + +#### [Segment.endTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Alias for the `milestone` field. + +#### [Segment.exponent](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Exponent used for the streamed amount calculations. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/types/DataTypes.sol#L279-L288 + +#### [Segment.milestone](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp indicating the end of the segment. + +#### [Segment.position](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Position of the segment inside the array. + +#### [Segment.startAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Total amount distributed by the stream at `startTime`. This is the sum of all previous segments' amounts. + +#### [Segment.startTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp indicating the start of the segment. +This is also the end time of the previous segment or, if this is the first segment, it is the start time of the stream. + +#### [Segment.stream](#)[Stream!](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) + +The stream in which this segment was created. diff --git a/docs/api/lockup/graphql/the-graph/objects/stream.mdx b/docs/api/lockup/graphql/the-graph/objects/stream.mdx new file mode 100644 index 00000000..eb75b755 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/stream.mdx @@ -0,0 +1,339 @@ +--- +id: stream +title: Stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type Stream { + id: String! + alias: String! + chainId: BigInt! + subgraphId: BigInt! + tokenId: BigInt! + hash: Bytes! + timestamp: BigInt! + actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + ): [Action!]! + asset: Asset! + assetDecimals: BigInt! + batch: Batch! + category: StreamCategory! + contract: Bytes! + position: BigInt! + recipient: Bytes! + sender: Bytes! + startTime: BigInt! + transferable: Boolean! + version: String! + withdrawnAmount: BigInt! + canceledAction: Action + renounceAction: Action + cancelable: Boolean! + canceled: Boolean! + canceledTime: BigInt + depositAmount: BigInt! + duration: BigInt! + endTime: BigInt! + funder: Bytes! + intactAmount: BigInt! + parties: [Bytes!]! + proxender: Bytes + proxied: Boolean! + renounceTime: BigInt + shape: String + cliff: Boolean + cliffAmount: BigInt + cliffTime: BigInt + initial: Boolean + initialAmount: BigInt + segments( + skip: Int = 0 + first: Int = 100 + orderBy: Segment_orderBy + orderDirection: OrderDirection + where: Segment_filter + ): [Segment!]! + tranches( + skip: Int = 0 + first: Int = 100 + orderBy: Tranche_orderBy + orderDirection: OrderDirection + where: Tranche_filter + ): [Tranche!]! +} +``` + +### Fields + +#### [Stream.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{contractAddress}-{chainId}-{tokenId}` + +#### [Stream.alias](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Like the id: `{contractAlias}-{chainId}-{tokenId}` + +#### [Stream.chainId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The id of the chain, e.g., 137 for Polygon. + +#### [Stream.subgraphId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unique global id as tracked by the `Watcher` entity. +ኆ80 This may change if new data sources are added and the chronological order of streams changes. + +#### [Stream.tokenId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The id provided by the Lockup contract. This is the ERC-721 tokenId. + +#### [Stream.hash](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Hash of the Ethereum transaction that created this stream. + +#### [Stream.timestamp](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp of the Ethereum transaction that created this stream. + +#### [Stream.actions](#)[[Action!]!](/docs/api/lockup/graphql/the-graph/objects/action.mdx) + +Actions triggered by this stream. + +##### [Stream.actions.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.actions.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.actions.orderBy](#)[Action_orderBy](/docs/api/lockup/graphql/the-graph/enums/action-order-by.mdx) + +##### [Stream.actions.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Stream.actions.where](#)[Action_filter](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [Stream.asset](#)[Asset!](/docs/api/lockup/graphql/the-graph/objects/asset.mdx) + +ERC-20 token distributed via this stream. + +#### [Stream.assetDecimals](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +ERC-20 token decimals. Stored here to avoid loading the asset entity on each stream. + +#### [Stream.batch](#)[Batch!](/docs/api/lockup/graphql/the-graph/objects/batch.mdx) + +The batch the stream may be part of. +Note: this is available only when created within a batch create transaction. + +#### [Stream.category](#)[StreamCategory!](/docs/api/lockup/graphql/the-graph/enums/stream-category.mdx) + +Category used for sorting. + +#### [Stream.contract](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +The contract the stream originates from. + +#### [Stream.position](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Position in the batch, if available. + +#### [Stream.recipient](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Current recipient of the stream, with permission to withdraw funds to any third-party address. +Note: the recipient can change on NFT transfer. + +#### [Stream.sender](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Manager of the stream, with ability to cancel the stream. + +#### [Stream.startTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the start of the stream. + +#### [Stream.transferable](#)[Boolean!](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating the transferability of the stream. This is set when the stream is created, and cannot +be changed later. + +#### [Stream.version](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Version of contract, e.g., v1.0. + +#### [Stream.withdrawnAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The sum of all withdrawn amounts. + +#### [Stream.canceledAction](#)[Action](/docs/api/lockup/graphql/the-graph/objects/action.mdx) + +Action in which the stream was canceled. + +#### [Stream.renounceAction](#)[Action](/docs/api/lockup/graphql/the-graph/objects/action.mdx) + +Action in which the stream was made non-cancelable. +Note: if the stream was made non-cancelable from the get-go, this is the same as the Create action. + +#### [Stream.cancelable](#)[Boolean!](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating the cancelability of the stream. + +#### [Stream.canceled](#)[Boolean!](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag indicating if the stream was canceled. + +#### [Stream.canceledTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the when the stream was canceled. + +#### [Stream.depositAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The amount deposited when the stream was created. + +#### [Stream.duration](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Snapshot of the duration in seconds (the difference between end and start time). + +#### [Stream.endTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the end of the stream. + +#### [Stream.funder](#)[Bytes!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +The account that funded the stream, which can be different from the sender. + +#### [Stream.intactAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The amount that is still held by the stream regardless of whether if was fully vested or not. +This is the difference between the deposit amount and all withdrawn amounts. + +#### [Stream.parties](#)[[Bytes!]!](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Users associated with the stream: recipient, sender, possibly the sender's proxy. + +#### [Stream.proxender](#)[Bytes](/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx) + +Owner of the proxy when the stream is created through a PRBProxy (https://github.com/PaulRBerg/prb-proxy) +Note that proxy = stream sender, and proxender = owner of proxy + +#### [Stream.proxied](#)[Boolean!](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag for streams created through a PRBProxy. + +#### [Stream.renounceTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for when the stream was made non-cancelable. This can coincide with the create time. + +#### [Stream.shape](#)[String](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +An optional parameter to specify the shape of the distribution. +Available since Lockup v2.0. + +#### [Stream.cliff](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag for Linear streams with a cliff. + +#### [Stream.cliffAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The amount that will unlock at the cliff time. + +#### [Stream.cliffTime](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp for the start of the cliff. + +#### [Stream.initial](#)[Boolean](/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx) + +Flag for Linear stream with an initial unlock. +Available since Lockup v2.0. + +#### [Stream.initialAmount](#)[BigInt](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +The initial unlock amount of a Linear stream. +Available since Lockup v2.0. + +#### [Stream.segments](#)[[Segment!]!](/docs/api/lockup/graphql/the-graph/objects/segment.mdx) + +Segments of a Dynamic stream. + +##### [Stream.segments.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.segments.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.segments.orderBy](#)[Segment_orderBy](/docs/api/lockup/graphql/the-graph/enums/segment-order-by.mdx) + +##### [Stream.segments.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Stream.segments.where](#)[Segment_filter](/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx) + +#### [Stream.tranches](#)[[Tranche!]!](/docs/api/lockup/graphql/the-graph/objects/tranche.mdx) + +Segments of a Tranched stream. + +##### [Stream.tranches.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.tranches.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +##### [Stream.tranches.orderBy](#)[Tranche_orderBy](/docs/api/lockup/graphql/the-graph/enums/tranche-order-by.mdx) + +##### [Stream.tranches.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +##### [Stream.tranches.where](#)[Tranche_filter](/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx) diff --git a/docs/api/lockup/graphql/the-graph/objects/tranche.mdx b/docs/api/lockup/graphql/the-graph/objects/tranche.mdx new file mode 100644 index 00000000..0ded8a49 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/tranche.mdx @@ -0,0 +1,117 @@ +--- +id: tranche +title: Tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +See https://docs.sablier.com/concepts/lockup/tranches + +```graphql +type Tranche { + id: String! + amount: BigInt! + endAmount: BigInt! + endTime: BigInt! + position: BigInt! + startAmount: BigInt! + startTime: BigInt! + stream: Stream! + timestamp: BigInt! +} +``` + +### Fields + +#### [Tranche.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Unique identifier: `{streamId}-{position}` + +#### [Tranche.amount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Amount distributed by this tranche. + +#### [Tranche.endAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Total amount distributed at `endTime`. This is the sum of this tranche's amount and all previous tranches' amounts. + +#### [Tranche.endTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Alias for the `timestamp` field. + +#### [Tranche.position](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Position of the tranche inside the array. + +#### [Tranche.startAmount](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Total amount distributed by the stream at `startTime`. This is the sum of all previous tranches' amounts. + +#### [Tranche.startTime](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp indicating the start of the tranche. +This is also the end time of the previous tranche or, if this is the first tranche, it is the start time of the stream. + +#### [Tranche.stream](#)[Stream!](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) + +The stream in which this tranche was created. + +#### [Tranche.timestamp](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Unix timestamp indicating the end of the tranche. diff --git a/docs/api/lockup/graphql/the-graph/objects/watcher.mdx b/docs/api/lockup/graphql/the-graph/objects/watcher.mdx new file mode 100644 index 00000000..f7df3083 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/objects/watcher.mdx @@ -0,0 +1,96 @@ +--- +id: watcher +title: Watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +type Watcher { + id: String! + actionCounter: BigInt! + chainId: BigInt! + logs: [String!] + streamCounter: BigInt! +} +``` + +### Fields + +#### [Watcher.id](#)[String!](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +The chain ID. There is one watcher per subgraph. + +#### [Watcher.actionCounter](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Global counter for actions. + +#### [Watcher.chainId](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Alias for id. + +#### [Watcher.logs](#)[[String!]](/docs/api/lockup/graphql/the-graph/scalars/string.mdx) + +Used for debugging purposes. They are normally empty. + +#### [Watcher.streamCounter](#)[BigInt!](/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx) + +Global counter. diff --git a/docs/api/lockup/graphql/the-graph/queries/_category_.yml b/docs/api/lockup/graphql/the-graph/queries/_category_.yml new file mode 100644 index 00000000..312e8e6c --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/_category_.yml @@ -0,0 +1,4 @@ +collapsed: true +collapsible: true +label: Queries +position: 2 diff --git a/docs/api/lockup/graphql/the-graph/queries/action.mdx b/docs/api/lockup/graphql/the-graph/queries/action.mdx new file mode 100644 index 00000000..3e1d3268 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/action.mdx @@ -0,0 +1,90 @@ +--- +id: action +title: action +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +action( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Action +``` + +### Arguments + +#### [action.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [action.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [action.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/lockup/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/lockup/graphql/the-graph/queries/actions.mdx b/docs/api/lockup/graphql/the-graph/queries/actions.mdx new file mode 100644 index 00000000..8b900bf5 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/actions.mdx @@ -0,0 +1,102 @@ +--- +id: actions +title: actions +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +actions( + skip: Int = 0 + first: Int = 100 + orderBy: Action_orderBy + orderDirection: OrderDirection + where: Action_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Action!]! +``` + +### Arguments + +#### [actions.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [actions.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [actions.orderBy](#)[Action_orderBy](/docs/api/lockup/graphql/the-graph/enums/action-order-by.mdx) + +#### [actions.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [actions.where](#)[Action_filter](/docs/api/lockup/graphql/the-graph/inputs/action-filter.mdx) + +#### [actions.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [actions.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Action](/docs/api/lockup/graphql/the-graph/objects/action.mdx) + +A generic entity for tracking protocol actions. There may be multiple actions for a single tx. diff --git a/docs/api/lockup/graphql/the-graph/queries/asset.mdx b/docs/api/lockup/graphql/the-graph/queries/asset.mdx new file mode 100644 index 00000000..1a123830 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/asset.mdx @@ -0,0 +1,90 @@ +--- +id: asset +title: asset +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +asset( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Asset +``` + +### Arguments + +#### [asset.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [asset.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [asset.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/lockup/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/lockup/graphql/the-graph/queries/assets.mdx b/docs/api/lockup/graphql/the-graph/queries/assets.mdx new file mode 100644 index 00000000..3e7a6bfa --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/assets.mdx @@ -0,0 +1,102 @@ +--- +id: assets +title: assets +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +assets( + skip: Int = 0 + first: Int = 100 + orderBy: Asset_orderBy + orderDirection: OrderDirection + where: Asset_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Asset!]! +``` + +### Arguments + +#### [assets.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [assets.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [assets.orderBy](#)[Asset_orderBy](/docs/api/lockup/graphql/the-graph/enums/asset-order-by.mdx) + +#### [assets.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [assets.where](#)[Asset_filter](/docs/api/lockup/graphql/the-graph/inputs/asset-filter.mdx) + +#### [assets.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [assets.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Asset](/docs/api/lockup/graphql/the-graph/objects/asset.mdx) + +ERC-20 asset diff --git a/docs/api/lockup/graphql/the-graph/queries/batch.mdx b/docs/api/lockup/graphql/the-graph/queries/batch.mdx new file mode 100644 index 00000000..60a303c2 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/batch.mdx @@ -0,0 +1,94 @@ +--- +id: batch +title: batch +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batch( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Batch +``` + +### Arguments + +#### [batch.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [batch.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batch.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batch](/docs/api/lockup/graphql/the-graph/objects/batch.mdx) + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities diff --git a/docs/api/lockup/graphql/the-graph/queries/batcher.mdx b/docs/api/lockup/graphql/the-graph/queries/batcher.mdx new file mode 100644 index 00000000..99e90cbe --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/batcher.mdx @@ -0,0 +1,90 @@ +--- +id: batcher +title: batcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batcher( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Batcher +``` + +### Arguments + +#### [batcher.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [batcher.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batcher.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batcher](/docs/api/lockup/graphql/the-graph/objects/batcher.mdx) + +Sender address that created batches. diff --git a/docs/api/lockup/graphql/the-graph/queries/batchers.mdx b/docs/api/lockup/graphql/the-graph/queries/batchers.mdx new file mode 100644 index 00000000..350be787 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/batchers.mdx @@ -0,0 +1,102 @@ +--- +id: batchers +title: batchers +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batchers( + skip: Int = 0 + first: Int = 100 + orderBy: Batcher_orderBy + orderDirection: OrderDirection + where: Batcher_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Batcher!]! +``` + +### Arguments + +#### [batchers.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [batchers.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [batchers.orderBy](#)[Batcher_orderBy](/docs/api/lockup/graphql/the-graph/enums/batcher-order-by.mdx) + +#### [batchers.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [batchers.where](#)[Batcher_filter](/docs/api/lockup/graphql/the-graph/inputs/batcher-filter.mdx) + +#### [batchers.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batchers.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batcher](/docs/api/lockup/graphql/the-graph/objects/batcher.mdx) + +Sender address that created batches. diff --git a/docs/api/lockup/graphql/the-graph/queries/batches.mdx b/docs/api/lockup/graphql/the-graph/queries/batches.mdx new file mode 100644 index 00000000..e0ccd86a --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/batches.mdx @@ -0,0 +1,106 @@ +--- +id: batches +title: batches +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +batches( + skip: Int = 0 + first: Int = 100 + orderBy: Batch_orderBy + orderDirection: OrderDirection + where: Batch_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Batch!]! +``` + +### Arguments + +#### [batches.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [batches.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [batches.orderBy](#)[Batch_orderBy](/docs/api/lockup/graphql/the-graph/enums/batch-order-by.mdx) + +#### [batches.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [batches.where](#)[Batch_filter](/docs/api/lockup/graphql/the-graph/inputs/batch-filter.mdx) + +#### [batches.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [batches.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Batch](/docs/api/lockup/graphql/the-graph/objects/batch.mdx) + +Creating streams in bulk is possible using the SablierBatchLockup contract. +See https://github.com/sablier-labs/lockup/blob/v2.0/src/SablierBatchLockup.sol + +The entity can be immutable because a batch is only updated in the same block. +See https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#defining-entities diff --git a/docs/api/lockup/graphql/the-graph/queries/meta.mdx b/docs/api/lockup/graphql/the-graph/queries/meta.mdx new file mode 100644 index 00000000..ce23a995 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/meta.mdx @@ -0,0 +1,80 @@ +--- +id: meta +title: _meta +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +Access to subgraph metadata + +```graphql +_meta( + block: Block_height +): _Meta_ +``` + +### Arguments + +#### [\_meta.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +### Type + +#### [\_Meta\_](/docs/api/lockup/graphql/the-graph/objects/meta.mdx) + +The type for the top-level \_meta field diff --git a/docs/api/lockup/graphql/the-graph/queries/segment.mdx b/docs/api/lockup/graphql/the-graph/queries/segment.mdx new file mode 100644 index 00000000..3350e02d --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/segment.mdx @@ -0,0 +1,90 @@ +--- +id: segment +title: segment +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +segment( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Segment +``` + +### Arguments + +#### [segment.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [segment.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [segment.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Segment](/docs/api/lockup/graphql/the-graph/objects/segment.mdx) + +See https://docs.sablier.com/concepts/lockup/segments diff --git a/docs/api/lockup/graphql/the-graph/queries/segments.mdx b/docs/api/lockup/graphql/the-graph/queries/segments.mdx new file mode 100644 index 00000000..53fa84d4 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/segments.mdx @@ -0,0 +1,102 @@ +--- +id: segments +title: segments +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +segments( + skip: Int = 0 + first: Int = 100 + orderBy: Segment_orderBy + orderDirection: OrderDirection + where: Segment_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Segment!]! +``` + +### Arguments + +#### [segments.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [segments.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [segments.orderBy](#)[Segment_orderBy](/docs/api/lockup/graphql/the-graph/enums/segment-order-by.mdx) + +#### [segments.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [segments.where](#)[Segment_filter](/docs/api/lockup/graphql/the-graph/inputs/segment-filter.mdx) + +#### [segments.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [segments.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Segment](/docs/api/lockup/graphql/the-graph/objects/segment.mdx) + +See https://docs.sablier.com/concepts/lockup/segments diff --git a/docs/api/lockup/graphql/the-graph/queries/stream.mdx b/docs/api/lockup/graphql/the-graph/queries/stream.mdx new file mode 100644 index 00000000..1a08cf06 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/stream.mdx @@ -0,0 +1,88 @@ +--- +id: stream +title: stream +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +stream( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Stream +``` + +### Arguments + +#### [stream.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [stream.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [stream.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Stream](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) diff --git a/docs/api/lockup/graphql/the-graph/queries/streams.mdx b/docs/api/lockup/graphql/the-graph/queries/streams.mdx new file mode 100644 index 00000000..90c2407f --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/streams.mdx @@ -0,0 +1,100 @@ +--- +id: streams +title: streams +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Stream!]! +``` + +### Arguments + +#### [streams.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [streams.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [streams.orderBy](#)[Stream_orderBy](/docs/api/lockup/graphql/the-graph/enums/stream-order-by.mdx) + +#### [streams.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [streams.where](#)[Stream_filter](/docs/api/lockup/graphql/the-graph/inputs/stream-filter.mdx) + +#### [streams.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [streams.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Stream](/docs/api/lockup/graphql/the-graph/objects/stream.mdx) diff --git a/docs/api/lockup/graphql/the-graph/queries/tranche.mdx b/docs/api/lockup/graphql/the-graph/queries/tranche.mdx new file mode 100644 index 00000000..d3b333a0 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/tranche.mdx @@ -0,0 +1,90 @@ +--- +id: tranche +title: tranche +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +tranche( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Tranche +``` + +### Arguments + +#### [tranche.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [tranche.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [tranche.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Tranche](/docs/api/lockup/graphql/the-graph/objects/tranche.mdx) + +See https://docs.sablier.com/concepts/lockup/tranches diff --git a/docs/api/lockup/graphql/the-graph/queries/tranches.mdx b/docs/api/lockup/graphql/the-graph/queries/tranches.mdx new file mode 100644 index 00000000..f48a52f7 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/tranches.mdx @@ -0,0 +1,102 @@ +--- +id: tranches +title: tranches +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +tranches( + skip: Int = 0 + first: Int = 100 + orderBy: Tranche_orderBy + orderDirection: OrderDirection + where: Tranche_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Tranche!]! +``` + +### Arguments + +#### [tranches.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [tranches.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [tranches.orderBy](#)[Tranche_orderBy](/docs/api/lockup/graphql/the-graph/enums/tranche-order-by.mdx) + +#### [tranches.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [tranches.where](#)[Tranche_filter](/docs/api/lockup/graphql/the-graph/inputs/tranche-filter.mdx) + +#### [tranches.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [tranches.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Tranche](/docs/api/lockup/graphql/the-graph/objects/tranche.mdx) + +See https://docs.sablier.com/concepts/lockup/tranches diff --git a/docs/api/lockup/graphql/the-graph/queries/watcher.mdx b/docs/api/lockup/graphql/the-graph/queries/watcher.mdx new file mode 100644 index 00000000..d06646ee --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/watcher.mdx @@ -0,0 +1,88 @@ +--- +id: watcher +title: watcher +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +watcher( + id: ID! + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): Watcher +``` + +### Arguments + +#### [watcher.id](#)[ID!](/docs/api/lockup/graphql/the-graph/scalars/id.mdx) + +#### [watcher.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watcher.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/lockup/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/lockup/graphql/the-graph/queries/watchers.mdx b/docs/api/lockup/graphql/the-graph/queries/watchers.mdx new file mode 100644 index 00000000..0347f1c3 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/queries/watchers.mdx @@ -0,0 +1,100 @@ +--- +id: watchers +title: watchers +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +watchers( + skip: Int = 0 + first: Int = 100 + orderBy: Watcher_orderBy + orderDirection: OrderDirection + where: Watcher_filter + block: Block_height + subgraphError: _SubgraphErrorPolicy_! = deny +): [Watcher!]! +``` + +### Arguments + +#### [watchers.skip](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [watchers.first](#)[Int](/docs/api/lockup/graphql/the-graph/scalars/int.mdx) + +#### [watchers.orderBy](#)[Watcher_orderBy](/docs/api/lockup/graphql/the-graph/enums/watcher-order-by.mdx) + +#### [watchers.orderDirection](#)[OrderDirection](/docs/api/lockup/graphql/the-graph/enums/order-direction.mdx) + +#### [watchers.where](#)[Watcher_filter](/docs/api/lockup/graphql/the-graph/inputs/watcher-filter.mdx) + +#### [watchers.block](#)[Block_height](/docs/api/lockup/graphql/the-graph/inputs/block-height.mdx) + +The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + +#### [watchers.subgraphError](#)[\_SubgraphErrorPolicy\_!](/docs/api/lockup/graphql/the-graph/enums/subgraph-error-policy.mdx) + +Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + +### Type + +#### [Watcher](/docs/api/lockup/graphql/the-graph/objects/watcher.mdx) diff --git a/docs/api/lockup/graphql/the-graph/scalars/_category_.yml b/docs/api/lockup/graphql/the-graph/scalars/_category_.yml new file mode 100644 index 00000000..5002aa6b --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/_category_.yml @@ -0,0 +1,5 @@ +collapsed: true +collapsible: true +className: hidden +label: Scalars +position: 6 diff --git a/docs/api/lockup/graphql/the-graph/scalars/big-decimal.mdx b/docs/api/lockup/graphql/the-graph/scalars/big-decimal.mdx new file mode 100644 index 00000000..adcc83a4 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/big-decimal.mdx @@ -0,0 +1,68 @@ +--- +id: big-decimal +title: BigDecimal +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar BigDecimal +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx b/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx new file mode 100644 index 00000000..a8254819 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/big-int.mdx @@ -0,0 +1,68 @@ +--- +id: big-int +title: BigInt +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar BigInt +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx b/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx new file mode 100644 index 00000000..c9d24bbd --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/boolean.mdx @@ -0,0 +1,68 @@ +--- +id: boolean +title: Boolean +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Boolean` scalar type represents `true` or `false`. + +```graphql +scalar Boolean +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx b/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx new file mode 100644 index 00000000..20042d51 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/bytes.mdx @@ -0,0 +1,68 @@ +--- +id: bytes +title: Bytes +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +No description + +```graphql +scalar Bytes +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/float.mdx b/docs/api/lockup/graphql/the-graph/scalars/float.mdx new file mode 100644 index 00000000..6d939a16 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/float.mdx @@ -0,0 +1,68 @@ +--- +id: float +title: Float +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). + +```graphql +scalar Float +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/id.mdx b/docs/api/lockup/graphql/the-graph/scalars/id.mdx new file mode 100644 index 00000000..1a7b44a0 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/id.mdx @@ -0,0 +1,68 @@ +--- +id: id +title: ID +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. + +```graphql +scalar ID +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/int-8.mdx b/docs/api/lockup/graphql/the-graph/scalars/int-8.mdx new file mode 100644 index 00000000..8881d8cc --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/int-8.mdx @@ -0,0 +1,68 @@ +--- +id: int-8 +title: Int8 +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +8 bytes signed integer + +```graphql +scalar Int8 +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/int.mdx b/docs/api/lockup/graphql/the-graph/scalars/int.mdx new file mode 100644 index 00000000..f638c661 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/int.mdx @@ -0,0 +1,68 @@ +--- +id: int +title: Int +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. + +```graphql +scalar Int +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/string.mdx b/docs/api/lockup/graphql/the-graph/scalars/string.mdx new file mode 100644 index 00000000..7d39cab6 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/string.mdx @@ -0,0 +1,68 @@ +--- +id: string +title: String +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. + +```graphql +scalar String +``` diff --git a/docs/api/lockup/graphql/the-graph/scalars/timestamp.mdx b/docs/api/lockup/graphql/the-graph/scalars/timestamp.mdx new file mode 100644 index 00000000..b7bb9a92 --- /dev/null +++ b/docs/api/lockup/graphql/the-graph/scalars/timestamp.mdx @@ -0,0 +1,68 @@ +--- +id: timestamp +title: Timestamp +--- + + + + + + +export const Bullet = () => ( + <> + +  ●  + + +); + +export const SpecifiedBy = (props) => ( + <> + Specification + + ⎘ + + +); + +export const Badge = (props) => ( + <> + {props.text} + +); + +import { useState } from "react"; + +export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => { + const [open, setOpen] = useState(startOpen); + return ( +
    + { + e.preventDefault(); + setOpen((open) => !open); + }} + style={{ listStyle: "none" }} + > + {open ? dataOpen : dataClose} + + {open && children} +
    + ); +}; + +A string representation of microseconds UNIX timestamp (16 digits) + +```graphql +scalar Timestamp +``` diff --git a/docs/api/lockup/the-graph/01-entities.mdx b/docs/api/lockup/the-graph/01-entities.mdx deleted file mode 100644 index 188a0fc5..00000000 --- a/docs/api/lockup/the-graph/01-entities.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: "entities" -sidebar_position: 1 -title: "Entities" ---- - -## Entity Architecture - -GraphQL entities defined by the Sablier subgraphs are meant to mirror the functionality exposed by our core lockup -contracts. To achieve this, events are stored as historical entries (e.g. Action) while also being used to mutate -attributes for live entities (e.g. Stream). - -Inside the **lockup** subgraph, the -[`schema.graphql`](https://github.com/sablier-labs/indexers/blob/main/apps/lockup/schema.graphql) file is responsible -of defining the following Sablier entities: - -### Primary - -| Entity | Description | -| -------- | -------------------------------------------------------------------------------------- | -| Contract | Instances of `LockupLinear`, `..Dynamic`, `..Tranched` or the new `Merged` | -| Action | Emitted events transformed into historical entries (e.g. Create, Withdraw) | -| Stream | Primary entity tracking the up to date state of a stream | -| Asset | The ERC20 asset that is being streamed | -| Segment | The function segment used to build the custom curve in cases of Lockup Dynamic streams | -| Tranche | The tranche/step used to build shapes powered by Lockup Tranched streams | - -### Secondary - -| Entity | Description | -| ------- | --------------------------------------------------------------------------------------------------------------- | -| Batch | An entity grouping a set of stream created all at once (action done through the `lockup-periphery`) | -| Batcher | An entity resolving 1:1 to a stream sender, in charge of managing the count of "batches" of streams one creates | -| Watcher | A singleton data store for subgraph-level unique indexes such as the stream or action index | diff --git a/docs/api/lockup/the-graph/02-structure.mdx b/docs/api/lockup/the-graph/02-structure.mdx deleted file mode 100644 index 31be0eb3..00000000 --- a/docs/api/lockup/the-graph/02-structure.mdx +++ /dev/null @@ -1,220 +0,0 @@ ---- -id: "structure" -sidebar_position: 2 -title: "Structure" ---- - -We'll break down the [schema](https://github.com/sablier-labs/indexers/blob/main/apps/lockup/schema.graphql) into -primary and secondary entities. - -| Type | Entities | -| --------- | ------------------------------------------------- | -| Primary | Contract, Action, Stream, Asset, Segment, Tranche | -| Secondary | Batch, Batcher, Watcher | - -## Contract - -The subgraph is designed to track multiple deployments. Therefore, at any given time the indexer may listen for updates -on many instances of `LockupLinear` or `...Dynamic / Tranched / Merged` contracts . - -A unique `alias` will be attributed to every contract, such that contracts (and later streams) will be identifiable -through both a long form and a short form identifier. See the [Stream](#stream) for details. - ---- - -## Action - -Events emitted by the Sablier Lockup contracts will: - -1. Be used to mutate the data stored in the individual `Stream` entities -2. Be stored as historical logs (list of `Action`) to show the evolution of a related stream - -Based on the schema defined `ActionCategory`, the following actions will be tracked by the subgraph: - -| Action | Contract Events | -| -------------- | --------------------------------------------------- | -| Approval | Approval | -| ApprovalForAll | ApprovalForAll | -| Create | CreateLockupLinearStream, CreateLockupDynamicStream | -| Cancel | CancelLockupStream | -| Renounce | RenounceLockupStream | -| Transfer | Transfer | -| Withdraw | WithdrawFromLockupStream | - -To keep all actions under the same umbrella, some details will be stored under general purpose attributes like -`amountA`, `amountB`, `addressA`, `addressB` which based on the type of action can be resolved to context-specific -values. Am example can be found -[here](https://github.com/sablier-labs/indexers/blob/main/apps/lockup/src/mappings/handle-stream.ts#L79-L82) for the -Cancel event. - ---- - -## Stream - -### Identifying - -Inside the contracts, streams will be assigned a unique `tokenId` (or `streamId`). While this makes it easy to identify -items at the contract level, we need to consider the following for both subgraphs and client interfaces: - -- items should be uniquely recognizable across multiple contract instances -- items should be uniquely identifiable across multiple chains -- items should be identifiable with short, easy to digest names - -To address these observations, the subgraph uses two related identifiers for a Stream. - -| Type | Description | Example | -| -------------- | --------------------------------------------------------------------------------------------------- | ------------------------------ | -| `Stream.id` | A self-explanatory structure built using the following structure: `contractAddress-chainId-tokenId` | `0xAB..12-137-21` | -| `Stream.alias` | A short version of the `id` where the contract is aliased: `contractAlias-chainId-tokenId` | `LK-137-21` | - -Both examples from the table above translate to: **_a stream on Polygon (chain id `137`), within the Lockup Merged -contract at address `0xAB..12`, with the tokenId `21`_**. - -:::note - -The aliases defined in the subgraph will be used by client apps to resolve data about a stream. Make sure to keep them -in sync, avoid conflicts and regard them as immutable (once decided, never change them). - -::: - -### Aliases - -:::important - -Following the merger of LockupLinear, LockupDynamic, and LockupTranched into a single contract, the alias for all -streaming shapes was standardized as `LK`. - -::: - -To provide a simple visual structure, while also accounting for future stream curves (backwards compatibility) we use -the following abbreviations as aliases: - -- Lockup V2.0 contracts become `LK`, e.g `LK-137-1` -- Lockup Linear (iteration 1) contracts become `LL`, e.g. `LL-137-1` -- Lockup Linear (iteration 2) contracts become `LL2`, e.g. `LL2-137-1` -- Lockup Dynamic (iteration 1) contracts become `LD`, e.g. `LD-137-1` -- Lockup Dynamic (iteration 2) contracts become `LD2`, e.g. `LD2-137-1` -- Lockup Tranched (iteration 1) contracts become `LT`, e.g. `LT-137-1` - -More on contract iterations and past versions [here](/guides/lockup/deployments#versions). - -### Relevant parties - -Within the larger Sablier ecosystem, the number of relevant entities participating in a stream (and the dynamics between -them) has grown past the immutable `sender` and `recipient`. Therefore, we identify the following parties involved in a -stream. - -#### The recipient (gets paid\*) - -As funds are being streamed, they will slowly become eligible to withdraw and spend unlocked tokens. The `recipient` is -defined at the start of the stream but can change as a result of a transfer. - -On transfer, the old recipient moves the NFT (the stream itself) to another address, which becomes the new recipient. -Rights to withdraw and claim future streamed funds are naturally transferred to this new address. - -#### The sender (will pay\*) - -They are an immutable party, defined at the start of the stream. Based on the configuration chosen for the stream, they -will be entitled to later cancel the stream, renounce it (disable cancelability) or withdraw on behalf of the recipient. - -In case of a cancelation, the `sender` will receive any unstreamed tokens as part of the refund. - -#### The funder - -When the stream is created, they provide the tokens to be gradually streamed to the recipient. Usually, they are the -same entity as the sender. However, there may be cases when someone wishes to create a stream on another user's behalf, -while also marking them as the sender. In that case, this initial address will be accounted for as the stream's -`funder`. - -#### The proxender (relevant only for Lockup V1.0, deprecated with Lockup V1.1+) - -:::warning Warning: Deprecated - -Sablier Lockup V1.0 involved users deploying a "PRBProxy" contract through which they interacted with the Sablier -contracts. With LOckup V1.1+, this is not the case any more because no proxy contracts are used anymore. Therefore, if -you're not looking to support old versions of the protocol, you don't need to worry about `proxenders` and `proxy`. - -::: - -[In V2.0], while not mandatory for the core functionality, Sablier used [PRBProxy](https://github.com/paulrberg/prb-proxy) -in its architecture. The official client interfaces provided support for functionality exposed through both EOAs and this -proxy integration. - -For streams created within this "extended" ecosystem, a few attributes and entities will change meaning as such: - -- the `stream.proxied` flag will turn `true` -- the `stream.sender` address will resolve to a `proxy` contract address, owned by the `stream.proxender` -- the `stream.proxender` address (usually an EOA) will control this `sender` proxy and instruct it to perform actions on - its behalf (like a special account) - -| # | Examples of supported flows | -| --- | -------------------------------------------------------------------------------------------------------------------- | -| 1 | `0xF` the funder (EOA), funds a stream on behalf of `0xA`, the sender (EOA), towards `0xB` the recipient (EOA) | -| 2 | `0xA` the sender (EOA), creates a stream towards `0xB` the recipient (EOA) | -| 3 | `0xA` the proxender (EOA), through their proxy `0xA1` (proxy contract), creates a stream towards `0xB` the recipient | - -While other combinations are possible, the most likely ones (as supported by the official interfaces) will be similar to -example #3. - -:::warning - -For Lockup V1.1 and above, you should only rely on the `recipient` and `sender` parties. - -::: - ---- - -## Asset - -Tokens (ERC20) streamed through the protocol will be defined through an `Asset` entity. - -:::info - -As a development caveat, some ERC20 contracts are designed to store details (e.g. name, symbol) as `bytes32` and not -`string`. Prior to deploying a subgraph, make sure you take into account these details as part of any Asset entity -implementation. For examples, see the asset "helper" files inside this subgraph's repository code. - -::: - ---- - -## Segment - -The custom emission curve used by Lockup Dynamic streams will be defined as a sequence of -[segments](/concepts/lockup/segments). This entity will store data regarding those segments, which will be later used to -reconstruct the shape of the curve client side. - ---- - -## Tranche - -The custom emission curve used by Lockup Tranched streams will be defined as a sequence of -[tranches](/concepts/lockup/tranches). This entity will store data regarding those tranches, which will be later used to -reconstruct the shape of the curve client side. - -:::tip - -Tranches can also be represented as a set of two segments (one horizontal, one vertical) so client apps may benefit from -artificially creating segments from tranches. - -::: - ---- - -## Batch and Batcher - -The lockup-periphery, while not explicitly tracked by the subgraph will offer some extra functionality to proxy-sourced -streams. One of these functionalities will be **batch stream creation** (or **stream grouping**). Using methods like -`createWithDurations` or `createWithTimestamps` a sender will be able to create multiple streams at once - considered -part of the same batch. - -To identify these relationships between stream items, the `Batch` entity will group items created in the same -transaction, by finding events emitted with the same tx hash. The `Batcher` will then assign a user-specific unique -index to every group. - ---- - -## Watcher - -The Watcher (one for the entire subgraph) will provide specific utilities to the entire system, like global stream -identifiers (a numeric id unique to a stream across all contract instances) and global action identifiers. diff --git a/docs/api/lockup/the-graph/03-architecture.mdx b/docs/api/lockup/the-graph/03-architecture.mdx deleted file mode 100644 index d24bdb21..00000000 --- a/docs/api/lockup/the-graph/03-architecture.mdx +++ /dev/null @@ -1,81 +0,0 @@ ---- -id: "architecture" -sidebar_position: 3 -title: "Architecture" ---- - -## Preparations - -In order to start indexing all whitelisted Lockup contracts we need a genesis event. With Sablier Lockup, there is no -factory pattern so we couldn't rely on a -[data source](https://thegraph.com/docs/en/developing/creating-a-subgraph/#data-source-templates) contract. The next -best things for a "genesis" point was to rely on the first event triggered by the earliest registered onchain contract - -To reduce the number of dependencies required to kickstart a subgraph, we chose to rely on this approach instead of -implementing a separate registry contract. Therefore, when setting up a deployment, you'll need to follow a few rules. - -```ts title="packages/constants/.../sepolia.ts" -export let chainId = 11155111; -export let chain = "sepolia"; -export let startBlock = 4067889; - -/** Rule: keep addresses lowercased */ - -/** - * Keep aliases unique and always in sync with the frontend - * @example export let linear = [[address1, alias1, version1], [address2, alias2, version2]] - */ - -export let linear: string[][] = [ - ["0xd4300c5bc0b9e27c73ebabdc747ba990b1b570db", "LL", "V20"], - ["0x7a43f8a888fa15e68c103e18b0439eb1e98e4301", "LL2", "V21"], -]; - -export let dynamic: string[][] = [ - ["0x421e1e7a53ff360f70a2d02037ee394fa474e035", "LD", "V20"], - ["0xc9940ad8f43aad8e8f33a4d5dbbf0a8f7ff4429a", "LD2", "V21"], -]; - -export let tranched: string[][] = [["0x...", "LT2", "V21"]]; - -export let merged: string[][] = [["0x...", "LK", "V23"]]; - -/** PRBProxy registry */ -export let registry = "0x584009E9eDe26e212182c9745F5c000191296a78"; - -// highlight-start -/** - * The initializer contract is used to trigger the indexing of all other contracts. - * It should be a linear contract, the oldest/first one deployed on this chain. - * ↪ 🚨 On any new chain, please create a Lockup Linear stream to kick-off the indexing flow - */ - -export let initializer = linear[0][0]; -//highlight-end -``` - -## Configurations - -Using this data, we'll call the `yarn deploy:` script. In turn it will: - -0. **[Chain]** Lock onto a specified chain -1. **[Setup]** Clean artifacts and older files -2. **[Template]** Convert TS files into JS for mustache to use in the next step -3. **[Template]** Use mustache to create a specific `subgraph.yaml` (from `subgraph.template.yaml`) using the selected - chain's details -4. **[Template]** Duplicate the selected chain's configuration file as the "current" `env.ts` (for possible imports - directly in Assembly Script) -5. **[Codegen]** Run codegen using the files prepared above, as well as the handlers implementation -6. **[Deploy]** Deploy the code to the endpoint selected based on the specified chain - -## Multi-version support - -Sablier is a fast moving protocol, with a new deployment every few months. Up to this point we can already see V2.0 and -V2.1 supported by the client interface and integrators. - -To offer a backwards compatible subgraph (between Sablier Core/ Sablier Periphery **v2.0** and **v2.x**) we'll aggregate -the ABIs of the two versions. This will cause the Lockup Linear and Dynamic ABIs to contain multiple events with the -same name, but different signatures (due to event parameters). - -Luckily, because of [this issue](https://github.com/graphprotocol/graph-tooling/pull/247) in `graph-tooling`, event -names will be de-duplicated using a numbering scheme (e.g. a duplicated `Event` will become `Event`, `Event1`, ...). diff --git a/docs/api/lockup/the-graph/04-queries.md b/docs/api/lockup/the-graph/04-queries.md deleted file mode 100644 index 0af3e7e2..00000000 --- a/docs/api/lockup/the-graph/04-queries.md +++ /dev/null @@ -1,214 +0,0 @@ ---- -id: "queries" -sidebar_position: 4 -title: "Queries" ---- - -Building on top of the [entity structure](/api/lockup/the-graph/structure) defined earlier, here are some common GraphQL -queries for fetching data from the Sablier subgraph. - -## Streams (All) - -### Recent streams - -```graphql title="The 10 most recent streams" -query getStreams { - streams(first: 10, orderBy: subgraphId, orderDirection: desc) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -### Paginated streams - -To query streams in sets/pages (and avoid edge cases where using timestamps may skip simultaneous batched streams), we -can use the unique `subgraphId`. - -This query includes pagination. - -```graphql title="The next streams indexed before the last seen subgraphId" -query getStreams($first: Int!, $subgraphId: numeric!) { - streams(first: $first, orderBy: subgraphId, orderDirection: desc, where: { subgraphId_lt: $subgraphId }) { - id - alias - category - asset { - id - symbol - } - } -} -``` - -## Streams (Filtered) - -### Streams by sender (with support for the old V2.0) - -To support both [proxy senders](/api/lockup/the-graph/structure) (case 3) and -[native senders](/api/lockup/the-graph/structure) (case 2) we query for: - -- streams where the connected account is the native sender -- streams where the connected account is the proxender - the owner of the proxy labeled as a sender - -This query includes pagination. - -```graphql title="The next streams created by an address (natively or through a proxy)" -streams( - first: $first - skip: $skip - orderBy: $subgraphId - orderDirection: desc - where: { - or: [ - { and: [{ sender: $sender }, { subgraphId_lt: $subgraphId }] } - { and: [{ proxender: $sender }, { subgraphId_lt: $subgraphId }] } - ] - } -) { - id - alias - category -} -``` - -### Streams by sender or recipient - -To show all streams that have an address marked as a sender (all cases) or a recipient, extend the example above to -account for the recipient aspect. - -This query includes pagination. - -```graphql title="The next streams related to an address, as a sender/proxender or recipient" -streams( - first: $first - skip: $skip - orderBy: $subgraphId - orderDirection: desc - where: { - or: [ - { and: [{ sender: $sender }, { subgraphId_lt: $subgraphId }] } - { and: [{ proxender: $sender }, { subgraphId_lt: $subgraphId }] } - { and: [{ recipient: $recipient }, { subgraphId_lt: $subgraphId }] } - ] - } -) { - id - alias - category - } -``` - -### Streams by filters - -The official V2 Interfaces will provide a search interface where one may query for a list of streams using the following -filters (the conditions will be combined) - -- the sender address -- the recipient address -- a list of stream identifiers - -This query includes pagination. - -```graphql title="The 'where' clause for a complex paginated search filter" -where: { - or: [ - { - and: [ - { sender: $sender } - { id_in: $streamIds } - { subgraphId_lt: $subgraphId } - ] - } - { - and: [ - { proxender: $sender } - { id_in: $streamIds } - { subgraphId_lt: $subgraphId } - ] - } - { - and: [ - { recipient: $recipient } - { id_in: $streamIds } - { subgraphId_lt: $subgraphId } - ] - } - ] -} -``` - -## Streams ( + Airdrop 🪂) - -### Streams by campaign - -This query yields data about all streams generated by a specific airdrop campaign. It makes use of the fact that -`stream.funder` will be set to the campaign's address (since tokens funding the streams are coming from that contract). - -```graphql title="Streams by campaign" -query getStreams_ByCampaignId($campaignId: String!) { - streams(where: { funder: $campaignId }) { - ...StreamFragment - } -} -``` - -:::tip - -To avoid writing the same entity definitions over and over again, check out -[Fragments](https://graphql.org/learn/queries/#fragments). - -```graphql - -fragment StreamFragment on Stream { - id - sender - recipient - contract { - id - address - } -} - -query getStreams(...){ - streams(...){ - ...StreamFragment - } -} - -``` - -::: - -:::note - -Since Sablier uses multiple immutable contract versions and deployments (e.g. -[lockup's variants](/guides/lockup/deployments#versions)), if you're going to perform onchain actions on these streams -(e.g. getting the `streamedAmountOf` for each one) make sure you call those methods on the right contract. For -subgraphs/indexers, we store the source contract under `stream.contract.address`. - -::: - -## Actions - -### Actions by stream - -```graphql title="Most recent 100 stream actions such as withdrawals or transfers" -actions( - first: 100 - orderBy: subgraphId # Action's subgraph id - orderDirection: desc - where: { stream: $streamId } -) { - id - category - stream { - ...StreamFragment - } -} -``` diff --git a/docs/api/lockup/the-graph/_category_.json b/docs/api/lockup/the-graph/_category_.json deleted file mode 100644 index d24628e9..00000000 --- a/docs/api/lockup/the-graph/_category_.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "collapsed": true, - "label": "The Graph", - "position": 3 -} diff --git a/docs/apps/04-legacy-v1.mdx b/docs/apps/04-legacy.mdx similarity index 65% rename from docs/apps/04-legacy-v1.mdx rename to docs/apps/04-legacy.mdx index fe9eb1aa..835e0a1a 100644 --- a/docs/apps/04-legacy-v1.mdx +++ b/docs/apps/04-legacy.mdx @@ -1,5 +1,5 @@ --- -id: "v1" +id: "legacy" sidebar_position: 4 title: "Legacy" --- @@ -10,5 +10,5 @@ The first version of the Sablier protocol will keep running in perpetuity thanks current Sablier Interfaces are not compatible with the Legacy protocol. We will keep hosting the legacy apps so that you can manage any streams previously created on V1. -- Sender interface: [v1-pay.sablier.com](https://v1-pay.sablier.com) -- Recipient interface: [v1-app.sablier.com](https://v1-app.sablier.com) +- Sender interface: [legacy-sender.sablier.com](https://legacy-sender.sablier.com) +- Recipient interface: [legacy-recipient.sablier.com](https://legacy-recipient.sablier.com) diff --git a/docs/apps/features/01-overview.md b/docs/apps/features/01-overview.md index 5f5c5c27..a4ce8a69 100644 --- a/docs/apps/features/01-overview.md +++ b/docs/apps/features/01-overview.md @@ -14,7 +14,7 @@ available features. ## Use-case centric -![Banner App Navigation](/banners/docs-app-navigation.webp) +![Banner App Navigation](/img/banners/docs-app-navigation.webp) The app is split among three use cases: diff --git a/docs/apps/features/02-vesting.mdx b/docs/apps/features/02-vesting.mdx index af7885cf..77342645 100644 --- a/docs/apps/features/02-vesting.mdx +++ b/docs/apps/features/02-vesting.mdx @@ -6,12 +6,12 @@ title: "Vesting" # Vesting -import LockupNFTSVG from "@site/static/img/lockup-nft.svg"; +import LockupNFTSVG from "@site/static/img/nft/lockup.svg"; The Sablier Interface will showcase [Lockup](/concepts/lockup/overview) streams under the Vesting tab. These are token streams with a fixed duration, predefined amount and strict distribution curve. -![Banner Vesting](/banners/docs-vesting.webp) +![Banner Vesting](/img/banners/docs-vesting.webp) In Q4 2024 the app has undergone a use-case centric redesign. For past users, all streams created before this update will show up in the Vesting page. diff --git a/docs/apps/features/03-payments.md b/docs/apps/features/03-payments.md index 790da059..f174de0e 100644 --- a/docs/apps/features/03-payments.md +++ b/docs/apps/features/03-payments.md @@ -7,7 +7,7 @@ title: "Payments" The Sablier Interface displays [Flow](/concepts/flow/overview) streams under the Payments tab. These are token streams with no end time, an ever-increasing amount (meaning the streams can be topped up), and a flexible rate per second. -![Banner Payments](/banners/docs-payments.webp) +![Banner Payments](/img/banners/docs-payments.webp) ## Features diff --git a/docs/apps/features/04-airdrops.md b/docs/apps/features/04-airdrops.md index 8a60b7d6..97f4e212 100644 --- a/docs/apps/features/04-airdrops.md +++ b/docs/apps/features/04-airdrops.md @@ -13,7 +13,7 @@ distribute tokens to a large number of users in a fair and efficient manner. Sta ## Airstreams (Vested Airdrops) -![Banner Airdrops Vesting](/banners/docs-airdrops-airstreams.webp) +![Banner Airdrops Vesting](/img/banners/docs-airdrops-airstreams.webp) **Airdrops should be vested!** @@ -25,7 +25,7 @@ their airdrops as vesting streams. ## Instant Airdrops -![Banner Airdrops Instant](/banners/docs-airdrops-instant.webp) +![Banner Airdrops Instant](/img/banners/docs-airdrops-instant.webp) Sablier also offers an instant airdrop solution, meaning the tokens are immediately released to the recipients upon claiming. diff --git a/docs/apps/guides/02-url-schemes.mdx b/docs/apps/guides/02-url-schemes.mdx index 059e8c5f..1cd0b197 100644 --- a/docs/apps/guides/02-url-schemes.mdx +++ b/docs/apps/guides/02-url-schemes.mdx @@ -4,8 +4,8 @@ sidebar_position: 2 title: "URL Schemes" --- -The Sablier Interface makes it easy for integrators to direct their users to specific resources. In this guide, we will -cover a number of resource locators used by the apps, as well as dive into how you can understand and re-create them. +The Sablier Interface makes it easy for integrators to link to specific users or entities. In this guide, we will +cover a number of resource locators used by the apps, and dive into how you can use them. ## Stream Page @@ -17,7 +17,7 @@ cover a number of resource locators used by the apps, as well as dive into how y Every stream created through the Sablier Protocol is identified through three parameters: -- a **chainId** (e.g., `1` for Ethereum, `10` for [OP Mainnet](https://chainlist.org/) ) +- a **chainId** (e.g., `1` for Ethereum, `10` for Optimism, etc. ) - an **alias** (e.g., `LK`) OR a **contract** (e.g. `0x12..AB`) - a **streamId** (generated at stream creation) @@ -51,7 +51,7 @@ contract `alias`, the `chainId`, and the `streamId`, and then you add them to th As you can see, the main format is `contractA-chainId-streamId`. This is supported both at the app and the subgraph level. For situations when an alias cannot be used, we fallback to the following format: `contractAddress-chainId-streamId`. Read more about identifiers and aliases in our -[subgraph documentation](/api/lockup/the-graph/structure#identifying). +[APIs docs](/api/ids). --- @@ -62,20 +62,24 @@ level. For situations when an alias cannot be used, we fallback to the following The Sablier Interface comes with an advanced search view that can be accessed directly through URL parameters. If you want to use this feature, here is a table with all the available parameters: -| Parameter | Type | Description | Values | -| :-------- | :----------- | :------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| t | String | The active tab in the dashboard. For global queries, use `search`. | `search`, `sender`, or `recipient` | -| c | Number | The chain of the streams in the search result. This parameter is required. | `1`, `10`, `42161` or other [supported chain](/guides/lockup/deployments) | -| s | String | The address of the stream sender by which to filter | `0x12...AB`, `vitalik.eth` | -| r | String | The address of the stream recipient by which to filter | `0x12...AB`, `vitalik.eth` | -| a | String | The address of the asset to filter for | `0x12...CD` for DAI | -| i | String array | An array of IDs to look up | `LL-5-1`, `LD-5-14` etc. | +| Parameter | Type | Description | Values | +| :-------- | :----------- | :------------------------------------------------------------------------- | --------------------------------------------------------------- | +| a | String | The address of the asset to filter for | `0x12...CD` for DAI | +| c | Number | The chain of the streams in the search result. This parameter is required. | `1`, `42161`, or another [chain ID](/guides/lockup/deployments) | +| i | String array | An array of IDs to look up | `LL-5-1`, `LD-5-14` etc. | +| r | String | The address of the stream recipient by which to filter | `0x12...AB`, `vitalik.eth` | +| s | String | The address of the stream sender by which to filter | `0x12...AB`, `vitalik.eth` | +| t | String | The active tab in the dashboard. For global queries, use `search`. | `search`, `sender`, or `recipient` | ### Building the URL By combining the parameters described above, you can send users from your interface directly to the search view in the Sablier Interface. To build the link, you append all these elements to the base link `app.sablier.com/` as query -parameters, e.g. `?t=search&c=1&s=0x..1&r=0x...2&i=LL-1-2,LL2-1-29`. +parameters, e.g.: + +```text +app.sablier.com/?t=search&c=1&s=0x..1&r=0x...2&i=LL-1-2,LL2-1-29 +``` Here are some examples of URLs and the associated search modal for each: @@ -112,12 +116,12 @@ By combining the elements described above, you can send users from your interfac the Sablier Interface. To build the link to a stream resource, you use a hyphen `-` to concatenate the uppercase contract `alias`, the `chainId`, and the `streamId`, and then you add them to the base URL `app.sablier.com/stream/`: -| URL | Description | -| :---------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------- | -| [app.sablier.com/stream/0xe72[...]bbabc-11155111](https://app.sablier.com/airstream/0xe72175dd12ac7efca6b7d12dfc913a5f661bbabc-11155111/) | Airstream on Ethereum Sepolia | +| URL | Description | +| :--------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------- | +| [app.sablier.com/stream/0xe72[...]bbabc-11155111](https://app.sablier.com/airstream/0xe72175dd12ac7efca6b7d12dfc913a5f661bbabc-11155111) | Airstream on Ethereum Sepolia | As you can see, the main format is `contractA-chainId`. This is supported both at the app and the subgraph level. Read -more about identifiers and aliases in our [subgraph documentation](/api/airdrops/the-graph/entities#identifying). +more about identifiers and aliases in our [APIs docs](/api/ids). ## Search Airstreams @@ -128,13 +132,17 @@ want to use this feature, here is a table with all the available parameters: | Parameter | Type | Description | Values | | :-------- | :----- | :---------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| t | String | The active tab in the dashboard. For global queries, use `search`. | `search` | +| a | String | The address of the asset to filter for | `0x12...CD` for DAI | | c | Number | The chain of the airstreams in the search result. This parameter is required. | `1`, `10`, `42161` or other [supported chain](/guides/lockup/deployments) | | m | String | The address of the campaign admin by which to filter | `0x12...AB`, `vitalik.eth` | -| a | String | The address of the asset to filter for | `0x12...CD` for DAI | +| t | String | The active tab in the dashboard. For global queries, use `search`. | `search` | ### Building the URL By combining the parameters described above, you can send users from your interface directly to the search view in the Sablier Interface. To build the link, you append all these elements to the base link `app.sablier.com/airdrops` as query -parameters, e.g. `?t=search&c=1&m=0x..1&a=0x`. +parameters, e.g.: + +```text +app.sablier.com/airdrops/?t=search&c=1&m=0x..1&a=0x +``` diff --git a/docs/concepts/01-what-is-sablier.mdx b/docs/concepts/01-what-is-sablier.mdx index 7357e2b6..3f4c42b9 100644 --- a/docs/concepts/01-what-is-sablier.mdx +++ b/docs/concepts/01-what-is-sablier.mdx @@ -5,10 +5,10 @@ title: "What Is Sablier?" --- import Link from "@docusaurus/Link"; -import ReleaseHistoryAirdrops from "@site/docs/snippets/ReleaseHistoryAirdrops.mdx"; -import ReleaseHistoryFlow from "@site/docs/snippets/ReleaseHistoryFlow.mdx"; -import ReleaseHistoryLegacy from "@site/docs/snippets/ReleaseHistoryLegacy.mdx"; -import ReleaseHistoryLockup from "@site/docs/snippets/ReleaseHistoryLockup.mdx"; +import ReleaseHistoryAirdrops from "@site/src/snippets/ReleaseHistoryAirdrops.mdx"; +import ReleaseHistoryFlow from "@site/src/snippets/ReleaseHistoryFlow.mdx"; +import ReleaseHistoryLegacy from "@site/src/snippets/ReleaseHistoryLegacy.mdx"; +import ReleaseHistoryLockup from "@site/src/snippets/ReleaseHistoryLockup.mdx"; Sablier is a powerful onchain token distribution protocol. Here are some key definitions: diff --git a/docs/concepts/05-merkle-airdrops.mdx b/docs/concepts/05-merkle-airdrops.mdx index 4f3d1547..f0e11a91 100644 --- a/docs/concepts/05-merkle-airdrops.mdx +++ b/docs/concepts/05-merkle-airdrops.mdx @@ -1,7 +1,7 @@ --- -id: "merkle-airdrops" +id: "airdrops" sidebar_position: 5 -title: "Merkle Airdrops" +title: "Airdrops" --- import Link from "@docusaurus/Link"; @@ -23,41 +23,41 @@ claimed by the recipients. Eligible users receive airdrop tokens directly into their wallets at the claim time. -## Airstreams +## Vested Airdrops -Airstreams are vested airdrops in which instead of airdropping the entirety of the token allocation all at once, airdrop +Vested airdrops are campaigns in which instead of airdropping the entirety of the token allocation all at once, airdrop recipients receive a fraction of the tokens every second through a Sablier stream. -The gist of Airstreams is that instead of airdropping the entirety of the tokens all at once, airdrop recipients receive +The gist of vested airdrops is that instead of airdropping the entirety of the tokens all at once, airdrop recipients receive a fraction of the tokens every second through a token stream. The beauty of it is that airdrop recipients are forced to think long-term and keep the project's future as their first and foremost priority. They are forced to, because instead of receiving all the tokens at once, they receive them over -time in our user-friendly [Airstreams interface](https://app.sablier.com/airdrops). +time in our user-friendly [vested airdrop interface](https://app.sablier.com/airdrops). :::info An airdrop campaign can have a claim window of a few days, months, or even years. Alternatively, they can have no -expiration. In case of Airstreams, you could, for example, configure the airdrop of your new token to vest over years, +expiration. In case of vested airdrops, you could, for example, configure the airdrop of your new token to vest over years, but the recipients get the streamed tokens only if a claim is made within that period of time. ::: -Airstreams not only create the right incentives for token holders, but also prevent them from dumping their tokens on +Vested airdrops not only create the right incentives for token holders, but also prevent them from dumping their tokens on day one, as has been the case for many airdrops in the past. -There are two types of Airstream campaigns that you can create using Merkle Airdrop. +There are two types of vested airdrop campaigns that you can create using Merkle Airdrop. -### Ranged Airstreams +### Ranged This either uses Lockup Linear model or Lockup Tranched model depending on whether you use `MerkleLL` or `MerkleLT` to -create the campaign. In Ranged Airstream campaigns, the vesting begins for all the recipients at the same time. This +create the campaign. In ranged vested airdrop campaigns, the vesting begins for all the recipients at the same time. This time had to be provided while creating the campaign. -### Non-Ranged Airstreams +### Non-Ranged -In Non-Ranged Airstream campaigns, the vesting begins at the time of claiming. In this case, all recipients can have -different start time for Vesting depending on when they claim. +In non-ranged vested airdrop campaigns, the vesting begins at the time of claiming. In this case, all recipients can have +different start time for vesting depending on when they claim. ## White Label Solution @@ -74,7 +74,7 @@ a few clicks using our interface. Recipients and their airdropped allocations ca spreadsheet in the [user interface](https://app.sablier.com/airdrops). The spreadsheet feature is the perfect fit for merkle airdrop campaigns: it allows you to upload a CSV file with tens of -thousands of recipients and the interface will let each of these recipients claim with ease. You can download a tempalte +thousands of recipients and the interface will let each of these recipients claim with ease. You can download a template of the CSV file [here](https://files.sablier.com/templates/airstream-template.csv). Another great advantage is that creating an airdrop campaign with thousands of recipients won't ruin you in terms of gas @@ -84,17 +84,17 @@ verifies the integrity of large sets of data. :::info -The contracts that implements Airstream Campaigns are called +The contracts that implement vested airdrop campaigns are called [`MerkleLL`](/reference/airdrops/contracts/contract.SablierMerkleLL) and -[`MerkleLT`](/reference/airdrops/contracts/contract.SablierMerkleLT). If you are interested into Instant Airdrop -Campaign, the contract code can be found [here](/reference/airdrops/contracts/contract.SablierMerkleInstant). +[`MerkleLT`](/reference/airdrops/contracts/contract.SablierMerkleLT). If you are interested in instant airdrop +campaigns, the contract code can be found [here](/reference/airdrops/contracts/contract.SablierMerkleInstant). ::: -When you create an Airdrop campaign, all you are doing is deploying a contract that allows for the recipients you put in +When you create an airdrop campaign, all you are doing is deploying a contract that allows for the recipients you put in to prove that they are eligible, and create a stream if they are. That's all it is. -Additionally, you don't have to immediately fund the Campaign contract. You can just create the contract and at a later +Additionally, you don't have to immediately fund the campaign contract. You can just create the contract and at a later date fund it with the airdropped tokens. **This has three great implications:** @@ -104,7 +104,6 @@ date fund it with the airdropped tokens. gas fees. 2. **You keep full control over unclaimed Tokens**. If a recipient doesn't claim their airdrop, it's not created, and you remain in full control over their allocation. - - This applies only if the campaign has an expiration date. If there is no expiration date, you can only clawback during the grace period, and the recipients can claim their airdrop at any time in the future. diff --git a/docs/concepts/07-chains.mdx b/docs/concepts/07-chains.mdx index 10b53075..aea23d7c 100644 --- a/docs/concepts/07-chains.mdx +++ b/docs/concepts/07-chains.mdx @@ -5,64 +5,28 @@ sidebar_position: 7 --- import Link from "@docusaurus/Link"; +import Chains from "@site/src/components/organisms/Chains"; import { Links } from "@site/src/constants"; +import { keys } from "lodash"; +import { mainnets, testnets } from "sablier"; -Sablier Protocol is live on 25+ mainnets and 11+ testnets. However, not all of these chains may be supported by the -[Sablier Interface](https://app.sablier.com/). If you're interested in that, fill out this form. +<> -## Mainnets +The Sablier Protocol is deployed on {keys(mainnets).length} mainnets and {keys(testnets).length} testnet EVM chains, although not all of these are supported by the +[Sablier Interface](https://app.sablier.com/). -| Chain | Chain ID | Gas Token | Block Explorer | -| ---------------- | -------- | --------- | -------------------------------------------- | -| Ethereum Mainnet | 1 | ETH | [Explorer](https://etherscan.io) | -| Abstract | 2741 | ETH | [Explorer](https://abscan.org/) | -| Arbitrum | 42161 | ETH | [Explorer](https://arbiscan.io) | -| Avalanche | 43114 | AVAX | [Explorer](https://snowtrace.io) | -| Base | 8453 | ETH | [Explorer](https://basescan.org) | -| Berachain | 80094 | BERA | [Explorer](https://berascan.com/) | -| Blast | 81457 | ETH | [Explorer](https://blastscan.io) | -| BNB Smart Chain | 56 | BNB | [Explorer](https://bscscan.com) | -| Chiliz | 88888 | CHZ | [Explorer](https://chiliscan.com/) | -| Core DAO | 1116 | CORE | [Explorer](https://scan.coredao.org/) | -| Form | 478 | ETH | [Explorer](https://explorer.form.network/) | -| Gnosis | 100 | xDAI | [Explorer](https://gnosisscan.io) | -| IoTeX | 4689 | IOTX | [Explorer](https://iotexscan.io) | -| Lightlink | 1890 | ETH | [Explorer](https://phoenix.lightlink.io) | -| Linea | 59144 | ETH | [Explorer](https://lineascan.build) | -| Mode | 34443 | ETH | [Explorer](https://explorer.mode.network) | -| Morph | 2818 | ETH | [Explorer](https://explorer.morphl2.io) | -| Optimism | 10 | ETH | [Explorer](https://optimistic.etherscan.io/) | -| Polygon | 137 | POL | [Explorer](https://polygonscan.com) | -| Scroll | 534352 | ETH | [Explorer](https://scrollscan.com) | -| Sei | 1329 | SEI | [Explorer](https://seitrace.com/) | -| Sophon | 50104 | SOPH | [Explorer](https://sophscan.xyz/) | -| Superseed | 5330 | ETH | [Explorer](https://explorer.superseed.xyz/) | -| Taiko | 167000 | ETH | [Explorer](https://taikoscan.io/) | -| Tangle | 5845 | TNT | [Explorer](https://explorer.tangle.tools/) | -| Ultra | 19991 | UOS | [Explorer](https://evmexplorer.ultra.io/) | -| Unichain | 130 | ETH | [Explorer](https://uniscan.xyz) | -| XDC | 50 | XDC | [Explorer](https://xdcscan.com/) | -| zkSync Era | 324 | ETH | [Explorer](https://era.zksync.network/) | + -## Testnets +:::tip Want to list your chain? -| Chain | Chain ID | Gas Token | Block Explorer | -| ----------------- | --------- | --------- | --------------------------------------------------- | -| Ethereum Sepolia | 11155111 | ETH | [Explorer](https://sepolia.etherscan.io) | -| Arbitrum Sepolia | 421614 | ETH | [Explorer](https://sepolia.arbiscan.io) | -| Base Sepolia | 84532 | ETH | [Explorer](https://sepolia.basescan.org) | -| Blast Sepolia | 168587773 | ETH | [Explorer](https://sepolia.blastscan.io/) | -| Linea Sepolia | 59141 | ETH | [Explorer](https://sepolia.lineascan.build/) | -| Mode Sepolia | 919 | ETH | [Explorer](https://sepolia.explorer.mode.network/) | -| Monad Testnet | 10143 | MON | [Explorer](https://testnet.monadexplorer.com/) | -| Optimism Sepolia | 11155420 | ETH | [Explorer](https://sepolia-optimism.etherscan.io) | -| Superseed Sepolia | 53302 | ETH | [Explorer](https://sepolia-explorer.superseed.xyz/) | -| Taiko Hekla | 167009 | ETH | [Explorer](https://hekla.taikoexplorer.com/) | -| zkSync Sepolia | 300 | ETH | [Explorer](https://sepolia-era.zksync.network/) | +If you're interested in having Sablier deployed on your chain, fill out this form and our team will get back to you. -## Notes +::: + +## Mainnets + + + +## Testnets -- For more information about these EVM chains, such as RPC URLs, check out [Chainlist](https://chainlist.org). -- Do you want to get Sablier deployed on your chain? If you meet the [requirements](/guides/custom-deployments#requirements) - for custom deployment, fill out this form and our team will get back to you. -- Sablier does not support chains with native tokens that do not have 18 decimals. + diff --git a/docs/concepts/08-nft.mdx b/docs/concepts/08-nft.mdx index e5006d05..054c0d58 100644 --- a/docs/concepts/08-nft.mdx +++ b/docs/concepts/08-nft.mdx @@ -6,9 +6,9 @@ title: "NFTs" import Link from "@docusaurus/Link"; import { Links } from "@site/src/constants"; -import FlowNFTSVG from "@site/static/img/flow-nft.svg"; -import LockupNFTGalleryURL from "@site/static/img/lockup-gallery.webp"; -import LockupNFTSVG from "@site/static/img/lockup-nft.svg"; +import FlowNFTSVG from "@site/static/img/nft/flow.svg"; +import LockupNFTGalleryURL from "@site/static/img/nft/gallery.webp"; +import LockupNFTSVG from "@site/static/img/nft/lockup.svg"; Both Lockup and Flow Protocols wrap every stream in an ERC-721 non-fungible token (NFT), making the stream recipient the owner of the NFT. The recipient can transfer the NFT to another address, and this also transfers the right to withdraw diff --git a/docs/guides/04-custom-deployments.mdx b/docs/guides/04-custom-deployments.mdx index 08dff0b4..303c0af8 100644 --- a/docs/guides/04-custom-deployments.mdx +++ b/docs/guides/04-custom-deployments.mdx @@ -287,6 +287,6 @@ After the contracts are deployed, you can submit your deployment like so: When listing a new chain, you need to update the following sections of this documentation site: - Contract Deployments, e.g. for [Lockup](/guides/lockup/deployments) -- API Endpoints, e.g. for [Lockup](/api/lockup/endpoints) +- Indexers, e.g. for [Lockup](/api/lockup/indexers) - [Governance](/concepts/governance) - [Fees](/concepts/fees) diff --git a/docs/guides/airdrops/01-overview.md b/docs/guides/airdrops/01-overview.md index 37ed0b6e..6b70d0f1 100644 --- a/docs/guides/airdrops/01-overview.md +++ b/docs/guides/airdrops/01-overview.md @@ -13,8 +13,7 @@ insight into the operational nuances of the contracts, providing a valuable reso # Guides -If you are new to Merkle Airdrops, we recommend you start with the [Airstreams](/concepts/merkle-airdrops) section -first. +If you are new to Merkle Airdrops, we recommend you start with the [Airstreams](/concepts/airdrops) section first. If you want to setup your local environment, head over to [the guide](/guides/airdrops/examples/local-environment). diff --git a/docs/guides/airdrops/02-airdrops-deployments.mdx b/docs/guides/airdrops/02-airdrops-deployments.mdx deleted file mode 100644 index 3ca4d1fe..00000000 --- a/docs/guides/airdrops/02-airdrops-deployments.mdx +++ /dev/null @@ -1,260 +0,0 @@ ---- -id: "deployments" -sidebar_position: 2 -title: "Deployment Addresses" ---- - -# Merkle Airdrops Deployments - -This section contains the deployment addresses for the v1.3 release of -[@sablier/airdrops](https://npmjs.com/package/@sablier/airdrops). - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -## Previous Versions - -This repository is the successor of [Lockup Periphery](https://github.com/sablier-labs/v2-periphery), which has been -discontinued. For previous deployments, please refer to the -[Lockup deployments](/guides/lockup/previous-deployments/v1.2) page. - -## Mainnets - -### Ethereum Mainnet - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x71DD3Ca88E7564416E5C2E350090C12Bf8F6144a](https://etherscan.io/address/0x71DD3Ca88E7564416E5C2E350090C12Bf8F6144a) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Abstract - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------ | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x0C72b957347B51285854f015e4D20641655B939A](https://abscan.org/address/0x0C72b957347B51285854f015e4D20641655B939A) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Arbitrum One - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x7efd170e3e32Dc1b4c17eb4cFFf92c81FF43a6cb](https://arbiscan.io/address/0x7efd170e3e32Dc1b4c17eb4cFFf92c81FF43a6cb) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Avalanche - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x6bCD2260825CFed440Bb765f7A92f6CDBDc90f43](https://snowtrace.io/address/0x6bCD2260825CFed440Bb765f7A92f6CDBDc90f43) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Base - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xD9e108f26fe104CE1058D48070438deDB3aD826A](https://basescan.org/address/0xD9e108f26fe104CE1058D48070438deDB3aD826A) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Berachain - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x7868Af143cc5e6Cd03f9B4f5cdD2832695A85d6B](https://berascan.com/address/0x7868Af143cc5e6Cd03f9B4f5cdD2832695A85d6B) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Blast - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xDd40b4F5B216F524a55E2e8F75637E8b453E4bd2](https://blastscan.io/address/0xDd40b4F5B216F524a55E2e8F75637E8b453E4bd2) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### BNB Smart Chain - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xF9f89d99fb702b06FBa16A294B7614089defE068](https://bscscan.com/address/0xF9f89d99fb702b06FBa16A294B7614089defE068) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Chiliz - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xf978034bb3CAB5fe88d23DB5Cb38D510485DaB90](https://chiliscan.com/address/0xf978034bb3CAB5fe88d23DB5Cb38D510485DaB90) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Form - -| Contract | Address | Deployment | -| :------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xA9264Ef7cB1516cc27FCD5149A2909Ace885Ffb6](https://explorer.form.network/address/0xA9264Ef7cB1516cc27FCD5149A2909Ace885Ffb6) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### IoTex - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xf08548b1a6DB590FEC6f1B95e6B41d17791767C2](https://IoTeXscan.io/address/0xf08548b1a6DB590FEC6f1B95e6B41d17791767C2) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Gnosis - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x64ba580946985B4b87f4D9f7b6598C2156026775](https://gnosisscan.io/address/0x64ba580946985B4b87f4D9f7b6598C2156026775) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### LightLink - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xC0107f368FBB50075d2190549055d9E6bf75c5c9](https://phoenix.lightlink.io/address/0xC0107f368FBB50075d2190549055d9E6bf75c5c9) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Linea - -| Contract | Address | Deployment | -| :------------------- | :----------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xAa122611E0e3a0771127aA4cd4995A896BB2c20B](https://lineascan.build/address/0xAa122611E0e3a0771127aA4cd4995A896BB2c20B) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Mode - -| Contract | Address | Deployment | -| :------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xc472391DB89e7BE07170f18c4fdb010242507F2C](https://explorer.mode.network/address/0xc472391DB89e7BE07170f18c4fdb010242507F2C) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Morph - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xBE64e8718D82C598EBCDA5149D10eB68b79632a4](https://explorer.morphl2.io/address/0xBE64e8718D82C598EBCDA5149D10eB68b79632a4) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Optimism - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x2455bff7a71E6e441b2d0B1b1e480fe36EbF6D1E](https://optimistic.etherscan.io/address/0x2455bff7a71E6e441b2d0B1b1e480fe36EbF6D1E) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Polygon - -| Contract | Address | Deployment | -| :------------------- | :----------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xf0d61b42311C810dfdE191D58427d81E87c5d5F6](https://polygonscan.com/address/0xf0d61b42311C810dfdE191D58427d81E87c5d5F6) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Scroll - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x6dF0bfFDb106b19d1e954853f4d14003E21B7854](https://scrollscan.com/address/0x6dF0bfFDb106b19d1e954853f4d14003E21B7854) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Sei Network - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x0171A06878F7ff81c9955DEB5641f64f520d45E5](https://seitrace.com/address/0x0171A06878F7ff81c9955DEB5641f64f520d45E5) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Sophon - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x9D4923e2ff0b9DAdc447A89f528760928f84D0F7](https://sophscan.xyz/address/0x9D4923e2ff0b9DAdc447A89f528760928f84D0F7) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Superseed - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------------------ | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x3df48bb93509D9a041C81F6670C37B1eEb3E154B](https://explorer.superseed.xyz/address/0x3df48bb93509D9a041C81F6670C37B1eEb3E154B) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Taiko Mainnet - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x39D4D8C60D3596B75bc09863605BBB4dcE8243F1](https://taikoscan.io/address/0x39D4D8C60D3596B75bc09863605BBB4dcE8243F1) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Tangle - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xd641a0E4509Cced67cC24E7BDcDe2a31b7F7cF77](http://explorer.tangle.tools/address/0xd641a0E4509Cced67cC24E7BDcDe2a31b7F7cF77) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Ultra - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x5e73bb96493C10919204045fCdb639D35ad859f8](https://evmexplorer.ultra.io/address/0x5e73bb96493C10919204045fCdb639D35ad859f8) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Unichain - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xC6fC028E988D158C52Aa2e38CDd6f969AA14bdCd](https://uniscan.xyz/address/0xC6fC028E988D158C52Aa2e38CDd6f969AA14bdCd) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### XDC - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xe41909f5623c3b78219D9a2Bb92bE95AEe5bbC30](https://xdcscan.com/address/0xe41909f5623c3b78219D9a2Bb92bE95AEe5bbC30) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### zkSync Era - -| Contract | Address | Deployment | -| :------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x8E7E78799F8cC87d4816112A758281dabc158452](https://era.zksync.network/address/0x8E7E78799F8cC87d4816112A758281dabc158452) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -## Testnets - -### Ethereum Sepolia - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xf642751d1271c88bBb8786067de808B32a016Fd4](https://sepolia.etherscan.io/address/0xf642751d1271c88bBb8786067de808B32a016Fd4) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Arbitrum Sepolia - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x465E9218C1A8d36169e0c40C01b856A83CE44153](https://sepolia.arbiscan.io/address/0x465E9218C1A8d36169e0c40C01b856A83CE44153) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Base Sepolia - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x6a3466398A66c7Ce801989B45C390cdC8717102D](https://sepolia.basescan.org/address/0x6a3466398A66c7Ce801989B45C390cdC8717102D) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Blast Sepolia - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x471DD609f1595b0F13737c57D29399Ff84Dd4778](https://sepolia.blastscan.io/address/0x471DD609f1595b0F13737c57D29399Ff84Dd4778) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Linea Sepolia - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x5ADE5DF4FB42e353223DFF677cbfec812c6C4Da7](https://sepolia.lineascan.build/address/0x5ADE5DF4FB42e353223DFF677cbfec812c6C4Da7) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Mode Sepolia - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x659836D788cce324Ad8c445584b9c44c6a8c74b7](https://sepolia.explorer.mode.network/address/0x659836D788cce324Ad8c445584b9c44c6a8c74b7) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Monad Testnet - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x99846E1379fEBC91FCeC641097f8191b51ef0d34](https://testnet.monadexplorer.com/address/0x99846E1379fEBC91FCeC641097f8191b51ef0d34) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Optimism Sepolia - -| Contract | Address | Deployment | -| :------------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x2934A7aDDC3000D1625eD1E8D21C070a89073702](https://sepolia.optimistic.etherscan.io/address/0x2934A7aDDC3000D1625eD1E8D21C070a89073702) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Superseed Sepolia - -| Contract | Address | Deployment | -| :------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xb5951501D416cb7326e5b9bEB6EF8840a8DF6910](https://sepolia.superseed.xyz/address/0xb5951501D416cb7326e5b9bEB6EF8840a8DF6910) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### Taiko Hekla - -| Contract | Address | Deployment | -| :------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0xB5F4FB527568f88F8898Ce5F366f4d72e2C742BE](https://hekla.taikoexplorer.com/address/0xB5F4FB527568f88F8898Ce5F366f4d72e2C742BE) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | - -### zkSync Sepolia - -| Contract | Address | Deployment | -| :------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierMerkleFactory | [0x6d71180edee488Ea25004Cb9df3867191248c51f](https://sepolia-era.zksync.network/address/0x6d71180edee488Ea25004Cb9df3867191248c51f) | [airdrops-v1.3.0](https://github.com/sablier-labs/deployments/blob/main/airdrops/v1.3.0) | diff --git a/docs/guides/airdrops/02-deployments.mdx b/docs/guides/airdrops/02-deployments.mdx new file mode 100644 index 00000000..80d618c5 --- /dev/null +++ b/docs/guides/airdrops/02-deployments.mdx @@ -0,0 +1,26 @@ +--- +id: "deployments" +sidebar_position: 2 +title: "Deployment Addresses" +--- + +import DeploymentsV1_3 from "@site/src/autogen/airdrops/TableDeploymentsV1.3.mdx"; + +# Merkle Airdrops Deployments + +This section contains the deployment addresses for the v1.3 release of +[@sablier/airdrops](https://npmjs.com/package/@sablier/airdrops). + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +## Versions + +This repository is the successor of [Lockup Periphery](https://github.com/sablier-labs/v2-periphery), which has been +discontinued. For previous deployments, please refer to the +[Lockup deployments](/guides/lockup/previous-deployments/v1.2) page. + + diff --git a/docs/guides/airdrops/04-campaign-verification.md b/docs/guides/airdrops/04-campaign-verification.md index cb3f21d1..7d5a479c 100644 --- a/docs/guides/airdrops/04-campaign-verification.md +++ b/docs/guides/airdrops/04-campaign-verification.md @@ -39,11 +39,11 @@ In this case, the function name is `createMerkleLL`. Then, locate and note down Click on the "View Input As" button, then change the view to "Original", and copy the input data. -Campaign Verification 03_1 +Campaign Verification 03-step-1 Copy the address of the campaign creator from the "From" field. -Campaign Verification 03_2 +Campaign Verification 03-step-2 ## Step 4: Get the constructor argument diff --git a/docs/guides/airdrops/examples/01-local-environment.mdx b/docs/guides/airdrops/examples/01-local-environment.mdx index 172f22c7..f00cb626 100644 --- a/docs/guides/airdrops/examples/01-local-environment.mdx +++ b/docs/guides/airdrops/examples/01-local-environment.mdx @@ -10,7 +10,7 @@ import { SetupWithFoundry, InstallNpm, FinalSteps, -} from "@site/docs/snippets/LocalEnvironment.mdx"; +} from "@site/src/snippets/LocalEnvironment.mdx"; diff --git a/docs/guides/airdrops/examples/02-create-campaign.mdx b/docs/guides/airdrops/examples/02-create-campaign.mdx index 96d81240..ec9b49eb 100644 --- a/docs/guides/airdrops/examples/02-create-campaign.mdx +++ b/docs/guides/airdrops/examples/02-create-campaign.mdx @@ -4,17 +4,17 @@ sidebar_position: 2 title: "Create Campaigns" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Create Airdrop Campaigns In this guide, we will show you how you can use Solidity to create a campaign via the [Merkle Factory](/reference/airdrops/contracts/contract.SablierMerkleFactory). -This guide assumes that you have already gone through the [Protocol Concepts](/concepts/merkle-airdrops) section. +This guide assumes that you have already gone through the [Protocol Concepts](/concepts/airdrops) section. - + ## Set up a contract @@ -49,9 +49,9 @@ contract MerkleCreator { } ``` - + -And, Factory address can be obtained from the [Merkle Airdrops Deployments](/guides/airdrops/deployments) page. +Factory address can be obtained from the [Merkle Airdrops Deployments](/guides/airdrops/deployments) page. ## Create function @@ -168,11 +168,11 @@ Now that we have the `baseParams` ready, it's time to setup rest of the input pa ### Aggregate Amount -This is the total amount of tokens you want to airdrop to your users, denoted in units of the asset's decimals. Let say -you want to airdrop 100M tokens of DAI. Then, the aggregate amount would be $100M*10^{18}$. +This is the total amount of tokens you want to airdrop to your users, denoted in units of the asset's decimals. Let's say +you want to airdrop 100M tokens of DAI. Then, the aggregate amount would be $100m\times 10^{18}$. ```solidity -uint256 aggregateAmount = 100000000e18; +uint256 aggregateAmount = 100_000_000e18; ``` ### Recipient Count @@ -180,7 +180,7 @@ uint256 aggregateAmount = 100000000e18; The total number of recipient addresses. ```solidity -uint256 recipientCount = 10000; +uint256 recipientCount = 10_000; ``` ### Schedule diff --git a/docs/guides/flow/02-deployments.mdx b/docs/guides/flow/02-deployments.mdx new file mode 100644 index 00000000..f5f446c0 --- /dev/null +++ b/docs/guides/flow/02-deployments.mdx @@ -0,0 +1,36 @@ +--- +id: "deployments" +sidebar_position: 2 +title: "Deployment Addresses" +--- + +import DeploymentsV1_1 from "@site/src/autogen/flow/TableDeploymentsV1.1.mdx"; +import ReleaseHistoryFlow from "@site/src/snippets/ReleaseHistoryFlow.mdx"; + +# Flow Deployments + +This section contains the deployment addresses for the v1.1 release of +[@sablier/flow](https://npmjs.com/package/@sablier/flow). + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +## Versions + +Any updates or additional features will require a new deployment of the protocol, due to its immutable nature. + +Came here looking for the previous deployments? Click below to see other versions. + + + +:::info + +Stay up to date with any new releases by [subscribing](https://x.com/Sablier/status/1821220784661995627) to the official +Sablier repositories on Github. + +::: + + diff --git a/docs/guides/flow/02-flow-deployments.mdx b/docs/guides/flow/02-flow-deployments.mdx deleted file mode 100644 index 4d1b2934..00000000 --- a/docs/guides/flow/02-flow-deployments.mdx +++ /dev/null @@ -1,318 +0,0 @@ ---- -id: "deployments" -sidebar_position: 2 -title: "Deployment Addresses" ---- - -import ReleaseHistoryFlow from "@site/docs/snippets/ReleaseHistoryFlow.mdx"; - -# Flow Deployments - -This section contains the deployment addresses for the v1.1 release of -[@sablier/flow](https://npmjs.com/package/@sablier/flow). - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -## Versions - -Any updates or additional features will require a new deployment of the protocol, due to its immutable nature. - -Came here looking for the previous deployments? Click below to see other versions as well as the in-app aliases assigned -under our [naming convention](/api/flow/the-graph/structure#identifying). - - - -:::info - -Stay up to date with any new releases by [subscribing](https://x.com/Sablier/status/1821220784661995627) to the official -Sablier repositories on Github. - -::: - -## Mainnets - -### Ethereum Mainnet - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x3DF2AAEdE81D2F6b261F79047517713B8E844E04](https://etherscan.io/address/0x3DF2AAEdE81D2F6b261F79047517713B8E844E04) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x24bE13897eE1F83367661B6bA616a72523fC55C9](https://etherscan.io/address/0x24bE13897eE1F83367661B6bA616a72523fC55C9) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Abstract - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------- | -| SablierFlow | [0x555B0766f494c641bb522086da4E728AC08c1420](https://abscan.org/address/0x555B0766f494c641bb522086da4E728AC08c1420) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x6CefdBc5Ba80937235F012c83d6aA83F1200d6cC](https://abscan.org/address/0x6CefdBc5Ba80937235F012c83d6aA83F1200d6cC) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Arbitrum One - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x87CF87ec5de33DeB4a88787065373563Ba85Ee72](https://arbiscan.io/address/0x87CF87ec5de33DeB4a88787065373563Ba85Ee72) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x5F23eF12A7e861CB92c24B4314Af2A5F363CDD4F](https://arbiscan.io/address/0x5F23eF12A7e861CB92c24B4314Af2A5F363CDD4F) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Avalanche - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xac7CB985d4022A5Ebd4a385374ac3d3B487b3C63](https://snowtrace.io/address/0xac7CB985d4022A5Ebd4a385374ac3d3B487b3C63) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xb09b714B0feC83675E09fc997B7D532cF6620326](https://snowtrace.io/address/0xb09b714B0feC83675E09fc997B7D532cF6620326) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Base - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x6FE93c7f6cd1DC394e71591E3c42715Be7180A6A](https://basescan.org/address/0x6FE93c7f6cd1DC394e71591E3c42715Be7180A6A) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x5b5e742305Be3A484EacCB124C83456463c24E6a](https://basescan.org/address/0x5b5e742305Be3A484EacCB124C83456463c24E6a) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Berachain - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xA031544946ED769377128fBD961c9d621c4b4179](https://berascan.com/address/0xA031544946ED769377128fBD961c9d621c4b4179) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x581250eE4311F7Dc1afCF965cF8024004B423e9E](https://berascan.com/address/0x581250eE4311F7Dc1afCF965cF8024004B423e9E) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Blast - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x16b50eb5eAeF0366f1A4da594e2A8c8943A297e0](https://blastscan.io/address/0x16b50eb5eAeF0366f1A4da594e2A8c8943A297e0) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x92f1dB592C771D9Ec7708abFEe79771AbC1b4fAd](https://blastscan.io/address/0x92f1dB592C771D9Ec7708abFEe79771AbC1b4fAd) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### BNB Smart Chain - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x4C4610aF3f3861EC99b6F6F8066C03E4C3a0E023](https://bscscan.com/address/0x4C4610aF3f3861EC99b6F6F8066C03E4C3a0E023) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xAE557c04B46d47Ecac24edA63F22cabB4571Da61](https://bscscan.com/address/0xAE557c04B46d47Ecac24edA63F22cabB4571Da61) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Chiliz - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x28eAB88ee8a951F78e1028557D0C3fD97af61A33](https://chiliscan.com/address/0x28eAB88ee8a951F78e1028557D0C3fD97af61A33) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xC7fd18CA19938d559dC45aDE362a850015CF0bd8](https://chiliscan.com/address/0xC7fd18CA19938d559dC45aDE362a850015CF0bd8) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Core Dao - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------- | -| SablierFlow | [0xa0aE7F1bE0DB024Beda05c80722413EDDe7231Bd](https://scan.coredao.org/address/0xa0aE7F1bE0DB024Beda05c80722413EDDe7231Bd) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x7293F2D4A4e676EF67C085E92277AdF560AECb88](https://scan.coredao.org/address/0x7293F2D4A4e676EF67C085E92277AdF560AECb88) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Form - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x5dd399bb320412dF92Df5c10484d3F8d481FE231](https://explorer.form.network/address/0x5dd399bb320412dF92Df5c10484d3F8d481FE231) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x88E64227D4DcF8De1141bb0807A9DC04a5Be9251](https://explorer.form.network/address/0x88E64227D4DcF8De1141bb0807A9DC04a5Be9251) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Gnosis - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x34Bc0C2BF1F2DA51c65cd821bA4133aFCacdb8f5](https://gnosisscan.io/address/0x34Bc0C2BF1F2DA51c65cd821bA4133aFCacdb8f5) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x5A47FC8732d399a2f3845c4FC91aB91bb97da31F](https://gnosisscan.io/address/0x5A47FC8732d399a2f3845c4FC91aB91bb97da31F) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### IoTex - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xCD8871a22640C57ba36984Fb57E9c794f5Df7F40](https://IoTeXscan.io/address/0xCD8871a22640C57ba36984Fb57E9c794f5Df7F40) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x91D7B990B1aCDfB2F38189c646371377416c641E](https://IoTeXscan.io/address/0x91D7B990B1aCDfB2F38189c646371377416c641E) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### LightLink - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x89d964E0b508234bCfDc7a32aE0aA0356f422B70](https://phoenix.lightlink.io/address/0x89d964E0b508234bCfDc7a32aE0aA0356f422B70) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xc58E948Cb0a010105467C92856bcd4842B759fb1](https://phoenix.lightlink.io/address/0xc58E948Cb0a010105467C92856bcd4842B759fb1) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Linea - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xEFc6e4C7DC5faA0CfBFEbB5e04eA7Cd47f64012f](https://lineascan.build/address/0xEFc6e4C7DC5faA0CfBFEbB5e04eA7Cd47f64012f) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x294D7fceBa43C4507771707CeBBB7b6d81d0BFdE](https://lineascan.build/address/0x294D7fceBa43C4507771707CeBBB7b6d81d0BFdE) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Mode - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xc968E8eEFe19BD6De8868df40D9740Be127a172a](https://explorer.mode.network/address/0xc968E8eEFe19BD6De8868df40D9740Be127a172a) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xD9E2822a33606741BeDbA31614E68A745e430102](https://explorer.mode.network/address/0xD9E2822a33606741BeDbA31614E68A745e430102) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Morph - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xf31c8E7D9a0Bd310a9d5Fb317ba67BB1f0101c6D](https://explorer.morphl2.io/address/0xf31c8E7D9a0Bd310a9d5Fb317ba67BB1f0101c6D) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x1dd4dcE2BB742908b4062E583d9c035973413A3F](https://explorer.morphl2.io/address/0x1dd4dcE2BB742908b4062E583d9c035973413A3F) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Optimism - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xC5612feA2D370127ac67048115bd6b1dF7b7F7C0](https://optimistic.etherscan.io/address/0xC5612feA2D370127ac67048115bd6b1dF7b7F7C0) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x7AD245b74bBC1B71Da1713D53238931F791b90A3](https://optimistic.etherscan.io/address/0x7AD245b74bBC1B71Da1713D53238931F791b90A3) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Polygon - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x3e5c4130Ea7cfbD364FA5f170289d697865cA94b](https://polygonscan.com/address/0x3e5c4130Ea7cfbD364FA5f170289d697865cA94b) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x87B836a9e26673feB3E409A0da2EAf99C79f26C3](https://polygonscan.com/address/0x87B836a9e26673feB3E409A0da2EAf99C79f26C3) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Scroll - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xC4F104cE12cb12484Ff67cF0C4Bd0561F0014ec2](https://scrollscan.com/address/0xC4F104cE12cb12484Ff67cF0C4Bd0561F0014ec2) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x797Fe78c41d9cbE81BBEA2f420101be5e47d2aFf](https://scrollscan.com/address/0x797Fe78c41d9cbE81BBEA2f420101be5e47d2aFf) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Sei Network - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xdEF70082ebda4944A55311624900E42A720b4Ec9](https://seitrace.com/address/0xdEF70082ebda4944A55311624900E42A720b4Ec9) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xF3D18b06c87735a58DAb3baC45af058b3772fD54](https://seitrace.com/address/0xF3D18b06c87735a58DAb3baC45af058b3772fD54) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Sophon - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x20C9A3E27322Fc2b21Ced430D1B2e12d90804db6](https://sophscan.xyz/address/0x20C9A3E27322Fc2b21Ced430D1B2e12d90804db6) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x2F1eB117A87217E8bE9AA96795F69c9e380686Db](https://sophscan.xyz/address/0x2F1eB117A87217E8bE9AA96795F69c9e380686Db) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Superseed - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------- | -| SablierFlow | [0x40E75bb2F2aA3507D3a332872829c71be19eF623](https://explorer.superseed.xyz/address/0x40E75bb2F2aA3507D3a332872829c71be19eF623) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xd932fDA016eE9d9F70f745544b4F56715b1E723b](https://explorer.superseed.xyz/address/0xd932fDA016eE9d9F70f745544b4F56715b1E723b) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Taiko Mainnet - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x9d4bc7f013cCddAE1658dc28F981C2D424d7F0Dd](https://taikoscan.io/address/0x9d4bc7f013cCddAE1658dc28F981C2D424d7F0Dd) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x80Bde7C505eFE9960b673567CB25Cd8af85552BE](https://taikoscan.io/address/0x80Bde7C505eFE9960b673567CB25Cd8af85552BE) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Tangle - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://explorer.tangle.tools/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xDf578C2c70A86945999c65961417057363530a1c](https://explorer.tangle.tools/address/0xDf578C2c70A86945999c65961417057363530a1c) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Ultra - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xAF210dD54870745Ed18F1081252aeEE4119eA6CA](https://evmexplorer.ultra.io/address/0xAF210dD54870745Ed18F1081252aeEE4119eA6CA) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x9f5d28C8ed7F09e65519C1f6f394e523524cA38F](https://evmexplorer.ultra.io/address/0x9f5d28C8ed7F09e65519C1f6f394e523524cA38F) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Unichain - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x9797B40340be0bFc9EC0dBb8712627Bcdd17E771](https://uniscan.xyz/address/0x9797B40340be0bFc9EC0dBb8712627Bcdd17E771) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x89824A7e48dcf6B7AE9DeE6E566f62A5aDF037F2](https://uniscan.xyz/address/0x89824A7e48dcf6B7AE9DeE6E566f62A5aDF037F2) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### XDC - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xD6482334242862951dA3E730F818c3f6E3f45A30](https://xdcscan.com/address/0xD6482334242862951dA3E730F818c3f6E3f45A30) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x9D3F0122b260D2218ecf681c416495882003deDd](https://xdcscan.com/address/0x9D3F0122b260D2218ecf681c416495882003deDd) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### zKSync Era - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xE3747379bF7282e0ab5389A63eA053a5256042df](https://era.zksync.network/address/0xE3747379bF7282e0ab5389A63eA053a5256042df) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x423C1b454250992Ede8516D36DE456F609714B53](https://era.zksync.network/address/0x423C1b454250992Ede8516D36DE456F609714B53) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -## Testnets - -### Ethereum Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x93FE8f86e881a23e5A2FEB4B160514Fd332576A6](https://sepolia.etherscan.io/address/0x93FE8f86e881a23e5A2FEB4B160514Fd332576A6) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xc9dBf2D207D178875b698e5f7493ce2d8BA88994](https://sepolia.etherscan.io/address/0xc9dBf2D207D178875b698e5f7493ce2d8BA88994) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Arbitrum Sepolia - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xF9cbfFAe10010475A2800a5eFC11f4D4780cA48d](https://sepolia.arbiscan.io/address/0xF9cbfFAe10010475A2800a5eFC11f4D4780cA48d) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x3E64A31C3974b6ae9f09a8fbc784519bF551e795](https://sepolia.arbiscan.io/address/0x3E64A31C3974b6ae9f09a8fbc784519bF551e795) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Base Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xFB6B72a5988A7701a9090C56936269241693a9CC](https://sepolia.basescan.org/address/0xFB6B72a5988A7701a9090C56936269241693a9CC) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xcb5591F6d0e0fFC03037ef7b006D1361C6D33D25](https://sepolia.basescan.org/address/0xcb5591F6d0e0fFC03037ef7b006D1361C6D33D25) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Blast Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x027b55FD4b26A78a0463304C63f35e97A35246FD](https://sepolia.blastscan.io/address/0x027b55FD4b26A78a0463304C63f35e97A35246FD) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x42Abaf2c1E36624FD0084998A9BeA4a753A93e45](https://sepolia.blastscan.io/address/0x42Abaf2c1E36624FD0084998A9BeA4a753A93e45) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Linea Sepolia - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x3D0804610dE1b8DC19B1DDf90C26d5a51ab2B6b6](https://sepolia.lineascan.build/address/0x3D0804610dE1b8DC19B1DDf90C26d5a51ab2B6b6) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xbd17DFd74078dB49f12101Ca929b5153E924e9C7](https://sepolia.lineascan.build/address/0xbd17DFd74078dB49f12101Ca929b5153E924e9C7) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Mode Sepolia - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x1063D400953441F1C6d8EF6406e1E6aa5684B82d](https://sepolia.explorer.mode.network/address/0x1063D400953441F1C6d8EF6406e1E6aa5684B82d) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xe1eDdA64eea2173a015A3738171C3a1C263324C7](https://sepolia.explorer.mode.network/address/0xe1eDdA64eea2173a015A3738171C3a1C263324C7) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Monad Testnet - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xF59b5D34205718Fc18dCA35d7C4Fb9d6F14F077d](https://testnet.monadexplorer.com/address/0xF59b5D34205718Fc18dCA35d7C4Fb9d6F14F077d) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x80004e0b60c4aE862c405793FE684d43AdfdB905](https://testnet.monadexplorer.com/address/0x80004e0b60c4aE862c405793FE684d43AdfdB905) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Optimism Sepolia - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x77873085a88189c8B82B3a01BcbC294108D02805](https://sepolia.optimistic.etherscan.io/address/0x77873085a88189c8B82B3a01BcbC294108D02805) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0x4739327acfb56E90177d44Cb0845e759276BCA88](https://sepolia.optimistic.etherscan.io/address/0x4739327acfb56E90177d44Cb0845e759276BCA88) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Superspeed Sepolia - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0x02a2708E9Ca1a61dE970c96015299F2C327F7A93](https://sepolia-explorer.superseed.xyz/address/0x02a2708E9Ca1a61dE970c96015299F2C327F7A93) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xC373b8b68542c533B90f4A85a81b7D5F31F4E3eF](https://sepolia-explorer.superseed.xyz/address/0xC373b8b68542c533B90f4A85a81b7D5F31F4E3eF) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### Taiko Hekla - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xb528AF43fFEe6d4B702CF6235d2380e1828eD852](https://hekla.taikoexplorer.com/address/0xb528AF43fFEe6d4B702CF6235d2380e1828eD852) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xB197D4142b9DBf34979588cf8BF1222Ea3907916](https://hekla.taikoexplorer.com/address/0xB197D4142b9DBf34979588cf8BF1222Ea3907916) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | - -### zKSync Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------- | -| SablierFlow | [0xf499b35e2e932a05ecD6115Aa4DcCeb29aF55E3D](https://sepolia-era.zksync.network/address/0xf499b35e2e932a05ecD6115Aa4DcCeb29aF55E3D) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | -| FlowNFTDescriptor | [0xb3eCE4451825f865479813d42f74a080D2CcC928](https://sepolia-era.zksync.network/address/0xb3eCE4451825f865479813d42f74a080D2CcC928) | [flow-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.1.0) | diff --git a/docs/guides/flow/04-gas-benchmarks.md b/docs/guides/flow/04-gas-benchmarks.md deleted file mode 100644 index 2b76d66a..00000000 --- a/docs/guides/flow/04-gas-benchmarks.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -label: "Gas benchmarks" -sidebar_position: 4 -title: "Gas Benchmarks" ---- - -The gas usage of the Flow protocol is not deterministic and varies by user. Calls to third-party contracts, such as -ERC-20 tokens, may use an arbitrary amount of gas. The values in the table below are rough estimations on Ethereum -mainnet - you shouldn't take them for granted. The gas usage may vary depending on the network. - -:::note - -Please refer to the [GitHub repository](https://github.com/sablier-labs/benchmarks) to view the code that generates -these benchmarks. - -::: - -The following gas benchmarks are generated using a 6-decimal token. - -| Function | Stream Liquidity | Gas Usage | -| --------------------- | ---------------- | --------- | -| `adjustRatePerSecond` | N/A | 44,171 | -| `create` | N/A | 113,681 | -| `deposit` | N/A | 32,975 | -| `depositViaBroker` | N/A | 22,732 | -| `pause` | N/A | 7,522 | -| `refund` | N/A | 11,939 | -| `restart` | N/A | 7,036 | -| `void` | Insolvent | 37,460 | -| `void` | Solvent | 10,060 | -| `withdraw` | Insolvent | 57,688 | -| `withdraw` | Solvent | 38,156 | -| `withdrawMax` | N/A | 51,988 | diff --git a/docs/guides/flow/04-gas-benchmarks.mdx b/docs/guides/flow/04-gas-benchmarks.mdx new file mode 100644 index 00000000..d4f042fa --- /dev/null +++ b/docs/guides/flow/04-gas-benchmarks.mdx @@ -0,0 +1,24 @@ +--- +id: "gas-benchmarks" +sidebar_position: 4 +title: "Gas Benchmarks" +--- + +import Link from "@docusaurus/Link"; +import RemoteGFMContent from "@site/src/components/atoms/RemoteGFMContent"; +import { Links } from "@site/src/constants"; +import { getBenchmarkURL } from "@site/src/helpers"; + +The gas usage of the Flow protocol is not deterministic and varies by user. Calls to third-party contracts, such as +ERC-20 tokens, may use an arbitrary amount of gas. The values in the table below are rough estimations on Ethereum +mainnet - you shouldn't take them for granted. The gas usage may vary depending on the network. + +:::note + +The benchmarks were generated using the code in this GitHub repository. + +::: + +## SablierFlow + + diff --git a/docs/guides/flow/examples/01-local-environment.mdx b/docs/guides/flow/examples/01-local-environment.mdx index 4bbdfb6b..86f0c0b7 100644 --- a/docs/guides/flow/examples/01-local-environment.mdx +++ b/docs/guides/flow/examples/01-local-environment.mdx @@ -15,7 +15,7 @@ import { RunForkTest1, RunForkTest2, FinalSteps, -} from "@site/docs/snippets/LocalEnvironment.mdx"; +} from "@site/src/snippets/LocalEnvironment.mdx"; diff --git a/docs/guides/flow/examples/02-calculate-rps.mdx b/docs/guides/flow/examples/02-calculate-rps.mdx index ca6221b8..8b3b5e54 100644 --- a/docs/guides/flow/examples/02-calculate-rps.mdx +++ b/docs/guides/flow/examples/02-calculate-rps.mdx @@ -4,7 +4,7 @@ sidebar_position: 2 title: "Calculate Rate per Second" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; This guide explains how to calculate the rate per second when creating a Flow stream. It is the most important step in setting up a stream since the rate per second is a key parameter in the stream's configuration. @@ -12,7 +12,7 @@ setting up a stream since the rate per second is a key parameter in the stream's We assume that you have already gone through the [Protocol Concepts](/concepts/streaming) and the [Flow Overview](/concepts/flow/overview) sections. - + The rate per second is the amount of tokens streamed in one second. It is represented as a fixed-point number with 18 decimals, specifically as a `UD21x18` type from the `PRBMath` library. The underlying native Solidity type associated diff --git a/docs/guides/flow/examples/03-create-stream.mdx b/docs/guides/flow/examples/03-create-stream.mdx index f1337089..dabc1a7d 100644 --- a/docs/guides/flow/examples/03-create-stream.mdx +++ b/docs/guides/flow/examples/03-create-stream.mdx @@ -4,8 +4,8 @@ sidebar_position: 3 title: "Create a Stream" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Create a Flow stream @@ -16,7 +16,7 @@ funds are deposited. This guide assumes that you have already gone through the [Calculate Rate per Second](./02-calculate-rps.mdx) section. - + ## Set up a contract @@ -46,7 +46,7 @@ contract FlowStreamCreator { } ``` - + We will declare two functions, based on the amount desired to stream over a period of time. diff --git a/docs/guides/flow/examples/04-stream-management.mdx b/docs/guides/flow/examples/04-stream-management.mdx index 34247bfa..30245282 100644 --- a/docs/guides/flow/examples/04-stream-management.mdx +++ b/docs/guides/flow/examples/04-stream-management.mdx @@ -4,8 +4,8 @@ sidebar_position: 4 title: "Stream Management" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Managing a Stream @@ -16,7 +16,7 @@ please note the following: 2. We also assume that the stream management contract is authorized to invoke each respective function. To learn more about access control in Flow, see the [Access Control](/reference/flow/access-control) guide. - + # Set up your contract @@ -43,7 +43,7 @@ contract FlowStreamManager { } ``` - + ## Deposit diff --git a/docs/guides/flow/examples/05-batchable.mdx b/docs/guides/flow/examples/05-batchable.mdx index 786f69e4..f21215a5 100644 --- a/docs/guides/flow/examples/05-batchable.mdx +++ b/docs/guides/flow/examples/05-batchable.mdx @@ -4,14 +4,14 @@ sidebar_position: 5 title: "Batching Functions" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; A neat feature of Sablier Flow is the ability to batch multiple function calls into a single transaction. This is made possible by the [`Batch`](/reference/flow/contracts/abstracts/abstract.Batch) contract, which is inherited by `SablierFlow`. With this, you can efficiently batch multiple function calls in a single transaction. - + ## Set up a contract @@ -40,7 +40,7 @@ contract FlowBatchable { } ``` - + ## Create multiple streams diff --git a/docs/guides/flow/previous-deployments/v1.0.md b/docs/guides/flow/previous-deployments/v1.0.md deleted file mode 100644 index d2256e2f..00000000 --- a/docs/guides/flow/previous-deployments/v1.0.md +++ /dev/null @@ -1,278 +0,0 @@ ---- -id: "v1.0" -sidebar_position: 3 -title: "v1.0" ---- - -# Flow v1.0 - -This section contains the deployment addresses for the v1.0 release of -[@sablier/flow@1.0.0](https://npmjs.com/package/@sablier/flow/v/1.0.0). - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -:::info - -This is an outdated version of the Flow protocol. See the latest version [here](/guides/flow/deployments). - -::: - -## Mainnets - -### Ethereum Mainnet - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x2d9221a63e12aa796619cb381ec4a71b201281f5](https://etherscan.io/address/0x2d9221a63e12aa796619cb381ec4a71b201281f5) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xb69b27073fa0366cddf432f5976c34c9baf7eae6](https://etherscan.io/address/0xb69b27073fa0366cddf432f5976c34c9baf7eae6) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Abstract - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------- | -| SablierFlow | [0x001F1408515Ccd5C1A19A682455ed4eFa39DadD6](https://abscan.org/address/0x001F1408515Ccd5C1A19A682455ed4eFa39DadD6) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x20C9A3E27322Fc2b21Ced430D1B2e12d90804db6](https://abscan.org/address/0x20C9A3E27322Fc2b21Ced430D1B2e12d90804db6) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Arbitrum One - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x18a12a7035aa56240bcd236bc019aa245dcc015a](https://arbiscan.io/address/0x18a12a7035aa56240bcd236bc019aa245dcc015a) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x900ebdb9ecfb19f9463d68d1fd6e5fa7ab9c6897](https://arbiscan.io/address/0x900ebdb9ecfb19f9463d68d1fd6e5fa7ab9c6897) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Avalanche - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x8c172e42c06302e3cfe555dc4d6b71a756ee186b](https://snowtrace.io/address/0x8c172e42c06302e3cfe555dc4d6b71a756ee186b) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x82ea83ab59b106c125168492cd468c322bd0d195](https://snowtrace.io/address/0x82ea83ab59b106c125168492cd468c322bd0d195) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Base - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x1a9adc0e2114c8407cc31669baafeee031d15dd2](https://basescan.org/address/0x1a9adc0e2114c8407cc31669baafeee031d15dd2) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x8e64f389a4697e004647162ec6ea0a7779d5d899](https://basescan.org/address/0x8e64f389a4697e004647162ec6ea0a7779d5d899) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Blast - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xfdac2799644141856e20e021ac06f231cafc731f](https://blastscan.io/address/0xfdac2799644141856e20e021ac06f231cafc731f) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xb40624ce2af67227529f713bac46e2b7064b7b92](https://blastscan.io/address/0xb40624ce2af67227529f713bac46e2b7064b7b92) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### BNB Smart Chain - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xfce01f79247cf450062545e7155d7bd568551d0e](https://bscscan.com/address/0xfce01f79247cf450062545e7155d7bd568551d0e) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xbc6fdd3f59900b9fcd445f8df159e2e794f098ec](https://bscscan.com/address/0xbc6fdd3f59900b9fcd445f8df159e2e794f098ec) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Chiliz - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x9EfC8663cAB0e2d97ad17C9fbfc8392445517E94](https://chiliscan.com/address/0x9EfC8663cAB0e2d97ad17C9fbfc8392445517E94) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x3D664B2Da905DDD0Db931982FD9a759ea950D6e1](https://chiliscan.com/address/0x3D664B2Da905DDD0Db931982FD9a759ea950D6e1) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Core Dao - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------- | -| SablierFlow | [0x447c6ea25540611541ff98fc677ca865f4e92450](https://scan.coredao.org/address/0x447c6ea25540611541ff98fc677ca865f4e92450) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xbfaa055ecfe503e1323dc9fc26b7d3aa3bf54364](https://scan.coredao.org/address/0xbfaa055ecfe503e1323dc9fc26b7d3aa3bf54364) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Gnosis - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x5515f774a4db42820802333ba575f68a6e85bd13](https://gnosisscan.io/address/0x5515f774a4db42820802333ba575f68a6e85bd13) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xc07c1128c19c2bf303b68ae061eff5293927630e](https://gnosisscan.io/address/0xc07c1128c19c2bf303b68ae061eff5293927630e) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### IoTex - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x1DdC1c21CD39c2Fa16366E6036c95342A31831Ba](https://iotexscan.io/address/0x1DdC1c21CD39c2Fa16366E6036c95342A31831Ba) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x83Dd52FCA44E069020b58155b761A590F12B59d3](https://iotexscan.io/address/0x83Dd52FCA44E069020b58155b761A590F12B59d3) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Lightlink - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x46fa0164c5af9382d330e5a245a2ca8a18398950](https://phoenix.lightlink.io/address/0x46fa0164c5af9382d330e5a245a2ca8a18398950) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xa2a48b83b6c96e1536336df9ead024d557a97a23](https://phoenix.lightlink.io/address/0xa2a48b83b6c96e1536336df9ead024d557a97a23) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Linea - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x949bFa08f1632432A2656a9dB17CA34d54Da8296](https://lineascan.build/address/0x949bFa08f1632432A2656a9dB17CA34d54Da8296) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xF430f0d2f798c42fDFAc35b5e32BD4f63Bf51130](https://lineascan.build/address/0xF430f0d2f798c42fDFAc35b5e32BD4f63Bf51130) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Meld - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x9efc8663cab0e2d97ad17c9fbfc8392445517e94](https://meldscan.io/address/0x9efc8663cab0e2d97ad17c9fbfc8392445517e94) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x3d664b2da905ddd0db931982fd9a759ea950d6e1](https://meldscan.io/address/0x3d664b2da905ddd0db931982fd9a759ea950d6e1) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Mode - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x75970dde488431fc4961494569def3269f20d6b3](https://explorer.mode.network/address/0x75970dde488431fc4961494569def3269f20d6b3) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x46fa0164c5af9382d330e5a245a2ca8a18398950](https://explorer.mode.network/address/0x46fa0164c5af9382d330e5a245a2ca8a18398950) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Morph - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xfe6972d0ae797fae343e5a58d0c7d8513937f092](https://explorer.morphl2.io/address/0xfe6972d0ae797fae343e5a58d0c7d8513937f092) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xab281bbc2bc34a1f202ddff17ffd1c00edf73f3a](https://explorer.morphl2.io/address/0xab281bbc2bc34a1f202ddff17ffd1c00edf73f3a) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Optimism - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x906356e4e6410ea0a97dbc5b071cf394ab0dcd69](https://optimistic.etherscan.io/address/0x906356e4e6410ea0a97dbc5b071cf394ab0dcd69) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xe674fb603d6f72b88bf297c1ba69f57b588a8f6d](https://optimistic.etherscan.io/address/0xe674fb603d6f72b88bf297c1ba69f57b588a8f6d) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Polygon - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xcf2d812d5aad4e6fec3b05850ff056b21159d496](https://polygonscan.com/address/0xcf2d812d5aad4e6fec3b05850ff056b21159d496) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x011277c87158e52cfbd8a1dd4a29118d602dda3a](https://polygonscan.com/address/0x011277c87158e52cfbd8a1dd4a29118d602dda3a) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Scroll - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x66826f53bffeaab71adc7fe1a77e86f8268848d8](https://scrollscan.com/address/0x66826f53bffeaab71adc7fe1a77e86f8268848d8) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x57fd892b3dc20eadb83cd8fb0240a87960046daa](https://scrollscan.com/address/0x57fd892b3dc20eadb83cd8fb0240a87960046daa) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Superseed - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------- | -| SablierFlow | [0x4f5f9b3fb57bba43aaf90e3f71d8f8f384e88e20](https://explorer.superseed.xyz/address/0x4f5f9b3fb57bba43aaf90e3f71d8f8f384e88e20) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xac2c36347869d8d779f7872c6202de3efd6ef2bb](https://explorer.superseed.xyz/address/0xac2c36347869d8d779f7872c6202de3efd6ef2bb) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Taiko Mainnet - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x3d303e4c61285f87da9f61aaadc8c89b7d55dfa2](https://taikoscan.io/address/0x3d303e4c61285f87da9f61aaadc8c89b7d55dfa2) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xe790b6178612eeba6faeec16a2e1354c872f8bde](https://taikoscan.io/address/0xe790b6178612eeba6faeec16a2e1354c872f8bde) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Tangle - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2](https://explorer.tangle.tools/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](http://explorer.tangle.tools/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### zkSync Era - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x015899a075B7C181e357Cd0ed000683DBB4F1FcE](https://era.zksync.network/address/0x015899a075B7C181e357Cd0ed000683DBB4F1FcE) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x01C40608f2822816cF25a0a911c1df330487ba62](https://era.zksync.network/address/0x01C40608f2822816cF25a0a911c1df330487ba62) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -## Testnets - -### Ethereum Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x5ae8c13f6ae094887322012425b34b0919097d8a](https://sepolia.etherscan.io/address/0x5ae8c13f6ae094887322012425b34b0919097d8a) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xbc4da2fbdfe5c5eaa11bd0e282201e2abf40b1ee](https://sepolia.etherscan.io/address/0xbc4da2fbdfe5c5eaa11bd0e282201e2abf40b1ee) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Arbitrum Sepolia - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x781b3b2527f2a0a1e6b429161f2717a8a28b9f46](https://sepolia.arbiscan.io/address/0x781b3b2527f2a0a1e6b429161f2717a8a28b9f46) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x9a08e6ae67c28002ee2c7cff9badecd33ae2151c](https://sepolia.arbiscan.io/address/0x9a08e6ae67c28002ee2c7cff9badecd33ae2151c) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Base Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xd5f78708d83ac2bc8734a8cdf2d112c1bb3b62a2](https://sepolia.basescan.org/address/0xd5f78708d83ac2bc8734a8cdf2d112c1bb3b62a2) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x168ad0b246f604bc70bef87ecde585c3f1d49617](https://sepolia.basescan.org/address/0x168ad0b246f604bc70bef87ecde585c3f1d49617) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Berachain Bartio - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xee4ee0b5c260e5cf559266d4a18a6f05ecd52d61](https://bartio.beratrail.io/address/0xee4ee0b5c260e5cf559266d4a18a6f05ecd52d61) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x6f41ffb18d451a4744ee713d0b5a68579877be5f](https://bartio.beratrail.io/address/0x6f41ffb18d451a4744ee713d0b5a68579877be5f) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Blast Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xa8c864c53e72301c2ab484d013627a5a7084174b](https://sepolia.blastscan.io/address/0xa8c864c53e72301c2ab484d013627a5a7084174b) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x567a95aa72a23b924f79dfa437d28c38740e144c](https://sepolia.blastscan.io/address/0x567a95aa72a23b924f79dfa437d28c38740e144c) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Linea Sepolia - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xb0255ed1ee5c01dfe865c1b21bbf56a80f9ae739](https://sepolia.lineascan.build/address/0xb0255ed1ee5c01dfe865c1b21bbf56a80f9ae739) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xcd8871a22640c57ba36984fb57e9c794f5df7f40](https://sepolia.lineascan.build/address/0xcd8871a22640c57ba36984fb57e9c794f5df7f40) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Mode Sepolia - -| Contract | Address | Deployment | -| :---------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xf5ac60870e1ccc4bfce23cfbb7a796a0d8dbaf47](https://sepolia.explorer.mode.network/address/0xf5ac60870e1ccc4bfce23cfbb7a796a0d8dbaf47) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x1cae76b71913598d7664d16641ccb6037d8ed61a](https://sepolia.explorer.mode.network/address/0x1cae76b71913598d7664d16641ccb6037d8ed61a) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Morph Holesky - -| Contract | Address | Deployment | -| :---------------- | :----------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x9efc8663cab0e2d97ad17c9fbfc8392445517e94](https://explorer-holesky.morphl2.io/address/0x9efc8663cab0e2d97ad17c9fbfc8392445517e94) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x3d664b2da905ddd0db931982fd9a759ea950d6e1](https://explorer-holesky.morphl2.io/address/0x3d664b2da905ddd0db931982fd9a759ea950d6e1) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Optimism Sepolia - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x417db0f2bd020fc4d6bccea6b2bb6be0c541862e](https://sepolia-optimistic.etherscan.io/address/0x417db0f2bd020fc4d6bccea6b2bb6be0c541862e) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x28401987a23ed9b8926b07f3b6855222a70c2128](https://sepolia-optimistic.etherscan.io/address/0x28401987a23ed9b8926b07f3b6855222a70c2128) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### SKALE Testnet - -| Contract | Address | Deployment | -| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0xC94473665f16AaB7015b0D61f7021AD552080c17](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0xC94473665f16AaB7015b0D61f7021AD552080c17) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xaE9E039409D208C5dFe933A3cbc7Afe0eB731ba0](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0xaE9E039409D208C5dFe933A3cbc7Afe0eB731ba0) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Superseed Sepolia - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x905756b52efeaf75f6b1bb1bb0fc35eea15ae260](https://sepolia-explorer.superseed.xyz/address/0x905756b52efeaf75f6b1bb1bb0fc35eea15ae260) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xc43fb9fe4477d8e8bf68b9fd3a0163a4cffcbb31](https://sepolia-explorer.superseed.xyz/address/0xc43fb9fe4477d8e8bf68b9fd3a0163a4cffcbb31) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### Taiko Hekla - -| Contract | Address | Deployment | -| :---------------- | :-------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x29b7bafce0a04638dc91ca0b87a562cab8c3dbde](https://hekla.taikoscan.io/address/0x29b7bafce0a04638dc91ca0b87a562cab8c3dbde) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0xd45f45dd34045a368854f7987a84d9485b4b45e9](https://hekla.taikoscan.io/address/0xd45f45dd34045a368854f7987a84d9485b4b45e9) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | - -### zkSync Sepolia - -| Contract | Address | Deployment | -| :---------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------- | -| SablierFlow | [0x8e70296f8972ebe94d885b1caf94da4836976140](https://sepolia-era.zksync.network/address/0x8e70296f8972ebe94d885b1caf94da4836976140) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | -| FlowNFTDescriptor | [0x900277DBB45a04eB79028b3A44c650Ac81Ca86c4](https://sepolia-era.zksync.network/address/0x900277DBB45a04eB79028b3A44c650Ac81Ca86c4) | [v1.0.0](https://github.com/sablier-labs/deployments/blob/main/flow/v1.0.0) | diff --git a/docs/guides/flow/previous-deployments/v1.0.mdx b/docs/guides/flow/previous-deployments/v1.0.mdx new file mode 100644 index 00000000..188c7f0a --- /dev/null +++ b/docs/guides/flow/previous-deployments/v1.0.mdx @@ -0,0 +1,26 @@ +--- +id: "v1.0" +sidebar_position: 3 +title: "v1.0" +--- + +import DeploymentsV1_0 from "@site/src/autogen/flow/TableDeploymentsV1.0.mdx"; + +# Flow v1.0 + +This section contains the deployment addresses for the v1.0 release of +[@sablier/flow@1.0.0](https://npmjs.com/package/@sablier/flow/v/1.0.0). + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +:::info + +This is an outdated version of the Flow protocol. See the latest version [here](/guides/flow/deployments). + +::: + + diff --git a/docs/guides/legacy/02-legacy-deployments.md b/docs/guides/legacy/02-deployments.md similarity index 100% rename from docs/guides/legacy/02-legacy-deployments.md rename to docs/guides/legacy/02-deployments.md diff --git a/docs/guides/lockup/02-deployments.mdx b/docs/guides/lockup/02-deployments.mdx new file mode 100644 index 00000000..9cabeb8c --- /dev/null +++ b/docs/guides/lockup/02-deployments.mdx @@ -0,0 +1,44 @@ +--- +id: "deployments" +sidebar_position: 2 +title: "Deployment Addresses" +--- + +import DeploymentsV2_0 from "@site/src/autogen/lockup/TableDeploymentsV2.0.mdx"; +import ReleaseHistoryLockup from "@site/src/snippets/ReleaseHistoryLockup.mdx"; + +# Lockup Deployments + +This section contains the deployment addresses for the v2.0 release of +[@sablier/lockup](https://npmjs.com/package/@sablier/lockup). + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +:::info[important] + +The Lockup Periphery repo has been discontinued in favor of the new [Airdrops repo](/guides/airdrops/overview). + +::: + +## Versions + +Any updates or additional features will require a new deployment of the protocol, due to its immutable nature. + +Came here looking for the previous Lockup deployments? Click below to see other versions. + + + +Or maybe you're looking for Legacy? [Click here](/guides/legacy/deployments). + +:::info + +Stay up to date with any new releases by [subscribing](https://x.com/Sablier/status/1821220784661995627) to the official +Sablier repositories on Github. + +::: + + diff --git a/docs/guides/lockup/02-lockup-deployments.mdx b/docs/guides/lockup/02-lockup-deployments.mdx deleted file mode 100644 index 2953540b..00000000 --- a/docs/guides/lockup/02-lockup-deployments.mdx +++ /dev/null @@ -1,446 +0,0 @@ ---- -id: "deployments" -sidebar_position: 2 -title: "Deployment Addresses" ---- - -import ReleaseHistoryLockup from "@site/docs/snippets/ReleaseHistoryLockup.mdx"; - -# Lockup Deployments - -This section contains the deployment addresses for the v2.0 release of -[@sablier/lockup](https://www.npmjs.com/package/@sablier/lockup). - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -:::info[important] - -Lockup Periphery repo has been discontinued in favor of the new [Merkle Airdrops repo](/guides/airdrops/overview). - -::: - -## Versions - -Any updates or additional features will require a new deployment of the protocol, due to its immutable nature. - -Came here looking for the previous Lockup deployments? Click below to see other versions as well as the in-app aliases -assigned under our [naming convention](/api/lockup/the-graph/structure#identifying). - - - -Or maybe you're looking for Legacy? [Click here](/guides/legacy/deployments). - -:::info - -Stay up to date with any new releases by [subscribing](https://x.com/Sablier/status/1821220784661995627) to the official -Sablier repositories on Github. - -::: - -## Mainnets - -### Ethereum Mainnet - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x7C01AA3783577E15fD7e272443D44B92d5b21056](https://etherscan.io/address/0x7C01AA3783577E15fD7e272443D44B92d5b21056) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x3F6E8a8Cffe377c4649aCeB01e6F20c60fAA356c](https://etherscan.io/address/0x3F6E8a8Cffe377c4649aCeB01e6F20c60fAA356c) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xA9dC6878C979B5cc1d98a1803F0664ad725A1f56](https://etherscan.io/address/0xA9dC6878C979B5cc1d98a1803F0664ad725A1f56) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://etherscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://etherscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Abstract - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x14Eb4AB47B2ec2a71763eaBa202a252E176FAE88](https://abscan.org/address/0x14Eb4AB47B2ec2a71763eaBa202a252E176FAE88) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x3409308357BB704f79f70d748da502F363Dc2f1D](https://abscan.org/address/0x3409308357BB704f79f70d748da502F363Dc2f1D) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x63Ff2E370788C163D5a1909B5FCb299DB327AEF9](https://abscan.org/address/0x63Ff2E370788C163D5a1909B5FCb299DB327AEF9) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x07c194dFE7DCe9Ae7Ffe4bF32683cf1F8CDD4aEa](https://abscan.org/address/0x07c194dFE7DCe9Ae7Ffe4bF32683cf1F8CDD4aEa) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xbB2e2884AE40003BB55fd3A85A9f8f7f72Aa441F](https://abscan.org/address/0xbB2e2884AE40003BB55fd3A85A9f8f7f72Aa441F) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Arbitrum One - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x467D5Bf8Cfa1a5f99328fBdCb9C751c78934b725](https://arbiscan.io/address/0x467D5Bf8Cfa1a5f99328fBdCb9C751c78934b725) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xB11Ead48F572155C5F8dB6201701e91A936896f7](https://arbiscan.io/address/0xB11Ead48F572155C5F8dB6201701e91A936896f7) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xd5c6a0Dd2E1822865c308850b8b3E2CcE762D061](https://arbiscan.io/address/0xd5c6a0Dd2E1822865c308850b8b3E2CcE762D061) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://arbiscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://arbiscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Avalanche - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x3C81BBBe72EF8eF3fb1D19B0bd6310Ad0dd27E82](https://snowtrace.io/address/0x3C81BBBe72EF8eF3fb1D19B0bd6310Ad0dd27E82) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xABDE228d84D86D78029C31A37Ae2435C8f923c8b](https://snowtrace.io/address/0xABDE228d84D86D78029C31A37Ae2435C8f923c8b) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x906A4BD5dD0EF13654eA29bFD6185d0d64A4b674](https://snowtrace.io/address/0x906A4BD5dD0EF13654eA29bFD6185d0d64A4b674) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://snowtrace.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://snowtrace.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Base - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xb5D78DD3276325f5FAF3106Cc4Acc56E28e0Fe3B](https://basescan.org/address/0xb5D78DD3276325f5FAF3106Cc4Acc56E28e0Fe3B) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xC26CdAFd6ec3c91AD9aEeB237Ee1f37205ED26a4](https://basescan.org/address/0xC26CdAFd6ec3c91AD9aEeB237Ee1f37205ED26a4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x87e437030b7439150605a641483de98672E26317](https://basescan.org/address/0x87e437030b7439150605a641483de98672E26317) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://basescan.org/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://basescan.org/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Berachain - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xC19A2542156b5d7960e0eF46E9787E7d336cF428](https://berascan.com/address/0xC19A2542156b5d7960e0eF46E9787E7d336cF428) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x75838C66Dfa2296bB9758f75fC7ad219718C8a88](https://berascan.com/address/0x75838C66Dfa2296bB9758f75fC7ad219718C8a88) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x3bbE0a21792564604B0fDc00019532Adeffa70eb](https://berascan.com/address/0x3bbE0a21792564604B0fDc00019532Adeffa70eb) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://berascan.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://berascan.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Blast - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xDbB6e9653d7e41766712Db22eB08ED3F21009fdd](https://blastscan.io/address/0xDbB6e9653d7e41766712Db22eB08ED3F21009fdd) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x193c2af965FEAca8D893c974712e5b6BD3cBc5ec](https://blastscan.io/address/0x193c2af965FEAca8D893c974712e5b6BD3cBc5ec) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x959c412d5919b1Ec5D07bee3443ea68c91d57dd7](https://blastscan.io/address/0x959c412d5919b1Ec5D07bee3443ea68c91d57dd7) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://blastscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://blastscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### BNB Smart Chain - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x6E0baD2c077d699841F1929b45bfb93FAfBEd395](https://bscscan.com/address/0x6E0baD2c077d699841F1929b45bfb93FAfBEd395) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xcf990fA3267F0945bBf7cf40A0c03F9dFE6a1804](https://bscscan.com/address/0xcf990fA3267F0945bBf7cf40A0c03F9dFE6a1804) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x56831a5a932793E02251126831174Ab8Bf2f7695](https://bscscan.com/address/0x56831a5a932793E02251126831174Ab8Bf2f7695) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://bscscan.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://bscscan.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Chiliz - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x711900e5f55d427cd88e5E3FCAe54Ccf02De71F4](https://chiliscan.com/address/0x711900e5f55d427cd88e5E3FCAe54Ccf02De71F4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x179536f3289fb50076968b339C7EF0Dc0B38E3AF](https://chiliscan.com/address/0x179536f3289fb50076968b339C7EF0Dc0B38E3AF) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x8A96f827082FB349B6e268baa0a7A5584c4Ccda6](https://chiliscan.com/address/0x8A96f827082FB349B6e268baa0a7A5584c4Ccda6) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://chiliscan.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://chiliscan.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Core Dao - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x4fff53bfe86a0bd59a81c89d8ba84c67cf947764](https://scan.coredao.org/address/0x4fff53bfe86a0bd59a81c89d8ba84c67cf947764) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x96dadeeab25413de04a1b8e40c4de41bd9d7fd29](https://scan.coredao.org/address/0x96dadeeab25413de04a1b8e40c4de41bd9d7fd29) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xac0cf0f2a96ed7ec3cfa4d0be621c67adc9dd903](https://scan.coredao.org/address/0xac0cf0f2a96ed7ec3cfa4d0be621c67adc9dd903) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://scan.coredao.org/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://scan.coredao.org/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Form - -| Contract | Address | Deployment | -| :------------------ | :----------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xa2dD5E785AA0225D681416884D395c7E22D92850](https://explorer.form.network/address/0xa2dD5E785AA0225D681416884D395c7E22D92850) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x74759072f464F6600E7563DcC2828A2dE8111840](https://explorer.form.network/address/0x74759072f464F6600E7563DcC2828A2dE8111840) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x6Ef33eeCE9D3B04B1A954C0c94F09808C81512c8](https://explorer.form.network/address/0x6Ef33eeCE9D3B04B1A954C0c94F09808C81512c8) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://explorer.form.network/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://explorer.form.network/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Gnosis - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x007aF5dC7b1CaA66Cf7Ebcc01E2e6ba4D55D3e92](https://gnosisscan.io/address/0x007aF5dC7b1CaA66Cf7Ebcc01E2e6ba4D55D3e92) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xe89EE0b2B31A296C5cCb631C3670F94bDD64a0D2](https://gnosisscan.io/address/0xe89EE0b2B31A296C5cCb631C3670F94bDD64a0D2) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x3140a6900AA2FF3186730741ad8255ee4e6d8Ff1](https://gnosisscan.io/address/0x3140a6900AA2FF3186730741ad8255ee4e6d8Ff1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://gnosisscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://gnosisscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### IoTex - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xcaF51434a0af3c43Cd5569bC5eCc5aa21d28086E](https://IoTeXscan.io/address/0xcaF51434a0af3c43Cd5569bC5eCc5aa21d28086E) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x5F448badebB50b9da6589C57B999725dc514B5D5](https://IoTeXscan.io/address/0x5F448badebB50b9da6589C57B999725dc514B5D5) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xf9920809bf97Fc038bdB8c5c2C2D100036d7cc8c](https://IoTeXscan.io/address/0xf9920809bf97Fc038bdB8c5c2C2D100036d7cc8c) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xAe60adf8D373523076F68941A6C48dF4C18C68ef](https://IoTeXscan.io/address/0xAe60adf8D373523076F68941A6C48dF4C18C68ef) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xe3247c554200C2dFf6Ba3c2Ea5b2F5a50dbf6B32](https://IoTeXscan.io/address/0xe3247c554200C2dFf6Ba3c2Ea5b2F5a50dbf6B32) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### LightLink - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x6c65aAf03186d1DA60127D3d7792cF36eD99D909](https://phoenix.lightlink.io/address/0x6c65aAf03186d1DA60127D3d7792cF36eD99D909) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xe8fa70D0172BB36c952E3e20e2f3550Ca4557761](https://phoenix.lightlink.io/address/0xe8fa70D0172BB36c952E3e20e2f3550Ca4557761) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xCFB5F90370A7884DEc59C55533782B45FA24f4d1](https://phoenix.lightlink.io/address/0xCFB5F90370A7884DEc59C55533782B45FA24f4d1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://phoenix.lightlink.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://phoenix.lightlink.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Linea - -| Contract | Address | Deployment | -| :------------------ | :----------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x6964252561e8762dD10267176EaC5078b6291e51](https://lineascan.build/address/0x6964252561e8762dD10267176EaC5078b6291e51) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xEdf0A4b30defD14449604d1b97e2c39128c136CA](https://lineascan.build/address/0xEdf0A4b30defD14449604d1b97e2c39128c136CA) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x1514a869D29a8B22961e8F9eBa3DC64000b96BCe](https://lineascan.build/address/0x1514a869D29a8B22961e8F9eBa3DC64000b96BCe) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x058aD99662FE7ecB8c3109920C99439a302b6573](https://lineascan.build/address/0x058aD99662FE7ecB8c3109920C99439a302b6573) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xdEe57959770667d97A90C94fE70C055496B7a791](https://lineascan.build/address/0xdEe57959770667d97A90C94fE70C055496B7a791) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Mode - -| Contract | Address | Deployment | -| :------------------ | :----------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x3aEbaDFC423fD08BE4715986F68D5E9A597ec974](https://explorer.mode.network/address/0x3aEbaDFC423fD08BE4715986F68D5E9A597ec974) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x34dBab20FD097F63DDbf3092D83B1005D2573082](https://explorer.mode.network/address/0x34dBab20FD097F63DDbf3092D83B1005D2573082) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x64e7879558b6dfE2f510bd4b9Ad196ef0371EAA8](https://explorer.mode.network/address/0x64e7879558b6dfE2f510bd4b9Ad196ef0371EAA8) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://explorer.mode.network/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://explorer.mode.network/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Morph - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xF3cd08105b6745965149eF02b8aBdCEa0Ae51241](https://explorer.morphl2.io/address/0xF3cd08105b6745965149eF02b8aBdCEa0Ae51241) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x081BBbd4861BaBACE3E7eDC8a45741129DfC02fE](https://explorer.morphl2.io/address/0x081BBbd4861BaBACE3E7eDC8a45741129DfC02fE) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x660314f09ac3B65E216B6De288aAdc2599AF14e2](https://explorer.morphl2.io/address/0x660314f09ac3B65E216B6De288aAdc2599AF14e2) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://explorer.morphl2.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://explorer.morphl2.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Optimism - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x822e9c4852E978104d82F0f785bFA663c2b700c1](https://optimistic.etherscan.io/address/0x822e9c4852E978104d82F0f785bFA663c2b700c1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x0c4Cd6087DbFa3F74661BAbbFaa35273baC1c4b1](https://optimistic.etherscan.io/address/0x0c4Cd6087DbFa3F74661BAbbFaa35273baC1c4b1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x41dBa1AfBB6DF91b3330dc009842327A9858Cbae](https://optimistic.etherscan.io/address/0x41dBa1AfBB6DF91b3330dc009842327A9858Cbae) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://optimistic.etherscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://optimistic.etherscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Polygon - -| Contract | Address | Deployment | -| :------------------ | :----------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xE0BFe071Da104e571298f8b6e0fcE44C512C1Ff4](https://polygonscan.com/address/0xE0BFe071Da104e571298f8b6e0fcE44C512C1Ff4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x1aDd9385F2C5c8e446bbB77c7A36839aB7743AF4](https://polygonscan.com/address/0x1aDd9385F2C5c8e446bbB77c7A36839aB7743AF4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xf5e12d0bA25FCa0D738Ec57f149736B2e4C46980](https://polygonscan.com/address/0xf5e12d0bA25FCa0D738Ec57f149736B2e4C46980) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://polygonscan.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://polygonscan.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Scroll - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xcB0B1f1D116eD62135848d8C90EB61afDA936Da8](https://scrollscan.com/address/0xcB0B1f1D116eD62135848d8C90EB61afDA936Da8) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x8234Ad3CC4D29a4619C36a15286dac73078672a8](https://scrollscan.com/address/0x8234Ad3CC4D29a4619C36a15286dac73078672a8) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x00Ff6443E902874924dd217c1435e3be04f57431](https://scrollscan.com/address/0x00Ff6443E902874924dd217c1435e3be04f57431) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://scrollscan.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://scrollscan.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Sei Network - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x736A6E895790e089aEC2Bf76B2D7f368ce6Efff5](https://seitrace.com/address/0x736A6E895790e089aEC2Bf76B2D7f368ce6Efff5) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x34686937bef23c6441248Cc5A63A79a3a707e7E4](https://seitrace.com/address/0x34686937bef23c6441248Cc5A63A79a3a707e7E4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xeaFB40669fe3523b073904De76410b46e79a56D7](https://seitrace.com/address/0xeaFB40669fe3523b073904De76410b46e79a56D7) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://seitrace.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://seitrace.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Sophon - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x28fCAE6bda2546C93183EeC8638691B2EB184003](https://sophscan.xyz/address/0x28fCAE6bda2546C93183EeC8638691B2EB184003) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x7282d83E49363f373102d195F66649eBD6C57B9B](https://sophscan.xyz/address/0x7282d83E49363f373102d195F66649eBD6C57B9B) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xAc2E42b520364940c90Ce164412Ca9BA212d014B](https://sophscan.xyz/address/0xAc2E42b520364940c90Ce164412Ca9BA212d014B) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x424B27529B49EF4Bfa0727aFcFE4387Ac2932944](https://sophscan.xyz/address/0x424B27529B49EF4Bfa0727aFcFE4387Ac2932944) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x9971914DA16787F6cCfb27bEfB4404e33C8b869D](https://sophscan.xyz/address/0x9971914DA16787F6cCfb27bEfB4404e33C8b869D) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Superseed - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xF46D1f8C85f215A515F6D738ab3E3bA081f6C083](https://explorer.superseed.xyz/address/0xF46D1f8C85f215A515F6D738ab3E3bA081f6C083) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x89e9F2473836d9ab7D28Df6F180E30992b8CB5d6](https://explorer.superseed.xyz/address/0x89e9F2473836d9ab7D28Df6F180E30992b8CB5d6) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xa4576b58Ec760A8282D081dc94F3dc716DFc61e9](https://explorer.superseed.xyz/address/0xa4576b58Ec760A8282D081dc94F3dc716DFc61e9) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://explorer.superseed.xyz/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://explorer.superseed.xyz/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Taiko Mainnet - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x628E88cDF558c0F4796c8CeB5068a023a7159aA7](https://taikoscan.io/address/0x628E88cDF558c0F4796c8CeB5068a023a7159aA7) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xcBbA08768C4a9D9131dE0467Ae136b8450dC13B2](https://taikoscan.io/address/0xcBbA08768C4a9D9131dE0467Ae136b8450dC13B2) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x79F1fD8bB2D455f64010063Fc79E27561980FE10](https://taikoscan.io/address/0x79F1fD8bB2D455f64010063Fc79E27561980FE10) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://taikoscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://taikoscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Tangle - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x1cAe76b71913598d7664d16641CCB6037d8Ed61a](http://explorer.tangle.tools/address/0x1cAe76b71913598d7664d16641CCB6037d8Ed61a) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xF5AC60870E1CCc4Bfce23cfbb7a796A0d8dBAf47](http://explorer.tangle.tools/address/0xF5AC60870E1CCc4Bfce23cfbb7a796A0d8dBAf47) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a](http://explorer.tangle.tools/address/0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x3D664B2Da905DDD0Db931982FD9a759ea950D6e1](http://explorer.tangle.tools/address/0x3D664B2Da905DDD0Db931982FD9a759ea950D6e1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x9EfC8663cAB0e2d97ad17C9fbfc8392445517E94](http://explorer.tangle.tools/address/0x9EfC8663cAB0e2d97ad17C9fbfc8392445517E94) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Ultra - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x4749dB4834be9b473D586Ad4d98133dAfC678313](https://evmexplorer.ultra.io/address/0x4749dB4834be9b473D586Ad4d98133dAfC678313) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x6Fe81F4Bf1aF1b829f0E701647808f3Aa4b0BdE7](https://evmexplorer.ultra.io/address/0x6Fe81F4Bf1aF1b829f0E701647808f3Aa4b0BdE7) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x6D64Fc0BB0291C6A4F416eC1C379815C06967EaF](https://evmexplorer.ultra.io/address/0x6D64Fc0BB0291C6A4F416eC1C379815C06967EaF) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xd595D34ed96b253E7c7a934a7624F330a8411953](https://evmexplorer.ultra.io/address/0xd595D34ed96b253E7c7a934a7624F330a8411953) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xB8aB2E66d5E4931e675CBE499d8c01B778694fd3](https://evmexplorer.ultra.io/address/0xB8aB2E66d5E4931e675CBE499d8c01B778694fd3) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Unichain - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x26C341C4D79bA8F6BFB450a49E9165c936316B14](https://uniscan.xyz/address/0x26C341C4D79bA8F6BFB450a49E9165c936316B14) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xaf875A2bDb74bA8872292FC371131eb45a9b570C](https://uniscan.xyz/address/0xaf875A2bDb74bA8872292FC371131eb45a9b570C) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xa5F12D63E18a28C9BE27B6f3d91ce693320067ba](https://uniscan.xyz/address/0xa5F12D63E18a28C9BE27B6f3d91ce693320067ba) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076e4fb5cfe8be1c26e61222dc51828db8c1dc](https://uniscan.xyz/address/0xf8076e4fb5cfe8be1c26e61222dc51828db8c1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522ca06ce080800ab59ba4c091e63f6f54c5e6d](https://uniscan.xyz/address/0x5522ca06ce080800ab59ba4c091e63f6f54c5e6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### XDC - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x489e0DC5E62A751A2b209f1cC03E189fd6257176](https://xdcscan.com/address/0x489e0DC5E62A751A2b209f1cC03E189fd6257176) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x6d36227Dd84e2A3d898B192Bc82a005c3cc2320C](https://xdcscan.com/address/0x6d36227Dd84e2A3d898B192Bc82a005c3cc2320C) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x4c1311a9d88BFb7023148aB04F7321C2E91c29bf](https://xdcscan.com/address/0x4c1311a9d88BFb7023148aB04F7321C2E91c29bf) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076e4fb5cfe8be1c26e61222dc51828db8c1dc](https://xdcscan.com/address/0xf8076e4fb5cfe8be1c26e61222dc51828db8c1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522ca06ce080800ab59ba4c091e63f6f54c5e6d](https://xdcscan.com/address/0x5522ca06ce080800ab59ba4c091e63f6f54c5e6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### zkSync Era - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x7BCcB3595Aa81Dbe8A69DD8C46f5C2A3cf76594A](https://era.zksync.network/address/0x7BCcB3595Aa81Dbe8A69DD8C46f5C2A3cf76594A) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xCC926359DBE6b6311D63f8155fcC3B57F3fAAE80](https://era.zksync.network/address/0xCC926359DBE6b6311D63f8155fcC3B57F3fAAE80) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xCB2d53c58496C2aA114bce4ED5C7fe768ce86542](https://era.zksync.network/address/0xCB2d53c58496C2aA114bce4ED5C7fe768ce86542) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x37De3Fc44a07A40411AD0Cea4310990C9F88c1C1](https://era.zksync.network/address/0x37De3Fc44a07A40411AD0Cea4310990C9F88c1C1) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xEE4a32E026aC2FD6BF71d9D7eB00803576aD314d](https://era.zksync.network/address/0xEE4a32E026aC2FD6BF71d9D7eB00803576aD314d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -## Testnets - -### Ethereum Sepolia - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xd116c275541cdBe7594A202bD6AE4DBca4578462](https://sepolia.etherscan.io/address/0xd116c275541cdBe7594A202bD6AE4DBca4578462) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xB655ecD83D27f7c683A9605783bd2866a4dCEB04](https://sepolia.etherscan.io/address/0xB655ecD83D27f7c683A9605783bd2866a4dCEB04) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x08D3C81626d9Cb19760835e8730Ec0D3F1899976](https://sepolia.etherscan.io/address/0x08D3C81626d9Cb19760835e8730Ec0D3F1899976) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.etherscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.etherscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Arbitrum Sepolia - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x83Dd52FCA44E069020b58155b761A590F12B59d3](https://sepolia.arbiscan.io/address/0x83Dd52FCA44E069020b58155b761A590F12B59d3) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xbf85cd17ca59b7a2b81d3d776ce1602a7c0af9d9](https://sepolia.arbiscan.io/address/0xbf85cd17ca59b7a2b81d3d776ce1602a7c0af9d9) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x8224eb5d7d76b2d7df43b868d875e79b11500ea8](https://sepolia.arbiscan.io/address/0x8224eb5d7d76b2d7df43b868d875e79b11500ea8) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.arbiscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.arbiscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Base Sepolia - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xa4777CA525d43a7aF55D45b11b430606d7416f8d](https://sepolia.basescan.org/address/0xa4777CA525d43a7aF55D45b11b430606d7416f8d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xEdc716E9672f672456d22b02532395c1e62B8C16](https://sepolia.basescan.org/address/0xedc716e9672f672456d22b02532395c1e62b8c16) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xCA2593027BA24856c292Fdcb5F987E0c25e755a4](https://sepolia.basescan.org/address/0xCA2593027BA24856c292Fdcb5F987E0c25e755a4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.basescan.org/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.basescan.org/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Blast Sepolia - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x3fC9E80478c65759a8273CD9dFe2D7011b45164E](https://sepolia.blastscan.io/address/0x3fC9E80478c65759a8273CD9dFe2D7011b45164E) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x30FC3D5b53e17edbC72d0a488f10C0eD3d7b0893](https://sepolia.blastscan.io/address/0x30FC3D5b53e17edbC72d0a488f10C0eD3d7b0893) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xF0182C7c0F155CdB49B575cFB5Fe7b3cE94D2234](https://sepolia.blastscan.io/address/0xF0182C7c0F155CdB49B575cFB5Fe7b3cE94D2234) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.blastscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.blastscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Linea Sepolia - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xbb4A14868A4BEc78b7354582b8C818ba520d7A4E](https://sepolia.lineascan.build/address/0xbb4A14868A4BEc78b7354582b8C818ba520d7A4E) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x9A987181BF05b7C154118A3216d522fa2407a8Be](https://sepolia.lineascan.build/address/0x9A987181BF05b7C154118A3216d522fa2407a8Be) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xCE94BE25320A51Ac868d0C133c251aE10682DabD](https://sepolia.lineascan.build/address/0xCE94BE25320A51Ac868d0C133c251aE10682DabD) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x058aD99662FE7ecB8c3109920C99439a302b6573](https://sepolia.lineascan.build/address/0x058aD99662FE7ecB8c3109920C99439a302b6573) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0xdEe57959770667d97A90C94fE70C055496B7a791](https://sepolia.lineascan.build/address/0xdEe57959770667d97A90C94fE70C055496B7a791) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Mode Sepolia - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xF56b79523FD0b4A6c9bf4e6F7a3Ea45dC0fB5bBC](https://sepolia.explorer.mode.network/address/0xF56b79523FD0b4A6c9bf4e6F7a3Ea45dC0fB5bBC) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xaD2f0228369D71605cd19c33FfA2Dde85A2FE477](https://sepolia.explorer.mode.network/address/0xaD2f0228369D71605cd19c33FfA2Dde85A2FE477) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xDd695E927b97460C8d454D8f6d8Cd797Dcf1FCfD](https://sepolia.explorer.mode.network/address/0xDd695E927b97460C8d454D8f6d8Cd797Dcf1FCfD) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.explorer.mode.network/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.explorer.mode.network/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Monad Testnet - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xb8fa18a1C1090648C3B896ddeC2d3B7e2Ae3daAc](https://testnet.monadexplorer.com/address/0xb8fa18a1C1090648C3B896ddeC2d3B7e2Ae3daAc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xC60B812b7aec661D6E519EE6d3d96b83155A31F4](https://testnet.monadexplorer.com/address/0xC60B812b7aec661D6E519EE6d3d96b83155A31F4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x37308aAB2eF87427cA5e844A6d5E9B6EEBB0b154](https://testnet.monadexplorer.com/address/0x37308aAB2eF87427cA5e844A6d5E9B6EEBB0b154) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://testnet.monadexplorer.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://testnet.monadexplorer.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Optimism Sepolia - -| Contract | Address | Deployment | -| :------------------ | :--------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x1f898895eAB949FfD34c29Cf859C035DC4525DF4](https://sepolia.optimistic.etherscan.io/address/0x1f898895eAB949FfD34c29Cf859C035DC4525DF4) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xF7BA8a7dc96d1939b789b91865bdb05596EBB558](https://sepolia.optimistic.etherscan.io/address/0xF7BA8a7dc96d1939b789b91865bdb05596EBB558) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xDf6163ddD3Ebcb552Cc1379a9c65AFe68683534e](https://sepolia.optimistic.etherscan.io/address/0xDf6163ddD3Ebcb552Cc1379a9c65AFe68683534e) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia.optimistic.etherscan.io/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia.optimistic.etherscan.io/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Superseed Sepolia - -| Contract | Address | Deployment | -| :------------------ | :-------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x4E83EC1Ea3B885C1a3698dA7DC42F32575688ABE](https://sepolia-explorer.superseed.xyz/address/0x4E83EC1Ea3B885C1a3698dA7DC42F32575688ABE) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xB2C6C57ee10B88E8344f34ffeCe39B0C6573c23D](https://sepolia-explorer.superseed.xyz/address/0xB2C6C57ee10B88E8344f34ffeCe39B0C6573c23D) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xc5D8E4317CE4a2E323192A5d856C90372bDE1558](https://sepolia-explorer.superseed.xyz/address/0xc5D8E4317CE4a2E323192A5d856C90372bDE1558) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://sepolia-explorer.superseed.xyz/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://sepolia-explorer.superseed.xyz/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### Taiko Hekla - -| Contract | Address | Deployment | -| :------------------ | :------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0xa969f0CCc080dfd513Eb7175248df68364701fC2](https://hekla.taikoexplorer.com/address/0xa969f0CCc080dfd513Eb7175248df68364701fC2) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0x5F62Be3b60c3Dc3D49e96Ee8390Fea2930A3E01b](https://hekla.taikoexplorer.com/address/0x5F62Be3b60c3Dc3D49e96Ee8390Fea2930A3E01b) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0x4a92Ca0a777fd781B3aA1d7925Ad54B64C85eedE](https://hekla.taikoexplorer.com/address/0x4a92Ca0a777fd781B3aA1d7925Ad54B64C85eedE) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc](https://hekla.taikoexplorer.com/address/0xf8076E4Fb5cfE8be1C26E61222DC51828Db8C1dc) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d](https://hekla.taikoexplorer.com/address/0x5522CA06Ce080800AB59BA4C091e63f6f54C5E6d) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | - -### zkSync Sepolia - -| Contract | Address | Deployment | -| :------------------ | :---------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------- | -| SablierLockup | [0x474087A8c30b0615713e9F0249529D6ff79cA992](https://sepolia-era.zksync.network/address/0x474087A8c30b0615713e9F0249529D6ff79cA992) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| SablierBatchLockup | [0xd5f24C5E4800dF47D99E8168B9eE611b8Ba70490](https://sepolia-era.zksync.network/address/0xd5f24C5E4800dF47D99E8168B9eE611b8Ba70490) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| LockupNFTDescriptor | [0xE34228B88BA2DC2EaeD2d4CB4CbBa874f1F4483c](https://sepolia-era.zksync.network/address/0xE34228B88BA2DC2EaeD2d4CB4CbBa874f1F4483c) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| Helpers | [0x9697a091cEe846E7dd9cCB15f8a1e03f8150cE89](https://sepolia-era.zksync.network/address/0x9697a091cEe846E7dd9cCB15f8a1e03f8150cE89) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | -| VestingMath | [0x020a61e468229499a2feBB2412E8f563B422C3dC](https://sepolia-era.zksync.network/address/0x020a61e468229499a2feBB2412E8f563B422C3dC) | [lockup-v2.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v2.0.0) | diff --git a/docs/guides/lockup/04-gas-benchmarks.md b/docs/guides/lockup/04-gas-benchmarks.md deleted file mode 100644 index 73c2359f..00000000 --- a/docs/guides/lockup/04-gas-benchmarks.md +++ /dev/null @@ -1,135 +0,0 @@ ---- -label: "Gas benchmarks" -sidebar_position: 4 -title: "Gas Benchmarks" ---- - -The gas usage of the Lockup protocol is not deterministic and varies by user. Calls to third-party contracts, such as -ERC-20 tokens, may use an arbitrary amount of gas. The values in the table below are rough estimations on Ethereum -mainnet - you shouldn't take them for granted. The gas usage may vary depending on the network. - -:::note - -Please refer to the [GitHub repository](https://github.com/sablier-labs/benchmarks) to view the code that generates -these benchmarks. - -::: - -### Batch Contract - -| Function | Stream Type | Segments/Tranches | Batch Size | Gas Usage | -| ------------------------ | ----------- | ----------------- | ---------- | ---------- | -| `createWithDurationsLL` | Linear | N/A | 5 | 937,003 | -| `createWithTimestampsLL` | Linear | N/A | 5 | 898,916 | -| `createWithDurationsLD` | Dynamic | 24 | 5 | 4,123,217 | -| `createWithTimestampsLD` | Dynamic | 24 | 5 | 3,895,052 | -| `createWithDurationsLT` | Tranched | 24 | 5 | 4,013,105 | -| `createWithTimestampsLT` | Tranched | 24 | 5 | 3,822,707 | -| `createWithDurationsLL` | Linear | N/A | 10 | 1,740,955 | -| `createWithTimestampsLL` | Linear | N/A | 10 | 1,747,416 | -| `createWithDurationsLD` | Dynamic | 24 | 10 | 8,202,890 | -| `createWithTimestampsLD` | Dynamic | 24 | 10 | 7,741,699 | -| `createWithDurationsLT` | Tranched | 24 | 10 | 7,974,447 | -| `createWithTimestampsLT` | Tranched | 24 | 10 | 7,597,402 | -| `createWithDurationsLL` | Linear | N/A | 20 | 3,433,786 | -| `createWithTimestampsLL` | Linear | N/A | 20 | 3,447,467 | -| `createWithDurationsLD` | Dynamic | 24 | 20 | 16,380,960 | -| `createWithTimestampsLD` | Dynamic | 24 | 20 | 15,440,827 | -| `createWithDurationsLT` | Tranched | 24 | 20 | 15,896,070 | -| `createWithTimestampsLT` | Tranched | 24 | 20 | 15,152,551 | -| `createWithDurationsLL` | Linear | N/A | 30 | 5,125,959 | -| `createWithTimestampsLL` | Linear | N/A | 30 | 5,155,292 | -| `createWithDurationsLD` | Dynamic | 24 | 30 | 24,603,376 | -| `createWithTimestampsLD` | Dynamic | 24 | 30 | 23,157,026 | -| `createWithDurationsLT` | Tranched | 24 | 30 | 23,818,565 | -| `createWithTimestampsLT` | Tranched | 24 | 30 | 22,725,003 | -| `createWithDurationsLL` | Linear | N/A | 50 | 8,532,644 | -| `createWithTimestampsLL` | Linear | N/A | 50 | 8,582,221 | -| `createWithDurationsLD` | Dynamic | 12 | 50 | 24,275,049 | -| `createWithTimestampsLD` | Dynamic | 12 | 50 | 23,058,857 | -| `createWithDurationsLT` | Tranched | 12 | 50 | 23,611,123 | -| `createWithTimestampsLT` | Tranched | 12 | 50 | 22,718,936 | - -### Linear Stream - -| Function | Configuration | Gas Usage | -| ------------------------ | -------------------------------------------- | --------- | -| `burn` | N/A | 16,141 | -| `cancel` | N/A | 65,381 | -| `renounce` | N/A | 27,721 | -| `createWithDurationsLL` | broker = 0 & cliff = 0 | 122,287 | -| `createWithDurationsLL` | broker > 0 & cliff = 0 | 138,649 | -| `createWithDurationsLL` | broker = 0 & cliff > 0 | 164,278 | -| `createWithDurationsLL` | broker > 0 & cliff > 0 | 169,335 | -| `createWithTimestampsLL` | broker = 0 & cliff = 0 | 120,038 | -| `createWithTimestampsLL` | broker > 0 & cliff = 0 | 125,100 | -| `createWithTimestampsLL` | broker = 0 & cliff > 0 | 164,614 | -| `createWithTimestampsLL` | broker > 0 & cliff > 0 | 169,682 | -| `withdraw` | endTime < blockTime & msgSender = recipient | 33,179 | -| `withdraw` | endTime > blockTime & msgSender = recipient | 23,303 | -| `withdraw` | endTime < blockTime & msgSender != recipient | 29,561 | -| `withdraw` | endTime > blockTime & msgSender != recipient | 22,815 | - -### Dynamic Stream - -| Function | Segments | Configuration | Gas Usage | -| ------------------------ | -------- | -------------------------------------------- | --------- | -| `burn` | N/A | N/A | 16,141 | -| `cancel` | N/A | N/A | 65,381 | -| `renounce` | N/A | N/A | 27,721 | -| `createWithDurationsLD` | 2 | broker = 0 | 200,461 | -| `createWithDurationsLD` | 2 | broker > 0 | 216,788 | -| `createWithTimestampsLD` | 2 | broker = 0 | 192,627 | -| `createWithTimestampsLD` | 2 | broker > 0 | 197,652 | -| `withdraw` | 2 | endTime < blockTime & msgSender = recipient | 23,885 | -| `withdraw` | 2 | endTime > blockTime & msgSender = recipient | 29,903 | -| `withdraw` | 2 | endTime < blockTime & msgSender != recipient | 19,175 | -| `withdraw` | 2 | endTime > blockTime & msgSender != recipient | 29,992 | -| `createWithDurationsLD` | 10 | broker = 0 | 417,189 | -| `createWithDurationsLD` | 10 | broker > 0 | 422,199 | -| `createWithTimestampsLD` | 10 | broker = 0 | 397,126 | -| `createWithTimestampsLD` | 10 | broker > 0 | 402,125 | -| `withdraw` | 10 | endTime < blockTime & msgSender = recipient | 24,167 | -| `withdraw` | 10 | endTime > blockTime & msgSender = recipient | 37,190 | -| `withdraw` | 10 | endTime < blockTime & msgSender != recipient | 24,278 | -| `withdraw` | 10 | endTime > blockTime & msgSender != recipient | 37,279 | -| `createWithDurationsLD` | 100 | broker = 0 | 2,894,573 | -| `createWithDurationsLD` | 100 | broker > 0 | 2,898,563 | -| `createWithTimestampsLD` | 100 | broker = 0 | 2,702,660 | -| `createWithTimestampsLD` | 100 | broker > 0 | 2,706,641 | -| `withdraw` | 100 | endTime < blockTime & msgSender = recipient | 81,920 | -| `withdraw` | 100 | endTime > blockTime & msgSender = recipient | 119,603 | -| `withdraw` | 100 | endTime < blockTime & msgSender != recipient | 82,009 | -| `withdraw` | 100 | endTime > blockTime & msgSender != recipient | 119,692 | - -### Tranched Stream - -| Function | Tranches | Configuration | Gas Usage | -| ------------------------ | -------- | -------------------------------------------- | --------- | -| `burn` | N/A | N/A | 16,141 | -| `cancel` | N/A | N/A | 65,381 | -| `renounce` | N/A | N/A | 27,721 | -| `createWithDurationsLT` | 2 | broker = 0 | 199,665 | -| `createWithDurationsLT` | 2 | broker > 0 | 215,994 | -| `createWithTimestampsLT` | 2 | broker = 0 | 191,964 | -| `createWithTimestampsLT` | 2 | broker > 0 | 196,988 | -| `withdraw` | 2 | endTime < blockTime & msgSender = recipient | 23,599 | -| `withdraw` | 2 | endTime > blockTime & msgSender = recipient | 18,503 | -| `withdraw` | 2 | endTime < blockTime & msgSender != recipient | 18,889 | -| `withdraw` | 2 | endTime > blockTime & msgSender != recipient | 18,592 | -| `createWithDurationsLT` | 10 | broker = 0 | 409,394 | -| `createWithDurationsLT` | 10 | broker > 0 | 414,411 | -| `createWithTimestampsLT` | 10 | broker = 0 | 392,026 | -| `createWithTimestampsLT` | 10 | broker > 0 | 397,045 | -| `withdraw` | 10 | endTime < blockTime & msgSender = recipient | 23,318 | -| `withdraw` | 10 | endTime > blockTime & msgSender = recipient | 25,403 | -| `withdraw` | 10 | endTime < blockTime & msgSender != recipient | 23,427 | -| `withdraw` | 10 | endTime > blockTime & msgSender != recipient | 25,492 | -| `createWithDurationsLT` | 100 | broker = 0 | 2,804,166 | -| `createWithDurationsLT` | 100 | broker > 0 | 2,808,652 | -| `createWithTimestampsLT` | 100 | broker = 0 | 2,645,177 | -| `createWithTimestampsLT` | 100 | broker > 0 | 2,649,659 | -| `withdraw` | 100 | endTime < blockTime & msgSender = recipient | 74,530 | -| `withdraw` | 100 | endTime > blockTime & msgSender = recipient | 103,255 | -| `withdraw` | 100 | endTime < blockTime & msgSender != recipient | 74,619 | -| `withdraw` | 100 | endTime > blockTime & msgSender != recipient | 103,344 | diff --git a/docs/guides/lockup/04-gas-benchmarks.mdx b/docs/guides/lockup/04-gas-benchmarks.mdx new file mode 100644 index 00000000..04459482 --- /dev/null +++ b/docs/guides/lockup/04-gas-benchmarks.mdx @@ -0,0 +1,36 @@ +--- +id: "gas-benchmarks" +sidebar_position: 4 +title: "Gas Benchmarks" +--- + +import Link from "@docusaurus/Link"; +import RemoteGFMContent from "@site/src/components/atoms/RemoteGFMContent"; +import { Links } from "@site/src/constants"; +import { getBenchmarkURL } from "@site/src/helpers"; + +The gas usage of the Lockup protocol is not deterministic and varies by user. Calls to third-party contracts, such as +ERC-20 tokens, may use an arbitrary amount of gas. The values in the table below are rough estimations on Ethereum +mainnet - you shouldn't take them for granted. The gas usage may vary depending on the network. + +:::note + +The benchmarks were generated using the code in this GitHub repository. + +::: + +## BatchLockup + + + +## LockupLinear streams + + + +## LockupDynamic streams + + + +## LockupTranched streams + + diff --git a/docs/guides/lockup/examples/01-local-environment.mdx b/docs/guides/lockup/examples/01-local-environment.mdx index 6ced20d2..764d9d32 100644 --- a/docs/guides/lockup/examples/01-local-environment.mdx +++ b/docs/guides/lockup/examples/01-local-environment.mdx @@ -15,7 +15,7 @@ import { RunForkTest1, RunForkTest2, FinalSteps, -} from "@site/docs/snippets/LocalEnvironment.mdx"; +} from "@site/src/snippets/LocalEnvironment.mdx"; diff --git a/docs/guides/lockup/examples/batch-create-streams/01-batch-lockup-linear.mdx b/docs/guides/lockup/examples/batch-create-streams/01-batch-lockup-linear.mdx index 7136f144..141109c8 100644 --- a/docs/guides/lockup/examples/batch-create-streams/01-batch-lockup-linear.mdx +++ b/docs/guides/lockup/examples/batch-create-streams/01-batch-lockup-linear.mdx @@ -4,9 +4,9 @@ sidebar_position: 1 title: "Batch Lockup Linear" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import BatchCommonSteps from "@site/docs/snippets/BatchCommonSteps.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import BatchCommonSteps from "@site/src/snippets/BatchCommonSteps.mdx"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Create a Batch of Linear Streams @@ -15,7 +15,7 @@ In this guide, we will show you how you can use Solidity to batch create linear This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -48,7 +48,7 @@ contract BatchLLStreamCreator { } ``` - + ## Batch create functions diff --git a/docs/guides/lockup/examples/batch-create-streams/02-batch-lockup-dynamic.mdx b/docs/guides/lockup/examples/batch-create-streams/02-batch-lockup-dynamic.mdx index 15122a3c..f5b59e02 100644 --- a/docs/guides/lockup/examples/batch-create-streams/02-batch-lockup-dynamic.mdx +++ b/docs/guides/lockup/examples/batch-create-streams/02-batch-lockup-dynamic.mdx @@ -4,9 +4,9 @@ sidebar_position: 2 title: "Batch Lockup Dynamic" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import BatchCommonSteps from "@site/docs/snippets/BatchCommonSteps.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import BatchCommonSteps from "@site/src/snippets/BatchCommonSteps.mdx"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Create a Batch of Dynamic Streams @@ -15,7 +15,7 @@ In this guide, we will show you how you can use Solidity to batch create dynamic This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -48,7 +48,7 @@ contract BatchLDStreamCreator { } ``` - + ## Batch create functions diff --git a/docs/guides/lockup/examples/batch-create-streams/03-batch-lockup-tranched.mdx b/docs/guides/lockup/examples/batch-create-streams/03-batch-lockup-tranched.mdx index 15c8567b..de5f49b0 100644 --- a/docs/guides/lockup/examples/batch-create-streams/03-batch-lockup-tranched.mdx +++ b/docs/guides/lockup/examples/batch-create-streams/03-batch-lockup-tranched.mdx @@ -4,9 +4,9 @@ sidebar_position: 3 title: "Batch Lockup Tranched" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import BatchCommonSteps from "@site/docs/snippets/BatchCommonSteps.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import BatchCommonSteps from "@site/src/snippets/BatchCommonSteps.mdx"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; # Create a Batch of Tranched Streams @@ -15,7 +15,7 @@ In this guide, we will show you how can use Solidity to batch create tranched st This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -47,7 +47,7 @@ contract BatchLTStreamCreator { } ``` - + ## Batch create functions diff --git a/docs/guides/lockup/examples/create-stream/01-lockup-linear.mdx b/docs/guides/lockup/examples/create-stream/01-lockup-linear.mdx index 909b092c..51710b62 100644 --- a/docs/guides/lockup/examples/create-stream/01-lockup-linear.mdx +++ b/docs/guides/lockup/examples/create-stream/01-lockup-linear.mdx @@ -4,10 +4,10 @@ sidebar_position: 1 title: "Lockup Linear" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; -import LockupParam from "@site/docs/snippets/LockupParams.mdx"; -import TokenApproval from "@site/docs/snippets/TokenApproval.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; +import LockupParam from "@site/src/snippets/LockupParams.mdx"; +import TokenApproval from "@site/src/snippets/TokenApproval.mdx"; # Create a Lockup Linear Stream @@ -16,7 +16,7 @@ Linear stream using Solidity. This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -46,7 +46,7 @@ contract LockupLinearStreamCreator { } ``` - + There are two create functions in the Lockup contract that can be used to create Linear streams: diff --git a/docs/guides/lockup/examples/create-stream/02-lockup-tranched.mdx b/docs/guides/lockup/examples/create-stream/02-lockup-tranched.mdx index d2caaaae..3cf968c2 100644 --- a/docs/guides/lockup/examples/create-stream/02-lockup-tranched.mdx +++ b/docs/guides/lockup/examples/create-stream/02-lockup-tranched.mdx @@ -4,10 +4,10 @@ sidebar_position: 3 title: "Lockup Tranched" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; -import LockupParam from "@site/docs/snippets/LockupParams.mdx"; -import TokenApproval from "@site/docs/snippets/TokenApproval.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; +import LockupParam from "@site/src/snippets/LockupParams.mdx"; +import TokenApproval from "@site/src/snippets/TokenApproval.mdx"; # Create a Lockup Tranched Stream @@ -16,7 +16,7 @@ stream using Solidity. This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -46,7 +46,7 @@ contract LockupTranchedStreamCreator { } ``` - + There are two create functions in the Lockup contract that can be used to create Tranched streams: diff --git a/docs/guides/lockup/examples/create-stream/03-lockup-dynamic.mdx b/docs/guides/lockup/examples/create-stream/03-lockup-dynamic.mdx index cf234b1b..f0838500 100644 --- a/docs/guides/lockup/examples/create-stream/03-lockup-dynamic.mdx +++ b/docs/guides/lockup/examples/create-stream/03-lockup-dynamic.mdx @@ -4,10 +4,10 @@ sidebar_position: 3 title: "Lockup Dynamic" --- -import AdmonitionSimpleCode from "@site/docs/snippets/AdmonitionSimpleCode.mdx"; -import Deployment from "@site/docs/snippets/Deployment.mdx"; -import LockupParam from "@site/docs/snippets/LockupParams.mdx"; -import TokenApproval from "@site/docs/snippets/TokenApproval.mdx"; +import HardcodedDemonstration from "@site/src/components/atoms/HardcodedDemonstration"; +import CautionNonProduction from "@site/src/snippets/CautionNonProduction.mdx"; +import LockupParam from "@site/src/snippets/LockupParams.mdx"; +import TokenApproval from "@site/src/snippets/TokenApproval.mdx"; # Create a Lockup Dynamic Stream @@ -16,7 +16,7 @@ Dynamic stream using Solidity. This guide assumes that you have already gone through the [Protocol Concepts](/concepts/streaming) section. - + ## Set up a contract @@ -47,7 +47,7 @@ contract LockupDynamicStreamCreator { } ``` - + There are two create functions in the Lockup contract that can be used to create Dynamic streams: diff --git a/docs/guides/lockup/previous-deployments/v1.0.md b/docs/guides/lockup/previous-deployments/v1.0.md deleted file mode 100644 index 58cceb61..00000000 --- a/docs/guides/lockup/previous-deployments/v1.0.md +++ /dev/null @@ -1,306 +0,0 @@ ---- -id: "v1.0" -sidebar_position: 3 -title: "v1.0" ---- - -# Lockup v1.0 - -This section contains the deployment addresses for the v1.0 release of [@sablier/v2-core@1.0.2][v2-core] and -[@sablier/v2-periphery@1.0.3][v2-periphery]. - -[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.0.2 -[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.0.3 - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -:::info - -This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). - -::: - -## Mainnets - -### Ethereum Mainnet - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0xC3Be6BffAeab7B297c03383B4254aa3Af2b9a5BA](https://etherscan.io/address/0xC3Be6BffAeab7B297c03383B4254aa3Af2b9a5BA) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x39EFdC3dbB57B2388CcC4bb40aC4CB1226Bc9E44](https://etherscan.io/address/0x39EFdC3dbB57B2388CcC4bb40aC4CB1226Bc9E44) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0xB10daee1FCF62243aE27776D7a92D39dC8740f95](https://etherscan.io/address/0xB10daee1FCF62243aE27776D7a92D39dC8740f95) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x98F2196fECc01C240d1429B624d007Ca268EEA29](https://etherscan.io/address/0x98F2196fECc01C240d1429B624d007Ca268EEA29) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x0Be20a8242B0781B6fd4d453e90DCC1CcF7DBcc6](https://etherscan.io/address/0x0Be20a8242B0781B6fd4d453e90DCC1CcF7DBcc6) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x9bdebF4F9adEB99387f46e4020FBf3dDa885D2b8](https://etherscan.io/address/0x9bdebF4F9adEB99387f46e4020FBf3dDa885D2b8) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x638a7aC8315767cEAfc57a6f5e3559454347C3f6](https://etherscan.io/address/0x638a7aC8315767cEAfc57a6f5e3559454347C3f6) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x297b43aE44660cA7826ef92D8353324C018573Ef](https://etherscan.io/address/0x297b43aE44660cA7826ef92D8353324C018573Ef) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Arbitrum One - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x17Ec73692F0aDf7E7C554822FBEAACB4BE781762](https://arbiscan.io/address/0x17Ec73692F0aDf7E7C554822FBEAACB4BE781762) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xA9EfBEf1A35fF80041F567391bdc9813b2D50197](https://arbiscan.io/address/0xA9EfBEf1A35fF80041F567391bdc9813b2D50197) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x197D655F3be03903fD25e7828c3534504bfe525e](https://arbiscan.io/address/0x197D655F3be03903fD25e7828c3534504bfe525e) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xc245d6C9608769CeF91C3858e4d2a74802B9f1bB](https://arbiscan.io/address/0xc245d6C9608769CeF91C3858e4d2a74802B9f1bB) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0xDFa4512d07AbD4eb8Be570Cd79e2e6Fe21ff15C9](https://arbiscan.io/address/0xDFa4512d07AbD4eb8Be570Cd79e2e6Fe21ff15C9) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x9aB73CA73c89AF0bdc69642aCeb23CC6A55A514C](https://arbiscan.io/address/0x9aB73CA73c89AF0bdc69642aCeb23CC6A55A514C) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x90cc23dc3e12e80f27c05b8137b5f0d2b1edfa20](https://arbiscan.io/address/0x90cc23dc3e12e80f27c05b8137b5f0d2b1edfa20) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0xB7185AcAF42C4966fFA3c81486d9ED9633aa4c13](https://arbiscan.io/address/0xB7185AcAF42C4966fFA3c81486d9ED9633aa4c13) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Arbitrum Nova - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x203f1722d4adb9b67bf652c878d0dc3cc8099113](https://nova.arbiscan.io/address/0x203f1722d4adb9b67bf652c878d0dc3cc8099113) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xd6b66A8D797c1e83DdEcE8f483E7D1264B9DFDa6](https://nova.arbiscan.io/address/0xd6b66A8D797c1e83DdEcE8f483E7D1264B9DFDa6) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x18306C9550AbfE3F5900d1206FFdce9ce5763A89](https://nova.arbiscan.io/address/0x18306C9550AbfE3F5900d1206FFdce9ce5763A89) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xE88d26d1E8802be5cc023264b3FccF63Bc38C20c](https://nova.arbiscan.io/address/0xE88d26d1E8802be5cc023264b3FccF63Bc38C20c) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x17DE7707D0b25F878Ae4FaC03cdE2481CD616EDd](https://nova.arbiscan.io/address/0x17DE7707D0b25F878Ae4FaC03cdE2481CD616EDd) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x1f09ce4be5ad6e76cda6242af91921440df2306e](https://nova.arbiscan.io/address/0x1f09ce4be5ad6e76cda6242af91921440df2306e) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetPermit2 | [0x4487F233bdf7d3C977F936891D5A0Ff1b275A2a8](https://nova.arbiscan.io/address/0x4487F233bdf7d3C977F936891D5A0Ff1b275A2a8) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Avalanche - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x66F5431B0765D984f82A4fc4551b2c9ccF7eAC9C](https://snowtrace.io/address/0x66F5431B0765D984f82A4fc4551b2c9ccF7eAC9C) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x665d1C8337F1035cfBe13DD94bB669110b975f5F](https://snowtrace.io/address/0x665d1C8337F1035cfBe13DD94bB669110b975f5F) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x610346E9088AFA70D6B03e96A800B3267E75cA19](https://snowtrace.io/address/0x610346E9088AFA70D6B03e96A800B3267E75cA19) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xFd050AFA2e04aA0596947DaD3Ec5690162aDc77F](https://snowtrace.io/address/0xFd050AFA2e04aA0596947DaD3Ec5690162aDc77F) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x7b1ef644ce9a625537e9e0c3d7fef3be667e6159](https://snowtrace.io/address/0x7b1ef644ce9a625537e9e0c3d7fef3be667e6159) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x17167A7e2763121e263B4331B700a1BF9113b387](https://snowtrace.io/address/0x17167A7e2763121e263B4331B700a1BF9113b387) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x817fE1364A9d57d1fB951945B53942234163Ef10](https://snowtrace.io/address/0x817fE1364A9d57d1fB951945B53942234163Ef10) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x48B4889cf5d6f8360050f9d7606505F1433120BC](https://snowtrace.io/address/0x48B4889cf5d6f8360050f9d7606505F1433120BC) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Base - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x7Faaedd40B1385C118cA7432952D9DC6b5CbC49e](https://basescan.org/address/0x7Faaedd40B1385C118cA7432952D9DC6b5CbC49e) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x645B00960Dc352e699F89a81Fc845C0C645231cf](https://basescan.org/address/0x645B00960Dc352e699F89a81Fc845C0C645231cf) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x6b9a46C8377f21517E65fa3899b3A9Fab19D17f5](https://basescan.org/address/0x6b9a46C8377f21517E65fa3899b3A9Fab19D17f5) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xEFc2896c29F70bc23e82892Df827d4e2259028Fd](https://basescan.org/address/0xEFc2896c29F70bc23e82892Df827d4e2259028Fd) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x1C5Ac71dd48c7ff291743e5E6e3689ba92F73cC6](https://basescan.org/address/0x1C5Ac71dd48c7ff291743e5E6e3689ba92F73cC6) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x50E8B9dC7F28e5cA9253759455C1077e497c4232](https://basescan.org/address/0x50E8B9dC7F28e5cA9253759455C1077e497c4232) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0xf19576Ab425753816eCbF98aca8132A0f693aEc5](https://basescan.org/address/0xf19576Ab425753816eCbF98aca8132A0f693aEc5) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x0648C80b969501c7778b6ff3ba47aBb78fEeDF39](https://basescan.org/address/0x0648C80b969501c7778b6ff3ba47aBb78fEeDF39) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### BNB Smart Chain - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x33511f69A784Fd958E6713aCaC7c9dCF1A5578E8](https://bscscan.com/address/0x33511f69A784Fd958E6713aCaC7c9dCF1A5578E8) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xF2f3feF2454DcA59ECA929D2D8cD2a8669Cc6214](https://bscscan.com/address/0xF2f3feF2454DcA59ECA929D2D8cD2a8669Cc6214) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x3FE4333f62A75c2a85C8211c6AeFd1b9Bfde6e51](https://bscscan.com/address/0x3FE4333f62A75c2a85C8211c6AeFd1b9Bfde6e51) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x3daD1bF57edCFF979Fb68a802AC54c5AAfB78F4c](https://bscscan.com/address/0x3daD1bF57edCFF979Fb68a802AC54c5AAfB78F4c) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0xeDe48EB173A869c0b27Cb98CC56d00BC391e5887](https://bscscan.com/address/0xeDe48EB173A869c0b27Cb98CC56d00BC391e5887) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xC43b2d8CedB71df30F45dFd9a21eC1E50A813bD6](https://bscscan.com/address/0xC43b2d8CedB71df30F45dFd9a21eC1E50A813bD6) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0xc9bf2A6bD467A813908d836c1506efE61E465761](https://bscscan.com/address/0xc9bf2A6bD467A813908d836c1506efE61E465761) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x135e78B8E17B1d189Af75FcfCC018ab2E6c7b879](https://bscscan.com/address/0x135e78B8E17B1d189Af75FcfCC018ab2E6c7b879) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Gnosis - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x73962c44c0fB4cC5e4545FB91732a5c5e87F55C2](https://gnosisscan.io/address/0x73962c44c0fB4cC5e4545FB91732a5c5e87F55C2) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xeb148E4ec13aaA65328c0BA089a278138E9E53F9](https://gnosisscan.io/address/0xeb148E4ec13aaA65328c0BA089a278138E9E53F9) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x685E92c9cA2bB23f1B596d0a7D749c0603e88585](https://gnosisscan.io/address/0x685E92c9cA2bB23f1B596d0a7D749c0603e88585) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x8CE9Cd651e03325Cf6D4Ce9cfa74BE79CDf6d530](https://gnosisscan.io/address/0x8CE9Cd651e03325Cf6D4Ce9cfa74BE79CDf6d530) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0xF4A6F47Da7c6b26b6Dd774671aABA48fb4bFE309](https://gnosisscan.io/address/0xF4A6F47Da7c6b26b6Dd774671aABA48fb4bFE309) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xc84f0e95815A576171A19EB9E0fA55a217Ab1536](https://gnosisscan.io/address/0xc84f0e95815A576171A19EB9E0fA55a217Ab1536) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x89AfE038714e547C29Fa881029DD4B5CFB008454](https://gnosisscan.io/address/0x89AfE038714e547C29Fa881029DD4B5CFB008454) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x5B144C3B9C8cfd48297Aeb59B90a024Ef3fCcE92](https://gnosisscan.io/address/0x5B144C3B9C8cfd48297Aeb59B90a024Ef3fCcE92) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Optimism - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x1EECb6e6EaE6a1eD1CCB4323F3a146A7C5443A10](https://optimistic.etherscan.io/address/0x1EECb6e6EaE6a1eD1CCB4323F3a146A7C5443A10) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x6f68516c21E248cdDfaf4898e66b2b0Adee0e0d6](https://optimistic.etherscan.io/address/0x6f68516c21E248cdDfaf4898e66b2b0Adee0e0d6) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0xB923aBdCA17Aed90EB5EC5E407bd37164f632bFD](https://optimistic.etherscan.io/address/0xB923aBdCA17Aed90EB5EC5E407bd37164f632bFD) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xe0138C596939CC0D2382046795bC163ad5755e0E](https://optimistic.etherscan.io/address/0xe0138C596939CC0D2382046795bC163ad5755e0E) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x9A09eC6f991386718854aDDCEe68647776Befd5b](https://optimistic.etherscan.io/address/0x9A09eC6f991386718854aDDCEe68647776Befd5b) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x77C8516B1F327890C956bb38F93Ac2d6B24795Ea](https://optimistic.etherscan.io/address/0x77C8516B1F327890C956bb38F93Ac2d6B24795Ea) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x8a6974c162fdc7Cb67996F7dB8bAAFb9a99566e0](https://optimistic.etherscan.io/address/0x8a6974c162fdc7Cb67996F7dB8bAAFb9a99566e0) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x194ed7D6005C8ba4084A948406545DF299ad37cD](https://optimistic.etherscan.io/address/0x194ed7D6005C8ba4084A948406545DF299ad37cD) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Polygon - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x9761692EDf10F5F2A69f0150e2fd50dcecf05F2E](https://polygonscan.com/address/0x9761692EDf10F5F2A69f0150e2fd50dcecf05F2E) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x7313AdDb53f96a4f710D3b91645c62B434190725](https://polygonscan.com/address/0x7313AdDb53f96a4f710D3b91645c62B434190725) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x67422C3E36A908D5C3237e9cFfEB40bDE7060f6E](https://polygonscan.com/address/0x67422C3E36A908D5C3237e9cFfEB40bDE7060f6E) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xA820946EaAceB2a85aF123f706f23192c28bC6B9](https://polygonscan.com/address/0xA820946EaAceB2a85aF123f706f23192c28bC6B9) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0xA2f5B2e798e7ADd59d85d9b76645E6AC13fC4e1f](https://polygonscan.com/address/0xA2f5B2e798e7ADd59d85d9b76645E6AC13fC4e1f) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xBe4cad0e99865CC62787Ecf029aD9DD4815d3d2e](https://polygonscan.com/address/0xBe4cad0e99865CC62787Ecf029aD9DD4815d3d2e) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0xccA6dd77bA2cfcccEdA01A82CB309e2A17901682](https://polygonscan.com/address/0xccA6dd77bA2cfcccEdA01A82CB309e2A17901682) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x576743075fc5F771bbC1376c3267A6185Af9D62B](https://polygonscan.com/address/0x576743075fc5F771bbC1376c3267A6185Af9D62B) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Scroll - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x859708495E3B3c61Bbe19e6E3E1F41dE3A5C5C5b](https://scrollscan.com/address/0x859708495E3B3c61Bbe19e6E3E1F41dE3A5C5C5b) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xde6a30D851eFD0Fc2a9C922F294801Cfd5FCB3A1](https://scrollscan.com/address/0xde6a30D851eFD0Fc2a9C922F294801Cfd5FCB3A1) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x80640ca758615ee83801EC43452feEA09a202D33](https://scrollscan.com/address/0x80640ca758615ee83801EC43452feEA09a202D33) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xC1fa624733203F2B7185c3724039C4D5E5234fE4](https://scrollscan.com/address/0xC1fa624733203F2B7185c3724039C4D5E5234fE4) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :---------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x94A18AC6e4B7d97E31f1587f6a666Dc5503086c3](https://scrollscan.com/address/0x94A18AC6e4B7d97E31f1587f6a666Dc5503086c3) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xED1591BD6038032a74D786A452A23536b3201490](https://scrollscan.com/address/0xED1591BD6038032a74D786A452A23536b3201490) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x71CeA9c4d15fed2E58785cE0C05165CE34313A74](https://scrollscan.com/address/0x71CeA9c4d15fed2E58785cE0C05165CE34313A74) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x91154fc80933D25793E6B4D7CE19fb51dE6794B7](https://scrollscan.com/address/0x91154fc80933D25793E6B4D7CE19fb51dE6794B7) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -## Testnets - -### Arbitrum Goerli - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0xECF737BDb9BB094489beCa39f0b9Ae66E0C14ba8](https://goerli.arbiscan.io/address/0xECF737BDb9BB094489beCa39f0b9Ae66E0C14ba8) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0xdc0a619fF975de6a08c7615ea383533fd265f2e3](https://goerli.arbiscan.io/address/0xdc0a619fF975de6a08c7615ea383533fd265f2e3) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x323B629635b6cFfe2453Aa2869c5957AfF55F445](https://goerli.arbiscan.io/address/0x323B629635b6cFfe2453Aa2869c5957AfF55F445) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x740509d893BC15a31EAE8542683Ed32085c559cB](https://goerli.arbiscan.io/address/0x740509d893BC15a31EAE8542683Ed32085c559cB) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x4371d767Cd7991248D20eD61d425e1e70c6CEEab](https://goerli.arbiscan.io/address/0x4371d767Cd7991248D20eD61d425e1e70c6CEEab) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xD37832B8993bEe6F41A8183967a7488C6e2a3551](https://goerli.arbiscan.io/address/0xD37832B8993bEe6F41A8183967a7488C6e2a3551) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetPermit2 | [0x2Ebd987e12432Ee3a74Fe0A55Afe5D866096e354](https://goerli.arbiscan.io/address/0x2Ebd987e12432Ee3a74Fe0A55Afe5D866096e354) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Arbitrum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0xA6A0cfA3442053fbB516D55205A749Ef2D33aed9](https://sepolia.arbiscan.io/address/0xA6A0cfA3442053fbB516D55205A749Ef2D33aed9) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x7938c18a59FaD2bA11426AcfBe8d74F0F598a4D2](https://sepolia.arbiscan.io/address/0x7938c18a59FaD2bA11426AcfBe8d74F0F598a4D2) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0xa3e36b51B7A456812c92253780f4B15bad56e34c](https://sepolia.arbiscan.io/address/0xa3e36b51B7A456812c92253780f4B15bad56e34c) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0xEe93BFf599C17C6fF8e31F2De6c3e40bd5e51312](https://sepolia.arbiscan.io/address/0xEe93BFf599C17C6fF8e31F2De6c3e40bd5e51312) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0x2C8fA48361C7D48Dc21b27a3D549402Cf8AE16B0](https://sepolia.arbiscan.io/address/0x2C8fA48361C7D48Dc21b27a3D549402Cf8AE16B0) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x7D310803c3824636bAff74e4f80e81ece167c440](https://sepolia.arbiscan.io/address/0x7D310803c3824636bAff74e4f80e81ece167c440) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetPermit2 | [0x396A3a169918A4C0B339ECf86C583f46D696254E](https://sepolia.arbiscan.io/address/0x396A3a169918A4C0B339ECf86C583f46D696254E) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Goerli - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x9B75F65bCCd05545C400145Cca29dA52DA57AC2b](https://goerli.etherscan.io/address/0x9B75F65bCCd05545C400145Cca29dA52DA57AC2b) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x4BE70EDe968e9dBA12DB42b9869Bec66bEDC17d7](https://goerli.etherscan.io/address/0x4BE70EDe968e9dBA12DB42b9869Bec66bEDC17d7) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0x6E3678c005815Ab34986D8d66A353Cd3699103DE](https://goerli.etherscan.io/address/0x6E3678c005815Ab34986D8d66A353Cd3699103DE) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x1D83CDd66BCf0ea8c99E745cC868478d6C3633f0](https://goerli.etherscan.io/address/0x1D83CDd66BCf0ea8c99E745cC868478d6C3633f0) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Archive | [0xFd14E62e6fe4d96F033cf972556ae56D09Bd49cA](https://goerli.etherscan.io/address/0xFd14E62e6fe4d96F033cf972556ae56D09Bd49cA) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0x9CA1dFFC744318198bE9Cf92283A803CE16b698a](https://goerli.etherscan.io/address/0x9CA1dFFC744318198bE9Cf92283A803CE16b698a) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x0e563B883dfe11469915194F8651a65212fdB96F](https://goerli.etherscan.io/address/0x0e563B883dfe11469915194F8651a65212fdB96F) | [periphery-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x0eE01680645c361B740ab4dCDdF238988eB20411](https://goerli.etherscan.io/address/0x0eE01680645c361B740ab4dCDdF238988eB20411) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | - -### Ethereum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2Comptroller | [0x2006d43E65e66C5FF20254836E63947FA8bAaD68](https://sepolia.etherscan.io/address/0x2006d43E65e66C5FF20254836E63947FA8bAaD68) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupDynamic | [0x421e1E7a53FF360f70A2D02037Ee394FA474e035](https://sepolia.etherscan.io/address/0x421e1E7a53FF360f70A2D02037Ee394FA474e035) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2LockupLinear | [0xd4300c5bc0b9e27c73ebabdc747ba990b1b570db](https://sepolia.etherscan.io/address/0xd4300c5bc0b9e27c73ebabdc747ba990b1b570db) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | -| SablierV2NFTDescriptor | [0x3cb51943ebcea05b23c35c50491b3d296ff675db](https://sepolia.etherscan.io/address/0x3cb51943ebcea05b23c35c50491b3d296ff675db) | [core-v1.0.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :-------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------- | -| SablierV2Archive | [0x83495d8DF6221f566232e1353a6e7231A86C61fF](https://sepolia.etherscan.io/address/0x83495d8DF6221f566232e1353a6e7231A86C61fF) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyPlugin | [0xa333c8233CfD04740E64AB4fd5447995E357561B](https://sepolia.etherscan.io/address/0xa333c8233CfD04740E64AB4fd5447995E357561B) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | -| SablierV2ProxyTargetApprove | [0x105E7728C5706Ad41d194EbDc7873B047352F3d2](https://sepolia.etherscan.io/address/0x105E7728C5706Ad41d194EbDc7873B047352F3d2) | [periphery-v1.0.1 ](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.1/periphery) | -| SablierV2ProxyTargetPermit2 | [0x5091900B7cF803a7407FCE6333A6bAE4aA779Fd4](https://sepolia.etherscan.io/address/0x5091900B7cF803a7407FCE6333A6bAE4aA779Fd4) | [periphery-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/periphery) | diff --git a/docs/guides/lockup/previous-deployments/v1.0.mdx b/docs/guides/lockup/previous-deployments/v1.0.mdx new file mode 100644 index 00000000..fd1d4e9e --- /dev/null +++ b/docs/guides/lockup/previous-deployments/v1.0.mdx @@ -0,0 +1,29 @@ +--- +id: "v1.0" +sidebar_position: 3 +title: "v1.0" +--- + +import DeploymentsV1_0 from "@site/src/autogen/lockup/TableDeploymentsV1.0.mdx"; + +# Lockup v1.0 + +This section contains the deployment addresses for the v1.0 release of [@sablier/v2-core@1.0.2][v2-core] and +[@sablier/v2-periphery@1.0.3][v2-periphery]. + +[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.0.2 +[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.0.3 + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +:::info + +This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). + +::: + + diff --git a/docs/guides/lockup/previous-deployments/v1.1.md b/docs/guides/lockup/previous-deployments/v1.1.md deleted file mode 100644 index 26bae919..00000000 --- a/docs/guides/lockup/previous-deployments/v1.1.md +++ /dev/null @@ -1,389 +0,0 @@ ---- -id: "v1.1" -sidebar_position: 2 -title: "v1.1" ---- - -# Lockup v1.1 - -This section contains the deployment addresses for the v1.1 release of [@sablier/v2-core@1.1.2][v2-core] and -[@sablier/v2-periphery@1.1.1][v2-periphery]. - -[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.1.2 -[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.1.1 - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -:::info - -This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). - -::: - -## Mainnets - -### Ethereum Mainnet - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xAFb979d9afAd1aD27C5eFf4E27226E3AB9e5dCC9](https://etherscan.io/address/0xAFb979d9afAd1aD27C5eFf4E27226E3AB9e5dCC9) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x7CC7e125d83A581ff438608490Cc0f7bDff79127](https://etherscan.io/address/0x7CC7e125d83A581ff438608490Cc0f7bDff79127) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x23eD5DA55AF4286c0dE55fAcb414dEE2e317F4CB](https://etherscan.io/address/0x23eD5DA55AF4286c0dE55fAcb414dEE2e317F4CB) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0xC3Be6BffAeab7B297c03383B4254aa3Af2b9a5BA](https://etherscan.io/address/0xC3Be6BffAeab7B297c03383B4254aa3Af2b9a5BA) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xEa07DdBBeA804E7fe66b958329F8Fa5cDA95Bd55](https://etherscan.io/address/0xEa07DdBBeA804E7fe66b958329F8Fa5cDA95Bd55) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x1A272b596b10f02931480BC7a3617db4a8d154E3](https://etherscan.io/address/0x1A272b596b10f02931480BC7a3617db4a8d154E3) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Arbitrum One - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xFDD9d122B451F549f48c4942c6fa6646D849e8C1](https://arbiscan.io/address/0xFDD9d122B451F549f48c4942c6fa6646D849e8C1) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xf390cE6f54e4dc7C5A5f7f8689062b7591F7111d](https://arbiscan.io/address/0xf390cE6f54e4dc7C5A5f7f8689062b7591F7111d) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x2fb103fC853b2F5022a840091ab1cDf5172E7cfa](https://arbiscan.io/address/0x2fb103fC853b2F5022a840091ab1cDf5172E7cfa) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x17Ec73692F0aDf7E7C554822FBEAACB4BE781762](https://arbiscan.io/address/0x17Ec73692F0aDf7E7C554822FBEAACB4BE781762) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xAFd1434296e29a0711E24014656158055F00784c](https://arbiscan.io/address/0xAFd1434296e29a0711E24014656158055F00784c) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x237400eF5a41886a75B0e036228221Df075b3B80](https://arbiscan.io/address/0x237400eF5a41886a75B0e036228221Df075b3B80) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Avalanche - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xB24B65E015620455bB41deAAd4e1902f1Be9805f](https://snowtrace.io/address/0xB24B65E015620455bB41deAAd4e1902f1Be9805f) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x0310Da0D8fF141166eD47548f00c96464880781F](https://snowtrace.io/address/0x0310Da0D8fF141166eD47548f00c96464880781F) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xaBEdCf46c5D1d8eD8B9a487144189887695835DC](https://snowtrace.io/address/0xaBEdCf46c5D1d8eD8B9a487144189887695835DC) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x66F5431B0765D984f82A4fc4551b2c9ccF7eAC9C](https://snowtrace.io/address/0x66F5431B0765D984f82A4fc4551b2c9ccF7eAC9C) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x68f156E5fa8C23D65B33aBEbbA50e0CA3626F741](https://snowtrace.io/address/0x68f156E5fa8C23D65B33aBEbbA50e0CA3626F741) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0x4849e797d7Aab20FCC8f807EfafDffF98A83412E](https://snowtrace.io/address/0x4849e797d7Aab20FCC8f807EfafDffF98A83412E) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -### Base - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xFCF737582d167c7D20A336532eb8BCcA8CF8e350](https://basescan.org/address/0xFCF737582d167c7D20A336532eb8BCcA8CF8e350) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x461E13056a3a3265CEF4c593F01b2e960755dE91](https://basescan.org/address/0x461E13056a3a3265CEF4c593F01b2e960755dE91) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x67e0a126b695DBA35128860cd61926B90C420Ceb](https://basescan.org/address/0x67e0a126b695DBA35128860cd61926B90C420Ceb) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x7Faaedd40B1385C118cA7432952D9DC6b5CbC49e](https://basescan.org/address/0x7Faaedd40B1385C118cA7432952D9DC6b5CbC49e) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x94E596EEd73b4e3171c067f05A87AB0268cA993c](https://basescan.org/address/0x94E596EEd73b4e3171c067f05A87AB0268cA993c) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x5545c8E7c3E1F74aDc98e518F2E8D23A002C4412](https://basescan.org/address/0x5545c8E7c3E1F74aDc98e518F2E8D23A002C4412) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Berachain - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xF2B2CCA6b8062996F5B5B7E97e0BC821F1266dBC](https://berascan.com/address/0xF2B2CCA6b8062996F5B5B7E97e0BC821F1266dBC) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x1774629dBAc6fAad3aF535a074F4e8399F4f063B](https://berascan.com/address/0x1774629dBAc6fAad3aF535a074F4e8399F4f063B) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x5fA051E255AD309F68CA3588E30225d4f0A616bd](https://berascan.com/address/0x5fA051E255AD309F68CA3588E30225d4f0A616bd) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x1F11d838B4938959aA131e4C784C9d91c1df2a1B](https://berascan.com/address/0x1F11d838B4938959aA131e4C784C9d91c1df2a1B) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x0dF5C6fDebEdCdb6ae8733ed54460dba4756605F](https://berascan.com/address/0x0dF5C6fDebEdCdb6ae8733ed54460dba4756605F) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x7A34159cf99F0E04596B7C93C96ff390D806E3bE](https://berascan.com/address/0x7A34159cf99F0E04596B7C93C96ff390D806E3bE) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Blast - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://blastscan.io/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [core-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xDf578C2c70A86945999c65961417057363530a1c](https://blastscan.io/address/0xDf578C2c70A86945999c65961417057363530a1c) | [core-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x67e0a126b695DBA35128860cd61926B90C420Ceb](https://blastscan.io/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [core-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](https://blastscan.io/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [core-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :--------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------- | -| SablierV2Batch | [0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264](https://blastscan.io//address/0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264) | [periphery-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a](https://blastscan.io//address/0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a) | [periphery-blast](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -### BNB Smart Chain - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x14c35E126d75234a90c9fb185BF8ad3eDB6A90D2](https://bscscan.com/address/0x14c35E126d75234a90c9fb185BF8ad3eDB6A90D2) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xf900c5E3aA95B59Cc976e6bc9c0998618729a5fa](https://bscscan.com/address/0xf900c5E3aA95B59Cc976e6bc9c0998618729a5fa) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xEcAfcF09c23057210cB6470eB5D0FD8Bafd1755F](https://bscscan.com/address/0xEcAfcF09c23057210cB6470eB5D0FD8Bafd1755F) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x33511f69A784Fd958E6713aCaC7c9dCF1A5578E8](https://bscscan.com/address/0x33511f69A784Fd958E6713aCaC7c9dCF1A5578E8) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x2E30a2ae6565Db78C06C28dE937F668597c80a1c](https://bscscan.com/address/0x2E30a2ae6565Db78C06C28dE937F668597c80a1c) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x434D73465aAc4125d204A6637eB6C579d8D69f48](https://bscscan.com/address/0x434D73465aAc4125d204A6637eB6C579d8D69f48) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Gnosis - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xce49854a647a1723e8Fb7CC3D190CAB29A44aB48](https://gnosisscan.io/address/0xce49854a647a1723e8Fb7CC3D190CAB29A44aB48) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x1DF83C7682080B0f0c26a20C6C9CB8623e0Df24E](https://gnosisscan.io/address/0x1DF83C7682080B0f0c26a20C6C9CB8623e0Df24E) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x01dbFE22205d8B109959e2Be02d0095379309eed](https://gnosisscan.io/address/0x01dbFE22205d8B109959e2Be02d0095379309eed) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x73962c44c0fB4cC5e4545FB91732a5c5e87F55C2](https://gnosisscan.io/address/0x73962c44c0fB4cC5e4545FB91732a5c5e87F55C2) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xBd9DDbC55B85FF6Dc0b76E9EFdCd2547Ab482501](https://gnosisscan.io/address/0xBd9DDbC55B85FF6Dc0b76E9EFdCd2547Ab482501) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x777F66477FF83aBabADf39a3F22A8CC3AEE43765](https://gnosisscan.io/address/0x777F66477FF83aBabADf39a3F22A8CC3AEE43765) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### LightLink - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x17c4f98c40e69a6A0D5c42B11E3733f076A99E20](https://phoenix.lightlink.io/address/0x17c4f98c40e69a6A0D5c42B11E3733f076A99E20) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x49d753422ff05daa291A9efa383E4f57daEAd889](https://phoenix.lightlink.io/address/0x49d753422ff05daa291A9efa383E4f57daEAd889) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xda55fB3E53b7d205e37B6bdCe990b789255e4302](https://phoenix.lightlink.io/address/0xda55fB3E53b7d205e37B6bdCe990b789255e4302) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0xb568f9Bc0dcE39B9B64e843bC19DA102B5E3E939](https://phoenix.lightlink.io/address/0xb568f9Bc0dcE39B9B64e843bC19DA102B5E3E939) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x3eb9F8f80354a157315Fce64990C554434690c2f](https://phoenix.lightlink.io/address/0x3eb9F8f80354a157315Fce64990C554434690c2f) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0xdB07a1749D5Ca49909C7C4159652Fbd527c735B8](https://phoenix.lightlink.io/address/0xdB07a1749D5Ca49909C7C4159652Fbd527c735B8) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -### Optimism - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x4b45090152a5731b5bc71b5baF71E60e05B33867](https://optimistic.etherscan.io/address/0x4b45090152a5731b5bc71b5baF71E60e05B33867) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xd6920c1094eABC4b71f3dC411A1566f64f4c206e](https://optimistic.etherscan.io/address/0xd6920c1094eABC4b71f3dC411A1566f64f4c206e) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xF5050c04425E639C647F5ED632218b16ce96694d](https://optimistic.etherscan.io/address/0xF5050c04425E639C647F5ED632218b16ce96694d) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x1EECb6e6EaE6a1eD1CCB4323F3a146A7C5443A10](https://optimistic.etherscan.io/address/0x1EECb6e6EaE6a1eD1CCB4323F3a146A7C5443A10) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x8145429538dDBdDc4099B2bAfd24DD8958fa03b8](https://optimistic.etherscan.io/address/0x8145429538dDBdDc4099B2bAfd24DD8958fa03b8) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x044EC80FbeC40f0eE7E7b3856828170971796C19](https://optimistic.etherscan.io/address/0x044EC80FbeC40f0eE7E7b3856828170971796C19) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Polygon - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x5f0e1dea4A635976ef51eC2a2ED41490d1eBa003](https://polygonscan.com/address/0x5f0e1dea4A635976ef51eC2a2ED41490d1eBa003) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xB194c7278C627D52E440316b74C5F24FC70c1565](https://polygonscan.com/address/0xB194c7278C627D52E440316b74C5F24FC70c1565) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x8683da9DF8c5c3528e8251a5764EC7DAc7264795](https://polygonscan.com/address/0x8683da9DF8c5c3528e8251a5764EC7DAc7264795) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x9761692EDf10F5F2A69f0150e2fd50dcecf05F2E](https://polygonscan.com/address/0x9761692EDf10F5F2A69f0150e2fd50dcecf05F2E) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x5865C73789C4496665eDE1CAF018dc52ac248598](https://polygonscan.com/address/0x5865C73789C4496665eDE1CAF018dc52ac248598) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0xF4906225e783fb8977410BDBFb960caBed6C2EF4](https://polygonscan.com/address/0xF4906225e783fb8977410BDBFb960caBed6C2EF4) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Scroll - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x57e14AB4DAd920548899d86B54AD47Ea27F00987](https://scrollscan.com/address/0x57e14AB4DAd920548899d86B54AD47Ea27F00987) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xAaff2D11f9e7Cd2A9cDC674931fAC0358a165995](https://scrollscan.com/address/0xAaff2D11f9e7Cd2A9cDC674931fAC0358a165995) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xB71440B85172332E8B768e85EdBfdb34CB457c1c](https://scrollscan.com/address/0xB71440B85172332E8B768e85EdBfdb34CB457c1c) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x859708495E3B3c61Bbe19e6E3E1F41dE3A5C5C5b](https://scrollscan.com/address/0x859708495E3B3c61Bbe19e6E3E1F41dE3A5C5C5b) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xD18faa233E02d41EDFFdb64f20281dE0592FA3b5](https://scrollscan.com/address/0xD18faa233E02d41EDFFdb64f20281dE0592FA3b5) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0xb3ade5463000E6c0D376e7d7570f372eBf98BDAf](https://scrollscan.com/address/0xb3ade5463000E6c0D376e7d7570f372eBf98BDAf) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### zkSync Era - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x2FcA69fa0a318EFDf4c15eE8F13A873347a8A8D4](https://era.zksync.network/address/0x2FcA69fa0a318EFDf4c15eE8F13A873347a8A8D4) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xE6c7324BEA8474209103e407779Eec600c07cF3F](https://era.zksync.network/address/0xE6c7324BEA8474209103e407779Eec600c07cF3F) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xf12d2B8ff4Fc0495Db9c6d16b6a03bff9a10657A](https://era.zksync.network/address/0xf12d2B8ff4Fc0495Db9c6d16b6a03bff9a10657A) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0xD05bdb4cF6Be7D647c5FEcC7952660bdD82cE44C](https://era.zksync.network/address/0xD05bdb4cF6Be7D647c5FEcC7952660bdD82cE44C) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x37A20Fb12DD6e0ADA47B327C0466A231dDc4504A](https://era.zksync.network/address/0x37A20Fb12DD6e0ADA47B327C0466A231dDc4504A) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0x46DE683D20c3575A0381fFd66C10Ab6836390140](https://era.zksync.network/address/0x46DE683D20c3575A0381fFd66C10Ab6836390140) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -## Testnets - -### Arbitrum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x483bdd560dE53DC20f72dC66ACdB622C5075de34](https://sepolia.arbiscan.io/address/0x483bdd560dE53DC20f72dC66ACdB622C5075de34) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0x8c8102b92B1f31cC304A085D490796f4DfdF7aF3](https://sepolia.arbiscan.io/address/0x8c8102b92B1f31cC304A085D490796f4DfdF7aF3) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x593050f0360518C3A4F11c32Eb936146e1096FD1](https://sepolia.arbiscan.io/address/0x593050f0360518C3A4F11c32Eb936146e1096FD1) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0xA6A0cfA3442053fbB516D55205A749Ef2D33aed9](https://sepolia.arbiscan.io/address/0xA6A0cfA3442053fbB516D55205A749Ef2D33aed9) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x72D921E579aB7FC5D19CD398B6be24d626Ccb6e7](https://sepolia.arbiscan.io/address/0x72D921E579aB7FC5D19CD398B6be24d626Ccb6e7) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0xcc87b1A4de285832f226BD585bd54a2184D32105](https://sepolia.arbiscan.io/address/0xcc87b1A4de285832f226BD585bd54a2184D32105) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Base Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xbd7AAA2984c0a887E93c66baae222749883763d3](https://sepolia.basescan.org/address/0xbd7AAA2984c0a887E93c66baae222749883763d3) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xF46d5fA9bFC964E8d06846c8739AEc69BC06344d](https://sepolia.basescan.org/address/0xF46d5fA9bFC964E8d06846c8739AEc69BC06344d) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xb2b4b1E69B16411AEBD30c8EA5aB395E13069160](https://sepolia.basescan.org/address/0xb2b4b1E69B16411AEBD30c8EA5aB395E13069160) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x90b1C663314cFb55c8FF6f9a50a8D57a2D83a664](https://sepolia.basescan.org/address/0x90b1c663314cfb55c8ff6f9a50a8d57a2d83a664) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xbD636B8EF09760aC91f6Df3c6AC5531250420200](https://sepolia.basescan.org/address/0xbD636B8EF09760aC91f6Df3c6AC5531250420200) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0xf632521bbAb0dBC2bEf169865e6c8e285AFe0a42](https://sepolia.basescan.org/address/0xf632521bbAb0dBC2bEf169865e6c8e285AFe0a42) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -### Blast Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xe31Ac61c7762930625D4700D7ea9282B7E57b816](https://testnet.blastscan.io/address/0xe31Ac61c7762930625D4700D7ea9282B7E57b816) | [core-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | -| SablierV2LockupDynamic | [0x8aB55a8E046634D5AD87f64d65C1E96275e48712](https://testnet.blastscan.io/address/0x8aB55a8E046634D5AD87f64d65C1E96275e48712) | [core-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | -| SablierV2NFTDescriptor | [0x1e7217Aa198A17F79cc45aB5C90277Ff1d18b5DB](https://testnet.blastscan.io/address/0x1e7217Aa198A17F79cc45aB5C90277Ff1d18b5DB) | [core-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | -| SablierV2Comptroller | [0x9e216126115AFcdA9531232D3B735731905B4DC4](https://testnet.blastscan.io/address/0x9e216126115AFcdA9531232D3B735731905B4DC4) | [core-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------- | -| SablierV2Batch | [0x72D91DB141fd38eD5DDc0D4b00BdDd2A17Cf6D55](https://testnet.blastscan.io/address/0x72D91DB141fd38eD5DDc0D4b00BdDd2A17Cf6D55) | [periphery-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | -| SablierV2MerkleStreamerFactory | [0x6F147f9A251A1F004A1d043b8E486aAb00A49cef](https://testnet.blastscan.io/address/0x6F147f9A251A1F004A1d043b8E486aAb00A49cef) | [periphery-blast](https://github.com/sablier-labs/deployments/tree/chain/blast/blast/testnet) | - -### Optimism Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xe59D28bEF2D37E99b93E734ed1dDcFc4B9C1bf73](https://sepolia-optimistic.etherscan.io/address/0xe59D28bEF2D37E99b93E734ed1dDcFc4B9C1bf73) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xf9e4095C1dfC058B34135C5c48cae66a8D2b3Aa5](https://sepolia-optimistic.etherscan.io/address/0xf9e4095C1dfC058B34135C5c48cae66a8D2b3Aa5) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0x3590f54c5d3d83BA68c17cF5C28DB89C5d1DfA10](https://sepolia-optimistic.etherscan.io/address/0x3590f54c5d3d83BA68c17cF5C28DB89C5d1DfA10) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x6587166c4F4E0b6203549463EbAB4dBeFA63fd8f](https://sepolia-optimistic.etherscan.io/address/0x6587166c4F4E0b6203549463EbAB4dBeFA63fd8f) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x65D3A5b99372ef59E741EE768443dF884aB56E0b](https://sepolia-optimistic.etherscan.io/address/0x65D3A5b99372ef59E741EE768443dF884aB56E0b) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0x9b6cC73522f22Ad3f2F8187e892A51b95f1A0E8a](https://sepolia-optimistic.etherscan.io/address/0x9b6cC73522f22Ad3f2F8187e892A51b95f1A0E8a) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | - -### Ethereum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x7a43F8a888fa15e68C103E18b0439Eb1e98E4301](https://sepolia.etherscan.io/address/0x7a43F8a888fa15e68C103E18b0439Eb1e98E4301) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xc9940AD8F43aAD8e8f33A4D5dbBf0a8F7FF4429A](https://sepolia.etherscan.io/address/0xc9940AD8F43aAD8e8f33A4D5dbBf0a8F7FF4429A) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xE8fFEbA8963CD9302ffD39c704dc2c027128D36F](https://sepolia.etherscan.io/address/0xE8fFEbA8963CD9302ffD39c704dc2c027128D36F) | [core-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/core) | -| SablierV2Comptroller | [0x2006d43E65e66C5FF20254836E63947FA8bAaD68](https://sepolia.etherscan.io/address/0x2006d43E65e66C5FF20254836E63947FA8bAaD68) | [core-v1.0.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.0.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xd2569DC4A58dfE85d807Dffb976dbC0a3bf0B0Fb](https://sepolia.etherscan.io/address/0xd2569DC4A58dfE85d807Dffb976dbC0a3bf0B0Fb) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0xBacC1d151A78eeD71D504f701c25E8739DC0262D](https://sepolia.etherscan.io/address/0xBacC1d151A78eeD71D504f701c25E8739DC0262D) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### Taiko Hekla - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :-------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://explorer.hekla.taiko.xyz/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xDf578C2c70A86945999c65961417057363530a1c](https://explorer.hekla.taiko.xyz/address/0xDf578C2c70A86945999c65961417057363530a1c) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2](https://explorer.hekla.taiko.xyz/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](https://explorer.hekla.taiko.xyz/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0xd641a0E4509Cced67cC24E7BDcDe2a31b7F7cF77](https://explorer.hekla.taiko.xyz/address/0xd641a0E4509Cced67cC24E7BDcDe2a31b7F7cF77) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | -| SablierV2MerkleStreamerFactory | [0x29a8d9F67608d77D0B4544A70FC2ab80BA5525f5](https://explorer.hekla.taiko.xyz/address/0x29a8d9F67608d77D0B4544A70FC2ab80BA5525f5) | [periphery-v1.1.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.0/periphery) | - -### zkSync Sepolia - -#### Core - -| Contract | Address | Deployment | -| :--------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0xdFC6F5D327dcF5DB579eC1b47fb260F93e042409](https://sepolia-era.zksync.network/address/0xdFC6F5D327dcF5DB579eC1b47fb260F93e042409) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2LockupDynamic | [0xe101C69A6f9c071Ab79aEE0be56928565962F56d](https://sepolia-era.zksync.network/address/0xe101C69A6f9c071Ab79aEE0be56928565962F56d) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2NFTDescriptor | [0xABF4a24519c9A3c68a354FD6d5D4429De0A0D36C](https://sepolia-era.zksync.network/address/0xABF4a24519c9A3c68a354FD6d5D4429De0A0D36C) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | -| SablierV2Comptroller | [0xEB4570723ae207a0473D73B3c2B255b0D5Ec9f01](https://sepolia-era.zksync.network/address/0xEB4570723ae207a0473D73B3c2B255b0D5Ec9f01) | [core-v1.1.2](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.2/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :----------------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2Batch | [0x5F812F1332A2294149b9e1cBd216a5eED12cEbDD](https://sepolia-era.zksync.network/address/0x5F812F1332A2294149b9e1cBd216a5eED12cEbDD) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | -| SablierV2MerkleStreamerFactory | [0xd9a834135c816FFd133a411a36219aAFD190fF97](https://sepolia-era.zksync.network/address/0xd9a834135c816FFd133a411a36219aAFD190fF97) | [periphery-v1.1.1](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.1.1/periphery) | diff --git a/docs/guides/lockup/previous-deployments/v1.1.mdx b/docs/guides/lockup/previous-deployments/v1.1.mdx new file mode 100644 index 00000000..d0775b59 --- /dev/null +++ b/docs/guides/lockup/previous-deployments/v1.1.mdx @@ -0,0 +1,29 @@ +--- +id: "v1.1" +sidebar_position: 2 +title: "v1.1" +--- + +import DeploymentsV1_1 from "@site/src/autogen/lockup/TableDeploymentsV1.1.mdx"; + +# Lockup v1.1 + +This section contains the deployment addresses for the v1.1 release of [@sablier/v2-core@1.1.2][v2-core] and +[@sablier/v2-periphery@1.1.1][v2-periphery]. + +[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.1.2 +[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.1.1 + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +:::info + +This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). + +::: + + diff --git a/docs/guides/lockup/previous-deployments/v1.2.md b/docs/guides/lockup/previous-deployments/v1.2.md deleted file mode 100644 index 03ee7525..00000000 --- a/docs/guides/lockup/previous-deployments/v1.2.md +++ /dev/null @@ -1,695 +0,0 @@ ---- -id: "v1.2" -sidebar_position: 1 -title: "v1.2" ---- - -# Lockup v1.2 - -This section contains the deployment addresses for the v1.2 release of [@sablier/v2-core@1.2.0][v2-core] and -[@sablier/v2-periphery@1.2.0][v2-periphery]. - -[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.2.0 -[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.2.0 - -A few noteworthy details about the deployments: - -- The addresses are final -- All contracts are non-upgradeable -- The source code is verified on Etherscan across all chains - -:::info - -This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). - -::: - -## Mainnets - -### Ethereum Mainnet - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x9DeaBf7815b42Bf4E9a03EEc35a486fF74ee7459](https://etherscan.io/address/0x9DeaBf7815b42Bf4E9a03EEc35a486fF74ee7459) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x3962f6585946823440d274aD7C719B02b49DE51E](https://etherscan.io/address/0x3962f6585946823440d274aD7C719B02b49DE51E) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xf86B359035208e4529686A1825F2D5BeE38c28A8](https://etherscan.io/address/0xf86B359035208e4529686A1825F2D5BeE38c28A8) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xAE32Ca14d85311A506Bb852D49bbfB315466bA26](https://etherscan.io/address/0xAE32Ca14d85311A506Bb852D49bbfB315466bA26) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xB5Ec9706C3Be9d22326D208f491E5DEef7C8d9f0](https://etherscan.io/address/0xB5Ec9706C3Be9d22326D208f491E5DEef7C8d9f0) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xF35aB407CF28012Ba57CAF5ee2f6d6E4420253bc](https://etherscan.io/address/0xF35aB407CF28012Ba57CAF5ee2f6d6E4420253bc) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Abstract - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xc69c06c030E825EDE13F1486078Aa9a2E2AAffaf](https://abscan.org/address/0xc69c06c030E825EDE13F1486078Aa9a2E2AAffaf) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x7282d83E49363f373102d195F66649eBD6C57B9B](https://abscan.org/address/0x7282d83E49363f373102d195F66649eBD6C57B9B) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x28fCAE6bda2546C93183EeC8638691B2EB184003](https://abscan.org/address/0x28fCAE6bda2546C93183EeC8638691B2EB184003) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xAc2E42b520364940c90Ce164412Ca9BA212d014B](https://abscan.org/address/0xAc2E42b520364940c90Ce164412Ca9BA212d014B) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x2F1eB117A87217E8bE9AA96795F69c9e380686Db](https://abscan.org/address/0x2F1eB117A87217E8bE9AA96795F69c9e380686Db) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xe2C0C3e0ff10Df4485a2dcbbdd1D002a40446164](https://abscan.org/address/0xe2C0C3e0ff10Df4485a2dcbbdd1D002a40446164) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Arbitrum One - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x53F5eEB133B99C6e59108F35bCC7a116da50c5ce](https://arbiscan.io/address/0x53F5eEB133B99C6e59108F35bCC7a116da50c5ce) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x05a323a4C936fed6D02134c5f0877215CD186b51](https://arbiscan.io/address/0x05a323a4C936fed6D02134c5f0877215CD186b51) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x0dA2c7Aa93E7CD43e6b8D043Aab5b85CfDDf3818](https://arbiscan.io/address/0x0dA2c7Aa93E7CD43e6b8D043Aab5b85CfDDf3818) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xacA12cdC4DcD7063c82E69A358549ba082463608](https://arbiscan.io/address/0xacA12cdC4DcD7063c82E69A358549ba082463608) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x785Edf1e617824A78EFE76295E040B1AE06002bf](https://arbiscan.io/address/0x785Edf1e617824A78EFE76295E040B1AE06002bf) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xc9A5a0Bc2D8E217BDbdFE7486E9E72c5c3308F01](https://arbiscan.io/address/0xc9A5a0Bc2D8E217BDbdFE7486E9E72c5c3308F01) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Avalanche - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xE3826241E5EeBB3F5fEde33F9f677047674D3FBF](https://snowtrace.io/address/0xE3826241E5EeBB3F5fEde33F9f677047674D3FBF) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xc0bF14AfB95CA4C049BDc19E06a3531D8065F6Fd](https://snowtrace.io/address/0xc0bF14AfB95CA4C049BDc19E06a3531D8065F6Fd) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xfA536049652BFb5f57ba8DCFbec1B2b2Dd9803D3](https://snowtrace.io/address/0xfA536049652BFb5f57ba8DCFbec1B2b2Dd9803D3) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xcF24fb2a09227d955F8e9A12f36A26cf1ac079c6](https://snowtrace.io/address/0xcF24fb2a09227d955F8e9A12f36A26cf1ac079c6) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xaBCdF4dcDBa57a04889784A670b862540758f9E7](https://snowtrace.io/address/0xaBCdF4dcDBa57a04889784A670b862540758f9E7) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x0430ed39EA2789AcdF27b89268117EBABc8176D1](https://snowtrace.io/address/0x0430ed39EA2789AcdF27b89268117EBABc8176D1) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Base - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xF9E9eD67DD2Fab3b3ca024A2d66Fcf0764d36742](https://basescan.org/address/0xF9E9eD67DD2Fab3b3ca024A2d66Fcf0764d36742) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x4CB16D4153123A74Bc724d161050959754f378D8](https://basescan.org/address/0x4CB16D4153123A74Bc724d161050959754f378D8) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xf4937657Ed8B3f3cB379Eed47b8818eE947BEb1e](https://basescan.org/address/0xf4937657Ed8B3f3cB379Eed47b8818eE947BEb1e) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x0fF9d05E6331A43A906fE1440E0C9D0742F475A3](https://basescan.org/address/0x0fF9d05E6331A43A906fE1440E0C9D0742F475A3) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xc1c548F980669615772dadcBfEBC29937c29481A](https://basescan.org/address/0xc1c548F980669615772dadcBfEBC29937c29481A) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x58A51E5382318EeA6065BB7721eecdF4331c0B90](https://basescan.org/address/0x58A51E5382318EeA6065BB7721eecdF4331c0B90) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Blast - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupLinear | [0x9b1468d29b4A5869f00c92517c57f8656E928B93](https://blastscan.io/address/0x9b1468d29b4A5869f00c92517c57f8656E928B93) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupDynamic | [0xA705DE617673e2Fe63a4Ea0E58c26897601D32A5](https://blastscan.io/address/0xA705DE617673e2Fe63a4Ea0E58c26897601D32A5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x91FB72e5297e2728c10FDe73BdE74A4888A68570](https://blastscan.io/address/0x91FB72e5297e2728c10FDe73BdE74A4888A68570) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x5f111b49f8f8bdb4A6001701E0D330fF52D6B370](https://blastscan.io/address/0x5f111b49f8f8bdb4A6001701E0D330fF52D6B370) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xdc988d7AD6F186ea4a236f3E61A45a7851edF84E](https://blastscan.io/address/0xdc988d7AD6F186ea4a236f3E61A45a7851edF84E) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x3aBCDDa756d069Cf3c7a17410602343966EAFf27](https://blastscan.io/address/0x3aBCDDa756d069Cf3c7a17410602343966EAFf27) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### BNB Smart Chain - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xeB6d84c585bf8AEA34F05a096D6fAA3b8477D146](https://bscscan.com/address/0xeB6d84c585bf8AEA34F05a096D6fAA3b8477D146) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x88ad3B5c62A46Df953A5d428d33D70408F53C408](https://bscscan.com/address/0x88ad3B5c62A46Df953A5d428d33D70408F53C408) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xAb5f007b33EDDA56962A0fC428B15D544EA46591](https://bscscan.com/address/0xAb5f007b33EDDA56962A0fC428B15D544EA46591) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x27641f29b012d0d523EB5943011148c42c98e7F1](https://bscscan.com/address/0x27641f29b012d0d523EB5943011148c42c98e7F1) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x70998557980CB6E8E63c46810081262B6c343051](https://bscscan.com/address/0x70998557980CB6E8E63c46810081262B6c343051) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x96Aa12809CAC29Bba4944fEca1dFDC8e1704e6c1](https://bscscan.com/address/0x96Aa12809CAC29Bba4944fEca1dFDC8e1704e6c1) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Chiliz - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2](https://chiliscan.com/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xDf578C2c70A86945999c65961417057363530a1c](https://chiliscan.com/address/0xDf578C2c70A86945999c65961417057363530a1c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://chiliscan.com/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](https://chiliscan.com/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264](https://chiliscan.com/address/0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a](https://chiliscan.com/address/0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Core Dao - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xf0a7F2cCE911c298B5CB8106Db19EF1D00230710](https://scan.coredao.org/address/0xf0a7F2cCE911c298B5CB8106Db19EF1D00230710) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x98Fe0d8b2c2c05d9C6a9e635f59474Aaa0000120](https://scan.coredao.org/address/0x98Fe0d8b2c2c05d9C6a9e635f59474Aaa0000120) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x9C99EF88399bC1c1188399B39E7Cc667D78210ea](https://scan.coredao.org/address/0x9C99EF88399bC1c1188399B39E7Cc667D78210ea) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x64C734B2F1704822D8E69CAF230aE8d2eC18AA3e](https://scan.coredao.org/address/0x64C734B2F1704822D8E69CAF230aE8d2eC18AA3e) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xdE21BBFf718723E9069d8528d6Bb26c2971D58a7](https://scan.coredao.org/address/0xdE21BBFf718723E9069d8528d6Bb26c2971D58a7) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x074CC814a8114126c505F5eecFC82A400B39cA03](https://scan.coredao.org/address/0x074CC814a8114126c505F5eecFC82A400B39cA03) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Gnosis - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x555eb55cbc477Aebbe5652D25d0fEA04052d3971](https://gnosisscan.io/address/0x555eb55cbc477Aebbe5652D25d0fEA04052d3971) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xf1cAeB104AB29271463259335357D57772C90758](https://gnosisscan.io/address/0xf1cAeB104AB29271463259335357D57772C90758) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x59A4B7255A5D01247837600e7828A6F77f664b34](https://gnosisscan.io/address/0x59A4B7255A5D01247837600e7828A6F77f664b34) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xA0B5C851E3E9fED83f387f4D8847DA398Da4A8E2](https://gnosisscan.io/address/0xA0B5C851E3E9fED83f387f4D8847DA398Da4A8E2) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x0F324E5CB01ac98b2883c8ac4231aCA7EfD3e750](https://gnosisscan.io/address/0x0F324E5CB01ac98b2883c8ac4231aCA7EfD3e750) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x5f12318fc6cCa518A950e2Ee16063a6317C2a9Ef](https://gnosisscan.io/address/0x5f12318fc6cCa518A950e2Ee16063a6317C2a9Ef) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### IoTeX - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x6FcAB41e3b62d05aB4fC729586CB06Af2a2662D0](https://iotexscan.io/address/0x6FcAB41e3b62d05aB4fC729586CB06Af2a2662D0) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x84f092cf4d7d36c2d4987f672df81a39200a7146](https://iotexscan.io/address/0x84f092cf4d7d36c2d4987f672df81a39200a7146) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x179536f3289fb50076968b339C7EF0Dc0B38E3AF](https://iotexscan.io/address/0x179536f3289fb50076968b339C7EF0Dc0B38E3AF) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x28eAB88ee8a951F78e1028557D0C3fD97af61A33](https://iotexscan.io/address/0x28eAB88ee8a951F78e1028557D0C3fD97af61A33) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x711900e5f55d427cd88e5E3FCAe54Ccf02De71F4](https://iotexscan.io/address/0x711900e5f55d427cd88e5E3FCAe54Ccf02De71F4) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xf978034bb3CAB5fe88d23DB5Cb38D510485DaB90](https://iotexscan.io/address/0xf978034bb3CAB5fe88d23DB5Cb38D510485DaB90) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### LightLink - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xAa05E418Fb7851C211351C65435F1b17cbFa88Bf](https://phoenix.lightlink.io/address/0xAa05E418Fb7851C211351C65435F1b17cbFa88Bf) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x6329591464FA6721c8E1c1271e4c6C41531Aea6b](https://phoenix.lightlink.io/address/0x6329591464FA6721c8E1c1271e4c6C41531Aea6b) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x83403c6426E6D044bF3B84EC1C007Db211AaA140](https://phoenix.lightlink.io/address/0x83403c6426E6D044bF3B84EC1C007Db211AaA140) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x5881ef3c0D3eB21b1b40E13b4a69c50754bc77C7](https://phoenix.lightlink.io/address/0x5881ef3c0D3eB21b1b40E13b4a69c50754bc77C7) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x5C847244649BD74aB41f09C893aF792AD87D32aA](https://phoenix.lightlink.io/address/0x5C847244649BD74aB41f09C893aF792AD87D32aA) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x278AC15622846806BD46FBDbdB8dB8d09614173A](https://phoenix.lightlink.io/address/0x278AC15622846806BD46FBDbdB8dB8d09614173A) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Linea - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xF2E46B249cFe09c2b3A2022dc81E0bB4bE3336F1](https://lineascan.build/address/0xF2E46B249cFe09c2b3A2022dc81E0bB4bE3336F1) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xB5d39049510F47EE7f74c528105D225E42747d63](https://lineascan.build/address/0xB5d39049510F47EE7f74c528105D225E42747d63) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xC46ce4B77cBc46D17A2EceB2Cc8e2EE23D96529F](https://lineascan.build/address/0xC46ce4B77cBc46D17A2EceB2Cc8e2EE23D96529F) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x2E72F7523cFeaed6B841aCe20060E0b203c312F5](https://lineascan.build/address/0x2E72F7523cFeaed6B841aCe20060E0b203c312F5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x4259557F6665eCF5907c9019a30f3Cb009c20Ae7](https://lineascan.build/address/0x4259557F6665eCF5907c9019a30f3Cb009c20Ae7) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x35E9C3445A039B258Eb7112A5Eea259a825E8AC0](https://lineascan.build/address/0x35E9C3445A039B258Eb7112A5Eea259a825E8AC0) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Meld - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2](https://meldscan.io/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xDf578C2c70A86945999c65961417057363530a1c](https://meldscan.io/address/0xDf578C2c70A86945999c65961417057363530a1c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://meldscan.io/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](https://meldscan.io/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264](https://meldscan.io/address/0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a](https://meldscan.io/address/0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Mode - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x704552099f5aD679294D337638B9a57Fd4726F52](https://explorer.mode.network/address/0x704552099f5aD679294D337638B9a57Fd4726F52) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xD8C65Bd7CB6924EF895b2eDcA03407c652f5a2C5](https://explorer.mode.network/address/0xD8C65Bd7CB6924EF895b2eDcA03407c652f5a2C5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xBbfA51A10bE68714fa33281646B986dae9f52021](https://explorer.mode.network/address/0xBbfA51A10bE68714fa33281646B986dae9f52021) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xA1976d4bd6572B68A677037B496D806ACC2cBdB3](https://explorer.mode.network/address/0xA1976d4bd6572B68A677037B496D806ACC2cBdB3) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x641A10A2c9e0CeB94F406e1EF68b1E1da002662d](https://explorer.mode.network/address/0x641A10A2c9e0CeB94F406e1EF68b1E1da002662d) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x0Fd01Dd30F96A15dE6AfAd5627d45Ef94752460a](https://explorer.mode.network/address/0x0Fd01Dd30F96A15dE6AfAd5627d45Ef94752460a) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Morph - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x946654AB30Dd6eD10236C89f2C8B2719df653691](https://explorer.morphl2.io/address/0x946654AB30Dd6eD10236C89f2C8B2719df653691) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xAC19F4181E58efb7094e0cb4e1BB18c79F6AAdf4](https://explorer.morphl2.io/address/0xAC19F4181E58efb7094e0cb4e1BB18c79F6AAdf4) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x63B92F7E2f69877184C955E63B9D8Dff55e52e14](https://explorer.morphl2.io/address/0x63B92F7E2f69877184C955E63B9D8Dff55e52e14) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xe785101Cb228693cc3EFdCd5d637fEf6A6Ff7259](https://explorer.morphl2.io/address/0xe785101Cb228693cc3EFdCd5d637fEf6A6Ff7259) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x28D116d7e917756310986C4207eA54183fcba06A](https://explorer.morphl2.io/address/0x28D116d7e917756310986C4207eA54183fcba06A) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x5e73bb96493C10919204045fCdb639D35ad859f8](https://explorer.morphl2.io/address/0x5e73bb96493C10919204045fCdb639D35ad859f8) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Optimism - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x4994325F8D4B4A36Bd643128BEb3EC3e582192C0](https://optimistic.etherscan.io/address/0x4994325F8D4B4A36Bd643128BEb3EC3e582192C0) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x5C22471A86E9558ed9d22235dD5E0429207ccf4B](https://optimistic.etherscan.io/address/0x5C22471A86E9558ed9d22235dD5E0429207ccf4B) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x90952912a50079bef00D5F49c975058d6573aCdC](https://optimistic.etherscan.io/address/0x90952912a50079bef00D5F49c975058d6573aCdC) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x1a4837b8c668b8F7BE22Ba156419b7b823Cfd05c](https://optimistic.etherscan.io/address/0x1a4837b8c668b8F7BE22Ba156419b7b823Cfd05c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x6cd7bB0f63aFCc9F6CeDd1Bf1E3Bd4ED078CD019](https://optimistic.etherscan.io/address/0x6cd7bB0f63aFCc9F6CeDd1Bf1E3Bd4ED078CD019) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xe041629D99730b3EE4d6518097C45b4E3591992b](https://optimistic.etherscan.io/address/0xe041629D99730b3EE4d6518097C45b4E3591992b) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Polygon - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :----------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x8D4dDc187a73017a5d7Cef733841f55115B13762](https://polygonscan.com/address/0x8D4dDc187a73017a5d7Cef733841f55115B13762) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x8D87c5eddb5644D1a714F85930Ca940166e465f0](https://polygonscan.com/address/0x8D87c5eddb5644D1a714F85930Ca940166e465f0) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xBF67f0A1E847564D0eFAD475782236D3Fa7e9Ec2](https://polygonscan.com/address/0xBF67f0A1E847564D0eFAD475782236D3Fa7e9Ec2) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xf28BF9390fb57BB68386430550818D312699ED15](https://polygonscan.com/address/0xf28BF9390fb57BB68386430550818D312699ED15) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xD29EC4B9203f2d1C9Cd4Ba8c68FCFE4ECd85f6f5](https://polygonscan.com/address/0xD29EC4B9203f2d1C9Cd4Ba8c68FCFE4ECd85f6f5) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xC28872e0c1f3633EeD467907123727ac0155029D](https://polygonscan.com/address/0xC28872e0c1f3633EeD467907123727ac0155029D) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Scroll - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xAc199bFea92aa4D4C3d8A49fd463EAD99C7a6A8f](https://scrollscan.com/address/0xAc199bFea92aa4D4C3d8A49fd463EAD99C7a6A8f) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xBc5DC6D77612E636DA32af0d85Ca3179a57330fd](https://scrollscan.com/address/0xBc5DC6D77612E636DA32af0d85Ca3179a57330fd) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xb0f78dDc01D829d8b567821Eb193De8082b57D9D](https://scrollscan.com/address/0xb0f78dDc01D829d8b567821Eb193De8082b57D9D) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xA1A281BbcaED8f0A9Dcd0fe67cbC53e0993C24cb](https://scrollscan.com/address/0xA1A281BbcaED8f0A9Dcd0fe67cbC53e0993C24cb) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x4B8BF9cD3274517609e7Fe905740fa151C9aa711](https://scrollscan.com/address/0x4B8BF9cD3274517609e7Fe905740fa151C9aa711) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x344afe8ad5dBA3d55870dc398e0F53B635B2ed0d](https://scrollscan.com/address/0x344afe8ad5dBA3d55870dc398e0F53B635B2ed0d) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Superseed - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x1fA500262b352d821B4e1c933A20f2242B45383d](https://explorer.superseed.xyz/address/0x1fA500262b352d821B4e1c933A20f2242B45383d) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x251FC799344151026d19b959B8f3667416d56B88](https://explorer.superseed.xyz/address/0x251FC799344151026d19b959B8f3667416d56B88) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x91211E1760280d3f7dF2182ce4D1Fd6A1735C202](https://explorer.superseed.xyz/address/0x91211E1760280d3f7dF2182ce4D1Fd6A1735C202) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x0a6C2E6B61cf05800F9aA91494480440843d6c3c](https://explorer.superseed.xyz/address/0x0a6C2E6B61cf05800F9aA91494480440843d6c3c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xc4DE6f667435d5Ce0150e08BcEc9722C9017e90b](https://explorer.superseed.xyz/address/0xc4DE6f667435d5Ce0150e08BcEc9722C9017e90b) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xF60bEADEfbeb98C927E13C4165BCa7D85Ba32cB2](https://explorer.superseed.xyz/address/0xF60bEADEfbeb98C927E13C4165BCa7D85Ba32cB2) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Taiko Mainnet - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x238C830FA8E4ED0f0A4bc9C986BF338aEC9e38D1](https://taikoscan.io/address/0x238C830FA8E4ED0f0A4bc9C986BF338aEC9e38D1) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x5Ec0a2e88dAd09ad940Be2639c9aDb24D186989E](https://taikoscan.io/address/0x5Ec0a2e88dAd09ad940Be2639c9aDb24D186989E) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x6a619d35972578E8458E33B7d1e07b155A51585E](https://taikoscan.io/address/0x6a619d35972578E8458E33B7d1e07b155A51585E) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xBFD6048C80665792d949692CE77307e55dbb8986](https://taikoscan.io/address/0xBFD6048C80665792d949692CE77307e55dbb8986) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x65E2C9990d4CAc5E54E65c1BD625CdcC9FDd1292](https://taikoscan.io/address/0x65E2C9990d4CAc5E54E65c1BD625CdcC9FDd1292) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xd7df0b795756b60ab51a37e26f1edb7ef9e78828](https://taikoscan.io/address/0xd7df0b795756b60ab51a37e26f1edb7ef9e78828) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Tangle - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x946654AB30Dd6eD10236C89f2C8B2719df653691](https://explorer.tangle.tools/address/0x946654AB30Dd6eD10236C89f2C8B2719df653691) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xAC19F4181E58efb7094e0cb4e1BB18c79F6AAdf4](https://explorer.tangle.tools/address/0xAC19F4181E58efb7094e0cb4e1BB18c79F6AAdf4) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x63B92F7E2f69877184C955E63B9D8Dff55e52e14](https://explorer.tangle.tools/address/0x63B92F7E2f69877184C955E63B9D8Dff55e52e14) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xe785101Cb228693cc3EFdCd5d637fEf6A6Ff7259](https://explorer.tangle.tools/address/0xe785101Cb228693cc3EFdCd5d637fEf6A6Ff7259) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x28D116d7e917756310986C4207eA54183fcba06A](https://explorer.tangle.tools/address/0x28D116d7e917756310986C4207eA54183fcba06A) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x5e73bb96493C10919204045fCdb639D35ad859f8](https://explorer.tangle.tools/address/0x5e73bb96493C10919204045fCdb639D35ad859f8) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### zkSync Era - -:::note - -Unlike other EVM chains, zkSync requires the libraries to be deployed, too. Please refer to -[their docs](https://docs.zksync.io/build/developer-reference/ethereum-differences/libraries). - -::: - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xf03f4Bf48b108360bAf1597Fb8053Ebe0F5245dA](https://explorer.zksync.io/address/0xf03f4Bf48b108360bAf1597Fb8053Ebe0F5245dA) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x8cB69b514E97a904743922e1adf3D1627deeeE8D](https://explorer.zksync.io/address/0x8cB69b514E97a904743922e1adf3D1627deeeE8D) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x1fB145A47Eb9b8bf565273e137356376197b3559](https://explorer.zksync.io/address/0x1fB145A47Eb9b8bf565273e137356376197b3559) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x99BA0D464942e7166dEBb8BAaAF1192F8d4117eb](https://explorer.zksync.io/address/0x99BA0D464942e7166dEBb8BAaAF1192F8d4117eb) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| NFTSVG | [0xdCAaF1fC014BCdB5568Dc5CA8c22de4BE8829dCd](https://explorer.zksync.io/address/0xdCAaF1fC014BCdB5568Dc5CA8c22de4BE8829dCd) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SVGElements | [0x500b6f2624662b1e2E0a144ceF24117B39F09DA5](https://explorer.zksync.io/address/0x500b6f2624662b1e2E0a144ceF24117B39F09DA5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xAE1A55205A0499d6BBb0Cf0f1210641957e9cb7e](https://explorer.zksync.io/address/0xAE1A55205A0499d6BBb0Cf0f1210641957e9cb7e) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x8a84fCF962163A7E98Bf0daFD918973c846fa5C8](https://explorer.zksync.io/address/0x8a84fCF962163A7E98Bf0daFD918973c846fa5C8) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -## Testnets - -### Ethereum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x73BB6dD3f5828d60F8b3dBc8798EB10fbA2c5636](https://sepolia.etherscan.io/address/0x73BB6dD3f5828d60F8b3dBc8798EB10fbA2c5636) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x3E435560fd0a03ddF70694b35b673C25c65aBB6C](https://sepolia.etherscan.io/address/0x3E435560fd0a03ddF70694b35b673C25c65aBB6C) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x3a1beA13A8C24c0EA2b8fAE91E4b2762A59D7aF5](https://sepolia.etherscan.io/address/0x3a1beA13A8C24c0EA2b8fAE91E4b2762A59D7aF5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x56F2f7f4d15d1A9FF9d3782b6F6bB8f6fd690D33](https://sepolia.etherscan.io/address/0x56F2f7f4d15d1A9FF9d3782b6F6bB8f6fd690D33) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x04A9c14b7a000640419aD5515Db4eF4172C00E31](https://sepolia.etherscan.io/address/0x04A9c14b7a000640419aD5515Db4eF4172C00E31) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x56E9180A8d2C35c99F2F8a1A5Ab8aBe79E876E8c](https://sepolia.etherscan.io/address/0x56E9180A8d2C35c99F2F8a1A5Ab8aBe79E876E8c) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Arbitrum Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x8127E8081C22807c8a786Af1e1b174939577144A](https://sepolia.arbiscan.io/address/0x8127E8081C22807c8a786Af1e1b174939577144A) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x9D1C257d9bc09E6E6B8E7e7c2496C12000f55457](https://sepolia.arbiscan.io/address/0x9D1C257d9bc09E6E6B8E7e7c2496C12000f55457) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xaff2efFCF38Ea4A92E0cC5D7c48456C53358fE1a](https://sepolia.arbiscan.io/address/0xaff2efFCF38Ea4A92E0cC5D7c48456C53358fE1a) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x46AEd4FE32aE1306d8073FE54A4E844e10a3ca16](https://sepolia.arbiscan.io/address/0x46AEd4FE32aE1306d8073FE54A4E844e10a3ca16) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xC1FD380b3B0fF989C259D0b45B97F9663B638aA4](https://sepolia.arbiscan.io/address/0xC1FD380b3B0fF989C259D0b45B97F9663B638aA4) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xa11561F9e418f2C431B411E1CA22FD3F85D4c831](https://sepolia.arbiscan.io/address/0xa11561F9e418f2C431B411E1CA22FD3F85D4c831) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Base Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x6DCB73E5F7e8e70bE20b3B9CF50E3be4625A91C3](https://sepolia.basescan.org/address/0x6DCB73E5F7e8e70bE20b3B9CF50E3be4625A91C3) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xFE7fc0Bbde84C239C0aB89111D617dC7cc58049f](https://sepolia.basescan.org/address/0xFE7fc0Bbde84C239C0aB89111D617dC7cc58049f) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xb8c724df3eC8f2Bf8fA808dF2cB5dbab22f3E68c](https://sepolia.basescan.org/address/0xb8c724df3eC8f2Bf8fA808dF2cB5dbab22f3E68c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x474dFf3Cdd6489523947bf08D538F56d07Ca699e](https://sepolia.basescan.org/address/0x474dFf3Cdd6489523947bf08D538F56d07Ca699e) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x23d0B7691F4Ca0E5477132a7C7F54fdCEd1814B9](https://sepolia.basescan.org/address/0x23d0B7691F4Ca0E5477132a7C7F54fdCEd1814B9) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x899a05feb160fe912f621733A1d0b39C1446B3eB](https://sepolia.basescan.org/address/0x899a05feb160fe912f621733A1d0b39C1446B3eB) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Berachain Bartio - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x1EA807A7CeAd9547d1dB14B4249b215C01c0B4D4](https://bartio.beratrail.io/address/0x1EA807A7CeAd9547d1dB14B4249b215C01c0B4D4) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xfB603381EdfaF3A67e8332c14f9453E073A1BeF6](https://bartio.beratrail.io/address/0xfB603381EdfaF3A67e8332c14f9453E073A1BeF6) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xE92893Ee49b6Ae9e468B332cc5A3FdEA8cb7FEBf](https://bartio.beratrail.io/address/0xE92893Ee49b6Ae9e468B332cc5A3FdEA8cb7FEBf) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x5A67965B0f8d8202121b965a4ad977706329e607](https://bartio.beratrail.io/address/0x5A67965B0f8d8202121b965a4ad977706329e607) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xf43Df76b7533245da6F194a58Cb82533479b2100](https://bartio.beratrail.io/address/0xf43Df76b7533245da6F194a58Cb82533479b2100) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x5ED2465370adBC11D6e651002d70C476fd9106Cb](https://bartio.beratrail.io/address/0x5ED2465370adBC11D6e651002d70C476fd9106Cb) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Blast Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x9dA09f4887FD3a78Ea237F74a456a82e4301F3D4](https://sepolia.blastscan.io/address/0x9dA09f4887FD3a78Ea237F74a456a82e4301F3D4) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x07f1386803ab6e1D8b6AABD50A9772E45bEA08f1](https://sepolia.blastscan.io/address/0x07f1386803ab6e1D8b6AABD50A9772E45bEA08f1) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x7eB79ab3652713bBE989e7A0dCA61ba484CAED85](https://sepolia.blastscan.io/address/0x7eB79ab3652713bBE989e7A0dCA61ba484CAED85) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x93c0c4a57573C7056D7d63B536e33E28FB3ec2EE](https://sepolia.blastscan.io/address/0x93c0c4a57573C7056D7d63B536e33E28FB3ec2EE) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xAC83E6aDA41a9251516601d8D5D0188466044Cc1](https://sepolia.blastscan.io/address/0xAC83E6aDA41a9251516601d8D5D0188466044Cc1) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xb9fCF1f73DD941Dd1C589fCf8545E60133EE5eC2](https://sepolia.blastscan.io/address/0xb9fCF1f73DD941Dd1C589fCf8545E60133EE5eC2) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Linea Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x95D29708be647BDD8dA0bdF82B84eB5f42d45918](https://sepolia.lineascan.build/address/0x95D29708be647BDD8dA0bdF82B84eB5f42d45918) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x435F33C21B9Ea8BF207785616Bb28C46eDeD7366](https://sepolia.lineascan.build/address/0x435F33C21B9Ea8BF207785616Bb28C46eDeD7366) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x5A52E9F4dFcdBcd68E50386D484378718167aB60](https://sepolia.lineascan.build/address/0x5A52E9F4dFcdBcd68E50386D484378718167aB60) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x237f114a9cF62b87383684529d889DdfEd917f0c](https://sepolia.lineascan.build/address/0x237f114a9cF62b87383684529d889DdfEd917f0c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x8224eb5D7d76B2D7Df43b868D875E79B11500eA8](https://sepolia.lineascan.build/address/0x8224eb5D7d76B2D7Df43b868D875E79B11500eA8) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x83Dd52FCA44E069020b58155b761A590F12B59d3](https://sepolia.lineascan.build/address/0x83Dd52FCA44E069020b58155b761A590F12B59d3) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Mode Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x5cD39Ec69F0Ed62733d0DA3E083E451334bA1f70](https://sepolia.explorer.mode.network/address/0x5cD39Ec69F0Ed62733d0DA3E083E451334bA1f70) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x61861e4C72EE2F6967C852FE79Eac0E7a9C4f466](https://sepolia.explorer.mode.network/address/0x61861e4C72EE2F6967C852FE79Eac0E7a9C4f466) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xc51346d1FD003E536530584eb4c8974BB279712D](https://sepolia.explorer.mode.network/address/0xc51346d1FD003E536530584eb4c8974BB279712D) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0xD3c856A7333c264475aD87F9E6f84Ef376AE250D](https://sepolia.explorer.mode.network/address/0xD3c856A7333c264475aD87F9E6f84Ef376AE250D) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xece83740834694A6E204825e5bcD8774F26a2665](https://sepolia.explorer.mode.network/address/0xece83740834694A6E204825e5bcD8774F26a2665) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x900de6cC1021afa13f41e1067bEE681BbD661C69](https://sepolia.explorer.mode.network/address/0x900de6cC1021afa13f41e1067bEE681BbD661C69) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Morph Holesky - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :----------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x36477f8FEf1fC3B0fe7F24b8F6d9561f0BeC30e7](https://explorer-holesky.morphl2.io/address/0x36477f8FEf1fC3B0fe7F24b8F6d9561f0BeC30e7) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x4b4126036726085636BC2A4788a448d5C26705E4](https://explorer-holesky.morphl2.io/address/0x4b4126036726085636BC2A4788a448d5C26705E4) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x6AF155530D6360E789deD0CF88219f855CCb158F](https://explorer-holesky.morphl2.io/address/0x6AF155530D6360E789deD0CF88219f855CCb158F) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x33BE6a7810B464B913052EC0436A067de25C164c](https://explorer-holesky.morphl2.io/address/0x33BE6a7810B464B913052EC0436A067de25C164c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :----------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x728Ec8260Ea1115252D33c0D563d78CA18990dE4](https://explorer-holesky.morphl2.io/address/0x728Ec8260Ea1115252D33c0D563d78CA18990dE4) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x4B5F6B967dC61c2B39fa233092745B460eA1b433](https://explorer-holesky.morphl2.io/address/0x4B5F6B967dC61c2B39fa233092745B460eA1b433) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Optimism Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x89EC3830040dec63E9dF0C904d649fda4d49DF16](https://sepolia-optimistic.etherscan.io/address/0x89EC3830040dec63E9dF0C904d649fda4d49DF16) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x0a881bbd71a21710D56Ff1931EC8189d94019D60](https://sepolia-optimistic.etherscan.io/address/0x0a881bbd71a21710D56Ff1931EC8189d94019D60) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xb971A93608413C54F407eE86C7c15b295E0004bB](https://sepolia-optimistic.etherscan.io/address/0xb971A93608413C54F407eE86C7c15b295E0004bB) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x48F8C05C721E27FA82aD6c8ddB1a88eF43864A9A](https://sepolia-optimistic.etherscan.io/address/0x48F8C05C721E27FA82aD6c8ddB1a88eF43864A9A) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0xC1FD380b3B0fF989C259D0b45B97F9663B638aA4](https://sepolia-optimistic.etherscan.io/address/0xd9dD971D4800100aED0BfF3535aB116D4Be5c420) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0xa11561F9e418f2C431B411E1CA22FD3F85D4c831](https://sepolia-optimistic.etherscan.io/address/0x6CBe6e298A9354306e6ee65f63FF85CFA7062a39) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### SKALE Testnet - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xc6a9b1ac31ea28c02401314e4ecd953d93b5977e](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0xc6a9b1ac31ea28c02401314e4ecd953d93b5977e) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xb5a5fdfe806faff23c9596a507b0f645fa70a860](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0xb5a5fDfE806faFf23c9596a507b0f645fa70a860) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0x0ab60a33b84c89ed6bf86599d070edcced198892](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0x0ab60A33B84C89ed6bF86599d070eDCceD198892) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x18880a232B54FFC4db3e692E579F2659fd1F40fd](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0x18880a232B54FFC4db3e692E579F2659fd1F40fd) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x00a7B4E4e9Fc0feb414173A12d023c909CedE703](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0x00a7B4E4e9Fc0feb414173A12d023c909CedE703) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x8A72F6203bEa9dfF4F817250E577cf722350D012](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0x8A72F6203bEa9dfF4F817250E577cf722350D012) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Superseed Sepolia - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2](https://sepolia-explorer.superseed.xyz/address/0xCff4a803b0Bf55dD1BE38Fb96088478F3D2eeCF2) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0xDf578C2c70A86945999c65961417057363530a1c](https://sepolia-explorer.superseed.xyz/address/0xDf578C2c70A86945999c65961417057363530a1c) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xcb099EfC90e88690e287259410B9AE63e1658CC6](https://sepolia-explorer.superseed.xyz/address/0xcb099EfC90e88690e287259410B9AE63e1658CC6) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x2De92156000269fa2fde7544F10f01E8cBC80fFa](https://sepolia-explorer.superseed.xyz/address/0x2De92156000269fa2fde7544F10f01E8cBC80fFa) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264](https://sepolia-explorer.superseed.xyz/address/0x0eDA15D606733f6CDe9DB67263E546bfcDDe9264) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a](https://sepolia-explorer.superseed.xyz/address/0x92FC05e49c27884d554D98a5C01Ff0894a9DC29a) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### Taiko Hekla - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :-------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0x01565a1298d631302c114E13C431c9345ae5532e](https://explorer.hekla.taiko.xyz/address/0x01565a1298d631302c114E13C431c9345ae5532e) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x640376B26E5f57dCD385b394a24c91F4C60E4fAc](https://explorer.hekla.taiko.xyz/address/0x640376B26E5f57dCD385b394a24c91F4C60E4fAc) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xd040fa437021F771C307178F06183bffC36cb4A5](https://explorer.hekla.taiko.xyz/address/0xd040fa437021F771C307178F06183bffC36cb4A5) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x49Fd46F7d897778205c00D5c1D943fCDc26Ed9E8](https://explorer.hekla.taiko.xyz/address/0x49Fd46F7d897778205c00D5c1D943fCDc26Ed9E8) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x6C6a4Ef6C0C1318C9FD60b5084B68E04FB5e9Db9](https://explorer.hekla.taiko.xyz/address/0x6C6a4Ef6C0C1318C9FD60b5084B68E04FB5e9Db9) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x4F0d64365EfA9D6D1B88FfC387Ce02e4A71d9f9f](https://explorer.hekla.taiko.xyz/address/0x4F0d64365EfA9D6D1B88FfC387Ce02e4A71d9f9f) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | - -### zkSync Sepolia - -:::note - -Unlike other EVM chains, zkSync requires the libraries to be deployed, too. Please refer to -[their docs](https://docs.zksync.io/build/developer-reference/ethereum-differences/libraries). - -::: - -#### Core - -| Contract | Address | Deployment | -| :---------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------- | -| SablierV2LockupDynamic | [0xc4311a5913953162111bF75530f7BB14ec24e014](https://sepolia.explorer.zksync.io/address/0xc4311a5913953162111bF75530f7BB14ec24e014) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupLinear | [0x43864C567b89FA5fEE8010f92d4473Bf19169BBA](https://sepolia.explorer.zksync.io/address/0x43864C567b89FA5fEE8010f92d4473Bf19169BBA) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2LockupTranched | [0xF6e869b73E20b812dcf0E850AA8822F74f67f670](https://sepolia.explorer.zksync.io/address/0xF6e869b73E20b812dcf0E850AA8822F74f67f670) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SablierV2NFTDescriptor | [0x477DDC91a7e13CBaC01c06737abF96d50ECa7961](https://sepolia.explorer.zksync.io/address/0x477DDC91a7e13CBaC01c06737abF96d50ECa7961) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| NFTSVG | [0x622e3bfA60486Fc7319cA370BfB81E713fd10c0f](https://sepolia.explorer.zksync.io/address/0x622e3bfA60486Fc7319cA370BfB81E713fd10c0f) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | -| SVGElements | [0x41602e7D355A15b76D43F84183831836eC498678](https://sepolia.explorer.zksync.io/address/0x41602e7D355A15b76D43F84183831836eC498678) | [core-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/core) | - -#### Periphery - -| Contract | Address | Deployment | -| :--------------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | -| SablierV2BatchLockup | [0x1D68417ff71855Eb0237Ff03a8FfF02Ef67e4AFb](https://sepolia.explorer.zksync.io/address/0x1D68417ff71855Eb0237Ff03a8FfF02Ef67e4AFb) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | -| SablierV2MerkleLockupFactory | [0x2CEf8C06dDF7a1440Ad2561c53821e43adDbfA31](https://sepolia.explorer.zksync.io/address/0x2CEf8C06dDF7a1440Ad2561c53821e43adDbfA31) | [periphery-v1.2.0](https://github.com/sablier-labs/deployments/blob/main/lockup/v1.2.0/periphery) | diff --git a/docs/guides/lockup/previous-deployments/v1.2.mdx b/docs/guides/lockup/previous-deployments/v1.2.mdx new file mode 100644 index 00000000..8ddd2e19 --- /dev/null +++ b/docs/guides/lockup/previous-deployments/v1.2.mdx @@ -0,0 +1,29 @@ +--- +id: "v1.2" +sidebar_position: 1 +title: "v1.2" +--- + +import DeploymentsV1_2 from "@site/src/autogen/lockup/TableDeploymentsV1.2.mdx"; + +# Lockup v1.2 + +This section contains the deployment addresses for the v1.2 release of [@sablier/v2-core@1.2.0][v2-core] and +[@sablier/v2-periphery@1.2.0][v2-periphery]. + +[v2-core]: https://npmjs.com/package/@sablier/v2-core/v/1.2.0 +[v2-periphery]: https://npmjs.com/package/@sablier/v2-periphery/v/1.2.0 + +A few noteworthy details about the deployments: + +- The addresses are final +- All contracts are non-upgradeable +- The source code is verified on Etherscan across all chains + +:::info + +This is an outdated version of the Lockup protocol. See the latest version [here](/guides/lockup/deployments). + +::: + + diff --git a/docs/reference/01-overview.md b/docs/reference/01-overview.md index 2f3d7ee0..86536a8a 100644 --- a/docs/reference/01-overview.md +++ b/docs/reference/01-overview.md @@ -49,8 +49,8 @@ Creates and manages Lockup streams with three different streaming functions. > [**Merkle Airdrops Source Code**](https://github.com/sablier-labs/airdrops/tree/release) The Merkle Airdrops repo is a collection of contracts to create various kinds of airdrop campaigns. Some of these -campaigns make use of the Lockup protocol to create what we call [Airstreams](/concepts/merkle-airdrops). This repo -consists of airdrops related contracts such as MerkleFactory, MerkleInstant, MerkleLL, and MerkleLT. +campaigns make use of the Lockup protocol to create what we call [Airstreams](/concepts/airdrops). This repo consists of +airdrops related contracts such as MerkleFactory, MerkleInstant, MerkleLL, and MerkleLT. ### MerkleFactory diff --git a/docs/snippets/Deployment.mdx b/docs/snippets/Deployment.mdx deleted file mode 100644 index 0f265525..00000000 --- a/docs/snippets/Deployment.mdx +++ /dev/null @@ -1,24 +0,0 @@ -{/* eslint-disable react/prop-types */} - -import Link from "@docusaurus/Link"; - -export default function Deployment({ protocol }) { - if (!protocol) { - return null; - } - -return ( - - <> -In the code above, the contract addresses are hard-coded for demonstration purposes. However, in production, you would -likely use input parameters to allow flexibility in changing the addresses. - -
    -
    - -Also, these addresses are deployed on Ethereum Sepolia. If you need to work with a different chain, {protocol} addresses -can be obtained from the {protocol} Deployments -page. - - -)} diff --git a/docs/snippets/DeprecatedEndpoints.mdx b/docs/snippets/DeprecatedEndpoints.mdx deleted file mode 100644 index 5b9801e5..00000000 --- a/docs/snippets/DeprecatedEndpoints.mdx +++ /dev/null @@ -1,6 +0,0 @@ -:::important - -The following endpoints were deprecated on February 3, 2025, so they might return outdated data if queried now. Please -use our latest endpoints to query up-to-date data for the Sablier Protocol. - -::: diff --git a/docs/snippets/DeprecatedSubgraphs.mdx b/docs/snippets/DeprecatedSubgraphs.mdx deleted file mode 100644 index f6a161f5..00000000 --- a/docs/snippets/DeprecatedSubgraphs.mdx +++ /dev/null @@ -1,21 +0,0 @@ -{/* eslint-disable react/prop-types */} - -import Link from "@docusaurus/Link"; -import Admonition from "@theme/Admonition"; - -export default function DeprecatedSubgraphs({ protocol }) { - if (!protocol) { - return null; - } - -return ( - - - - In February 2025, we deprecated the `sablier-v2-*` subgraphs endpoints. They will remain available, but - they will not track the latest versions of the Sablier Protocol. If you need to use the deprecated endpoints, head over - to the Previous Endpoints section. - - - -)} diff --git a/docs/snippets/EnvioEndpoints.mdx b/docs/snippets/EnvioEndpoints.mdx deleted file mode 100644 index 429c1cc6..00000000 --- a/docs/snippets/EnvioEndpoints.mdx +++ /dev/null @@ -1,9 +0,0 @@ -"All Chains" means most of the chains supported by Sablier, e.g., Ethereum Mainnet, Optimism, Polygon. The full list can -be found [here](https://github.com/sablier-labs/indexers/blob/main/packages/constants/src). - -:::tip Unified Endpoint - -As you can see, Envio offers a single API endpoint that aggregates data across all chains. This approach differs from -other indexers like The Graph, which require separate subgraphs for each chain where Sablier is deployed. - -::: diff --git a/docs/snippets/TheGraphEndpoints.mdx b/docs/snippets/TheGraphEndpoints.mdx deleted file mode 100644 index 5692785e..00000000 --- a/docs/snippets/TheGraphEndpoints.mdx +++ /dev/null @@ -1,16 +0,0 @@ -The Decentralized Network subgraphs operate on The Graph Network, so the links in the table below contain a placeholder -for an API key. Here's an example: - -```text -https://gateway.thegraph.com/api/API_KEY/subgraphs/id/AvDAMYYHGaEwn9F9585uqq6MM5CfvRtYcb7KjK7LKPCt -``` - -You have to replace the `API_KEY` placeholder with your own API key. To create your API key, check out -[this guide](https://thegraph.com/docs/en/studio/managing-api-keys/). - -:::info - -If you don't see your chain in this table, it means that there is no subgraph available for it. You can use the Envio -indexer instead. - -::: diff --git a/docs/support/02-technical-guides.mdx b/docs/support/02-technical-guides.mdx index 294b9c72..2d7066b3 100644 --- a/docs/support/02-technical-guides.mdx +++ b/docs/support/02-technical-guides.mdx @@ -17,9 +17,9 @@ Hands-on guides for app-specific features: - [Lockup Stream Management](/guides/lockup/examples/stream-management/withdraw) - And more... -## Guides for Subgraphs +## Guides for Indexers -See the dedicated APIs [page](/api/overview). +See the dedicated [API guides](/api/overview). -- [Popular subgraph queries](/api/lockup/the-graph/queries) -- [Merkle tree management](/api/airdrops/merkle-api/examples) for airdrops +- [Getting Started](/api/getting-started) +- [Lockup Indexer](/api/lockup/indexers) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 2d7e0cde..85d35a1b 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -1,238 +1,35 @@ -import type * as Preset from "@docusaurus/preset-classic"; -import type { Config } from "@docusaurus/types"; -import { themes as prismThemes } from "prism-react-renderer"; -import rehypeKatex from "rehype-katex"; -import remarkGfm from "remark-gfm"; -import remarkMath from "remark-math"; +import { type Config } from "@docusaurus/types"; +import { plugins } from "./config/plugins"; +import { presets } from "./config/presets"; +import { themeConfig } from "./config/theme-config"; const config: Config = { baseUrl: "/", favicon: "img/favicon.ico", + // Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future + future: { + experimental_faster: true, + v4: true, // Improve compatibility with the upcoming Docusaurus v4 + }, markdown: { format: "detect", mermaid: true, }, - onBrokenLinks: "warn", - onBrokenMarkdownLinks: "warn", + onBrokenLinks: "throw", + onBrokenMarkdownLinks: "throw", organizationName: "sablier-labs", + plugins, + presets, projectName: "sablier-docs", - tagline: "Documentation and guides for Sablier", - title: "Sablier Docs | Sablier", - url: "https://docs.sablier.com", - presets: [ - [ - "classic", - { - docs: { - editUrl: "https://github.com/sablier-labs/docs/blob/main/", - rehypePlugins: [rehypeKatex], - routeBasePath: "/", // Serve the docs at the site's root - remarkPlugins: [remarkGfm, remarkMath], - sidebarPath: require.resolve("./sidebars.js"), - }, - theme: { - customCss: [require.resolve("./src/css/sablier.css"), require.resolve("./src/css/custom.css")], - }, - } satisfies Preset.Options, - ], - ], - plugins: [ - [ - "@docusaurus/plugin-client-redirects", - // Note: these are ordered alphabetically, please keep them that way - { - redirects: [ - { - from: "/api", - to: "/api/overview", - }, - { - from: "/api/airdrops/the-graph", - to: "/api/airdrops/the-graph/entities", - }, - { - from: "/api/indexers/protocol", - to: "/api/lockup/envio/similarities", - }, - { - from: "/api/lockup/the-graph", - to: "/api/lockup/the-graph/entities", - }, - { - from: "/api/merkle-api/intro", - to: "/api/airdrops/merkle-api/overview", - }, - { - from: "/api/subgraphs/endpoints", - to: "/api/lockup/endpoints", - }, - { - from: "/api/subgraphs/merkle", - to: "/api/airdrops/the-graph/entities", - }, - { - from: "/api/subgraphs/overview", - to: "/api/overview", - }, - { - from: "/api/subgraphs/protocol", - to: "/api/lockup/the-graph/entities", - }, - { - from: "/apps", - to: "/apps/features/overview", - }, - { - from: "/apps/csv-support", - to: "/apps/guides/csv-support", - }, - { - from: "/apps/features", - to: "/apps/features/vesting", - }, - { - from: "/apps/features/airstreams", - to: "/apps/features/airdrops", - }, - { - from: "/apps/features/general", - to: "/apps/features/overview", - }, - { - from: "/apps/features/streams", - to: "/apps/features/vesting", - }, - { - from: "/apps/overview", - to: "/apps/features/overview", - }, - { - from: "/apps/support/how-to", - to: "/support/how-to", - }, - { - from: "/apps/url-schemes", - to: "/apps/guides/url-schemes", - }, - // Lockup redirects from old docs (until Dec 2024) - { - from: "/concepts/protocol/fees", - to: "/concepts/fees", - }, - { - from: "/concepts/protocol/nft", - to: "/concepts/nft", - }, - { - from: "/concepts/protocol/stream-types", - to: "/concepts/lockup/stream-shapes", - }, - { - from: "/concepts/protocol/streaming", - to: "/concepts/streaming", - }, - { - from: "/concepts/protocol/transferability", - to: "/concepts/transferability", - }, - { - from: "/concepts/sablier-protocol", - to: "/concepts/what-is-sablier", - }, - { - from: "/contracts/v2/deployments/v2.0", - to: "/guides/lockup/previous-deployments/v1.0", - }, - { - from: "/contracts/v2/deployments/v2.1", - to: "/guides/lockup/previous-deployments/v1.1", - }, - { - from: "/contracts/v2/guides", - to: "/guides/lockup/overview", - }, - { - from: "/contracts/v2/reference/overview", - to: "/reference/overview", - }, - { - from: "/contracts/v2/security", - to: "/concepts/security", - }, - { - from: "/csv", - to: "/apps/guides/csv-support", - }, - // Legacy redirects - { - from: "/protocol/faq/basics", - to: "/concepts/what-is-sablier", - }, - { - from: "/protocol/guides/chains", - to: "/guides/legacy/overview", - }, - { - from: "/protocol/guides/getting-started", - to: "/guides/legacy/overview", - }, - { - from: "/protocol/introduction", - to: "/concepts/what-is-sablier", - }, - { - from: "/protocol/subgraphs/endpoints", - to: "/api/overview", - }, - { - from: "/contracts/v1/deployments", - to: "/guides/legacy/deployments", - }, - { - from: "/contracts/v1/guides/getting-started", - to: "/guides/legacy/overview", - }, - { - from: "/contracts/v1/overview", - to: "/guides/legacy/overview", - }, - ], - createRedirects(existingPath) { - const redirects = []; - if (existingPath.startsWith("/concepts/lockup/")) { - // Redirect /concepts/protocol/** to /concepts/lockup/** - redirects.push(existingPath.replace("/concepts/lockup/", "/concepts/protocol/")); - } else if (existingPath.startsWith("/guides/legacy/")) { - // Redirect /contracts/v1/guides/** to /guides/legacy/** - redirects.push(existingPath.replace("/guides/legacy/", "/contracts/v1/guides/")); - } else if (existingPath.startsWith("/reference/lockup/")) { - // Redirect /contracts/v2/reference/** to /reference/lockup/** - redirects.push(existingPath.replace("/reference/lockup/", "/contracts/v2/reference/")); - } else if (existingPath.startsWith("/reference/legacy/")) { - // Redirect /contracts/v1/** to /reference/legacy/** - redirects.push(existingPath.replace("/reference/legacy/", "/contracts/v1/")); - } else if (existingPath.startsWith("/guides/lockup/examples/")) { - // Redirect /contracts/v2/guides/** to /guides/lockup/examples/** - redirects.push(existingPath.replace("/guides/lockup/examples/", "/contracts/v2/guides/")); - } - return redirects; - }, - }, - ], - [ - "vercel-analytics", - { - mode: "auto", - }, - ], - ], scripts: [ { - src: "/js/crisp-chat.js", async: false, + src: "/js/crisp-chat.js", }, ], + staticDirectories: ["static"], stylesheets: [ + // See https://docusaurus.io/docs/markdown-features/math-equations { crossorigin: "anonymous", href: "https://cdn.jsdelivr.net/npm/katex@0.13.24/dist/katex.min.css", @@ -240,180 +37,11 @@ const config: Config = { type: "text/css", }, ], - staticDirectories: ["static"], + tagline: "Documentation and guides for Sablier", + themeConfig, themes: ["@docusaurus/theme-mermaid", "docusaurus-theme-github-codeblock"], - themeConfig: { - algolia: { - appId: "9L7N2RKHWE", - apiKey: "4fc960889335dad720b725a02667d46a", - indexName: "sablierdocs", - }, - codeblock: { - showGithubLink: false, - }, - colorMode: { - // "light" | "dark" - defaultMode: "dark", - - // Support multiple color modes. - disableSwitch: false, - - // Whether we should use the `prefers-color-scheme media-query` using user system preferences, instead of the - // hard-coded `defaultMode`. - respectPrefersColorScheme: true, - }, - footer: { - links: [ - { - title: "Company", - items: [ - { - label: "About", - href: "https://sablierlabs.co.uk", - }, - { - label: "Risk Notice", - href: "https://files.sablier.com/risk-notice.pdf", - }, - { - label: "Terms of Service", - href: "https://files.sablier.com/terms-of-service.pdf", - }, - { - label: "Privacy Policy", - href: "https://files.sablier.com/privacy-policy.pdf", - }, - ], - }, - { - title: "Community", - items: [ - { - label: "Twitter", - href: "https://twitter.com/Sablier", - }, - { - label: "Discord", - href: "https://discord.sablier.com", - }, - { - label: "Blog", - href: "https://blog.sablier.com", - }, - { - label: "Branding", - href: "https://github.com/sablier-labs/branding", - }, - ], - }, - { - title: "Developers", - items: [ - { - label: "Lockup Contracts", - href: "https://github.com/sablier-labs/lockup", - }, - { - label: "Lockup Integration Template", - href: "https://github.com/sablier-labs/lockup-integration-template", - }, - { - label: "Flow Contracts", - href: "https://github.com/sablier-labs/flow", - }, - { - label: "Flow Integration Template", - href: "https://github.com/sablier-labs/flow-integration-template", - }, - { - label: "Subgraphs", - href: "https://github.com/sablier-labs/indexers", - }, - ], - }, - ], - style: "dark", - }, - image: "img/open-graph.png", - mermaid: { - theme: { light: "neutral", dark: "dark" }, - }, - metadata: [ - { - name: "keywords", - content: - "blockchain, DAO, decentralized finance, defi, docs, Ethereum, foundry, money streaming, NFT, open source, payments, payroll, Sablier, Safe, smart contracts, solidity, token distribution, token streaming, vesting, web3", - }, - ], - navbar: { - items: [ - { - label: "Concepts", - position: "left", - to: "/concepts/what-is-sablier", - activeBasePath: "/concepts", - }, - { - label: "Guides", - position: "left", - to: "/guides/lockup/overview", - activeBasePath: "/guides", - }, - { - label: "References", - position: "left", - to: "/reference/overview", - activeBasePath: "/reference", - }, - { - label: "APIs", - position: "left", - to: "/api/overview", - activeBasePath: "/api", - }, - { - label: "Apps", - position: "left", - to: "/apps/features/overview", - activeBasePath: "/apps", - }, - - { - label: "Support", - position: "left", - to: "/support/faq", - activeBasePath: "/support", - }, - { - label: "Discord", - position: "right", - to: "https://discord.sablier.com", - }, - { - label: "GitHub", - position: "right", - to: "https://github.com/sablier-labs", - }, - { - label: "Links", - position: "right", - to: "https://linktr.ee/SablierLabs", - }, - ], - logo: { - alt: "Sablier Hourglass", - height: "20", - src: "img/icon.svg", - width: "20", - }, - title: "Sablier Docs", - }, - prism: { - additionalLanguages: ["solidity"], - darkTheme: prismThemes.palenight, - theme: prismThemes.github, - }, - } satisfies Preset.ThemeConfig, + title: "Sablier Docs", + url: "https://docs.sablier.com", }; export default config; diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000..f41d8dcb --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,22 @@ +import { fileURLToPath } from "node:url"; +import { includeIgnoreFile } from "@eslint/compat"; +import { defineConfig, globalIgnores } from "eslint/config"; +import * as mdx from "eslint-plugin-mdx"; + +const gitignorePath = fileURLToPath(new URL(".gitignore", import.meta.url)); + +/** @type { import("eslint").Linter.Config[] } */ +export default defineConfig([ + globalIgnores(["**/*.{js,jsx,ts,tsx}", "**/graphql/envio/**/*.mdx", "**/graphql/the-graph/**/*.mdx"]), + includeIgnoreFile(gitignorePath, "Imported .gitignore patterns"), + { + ...mdx.flat, + files: ["**/*.{md,mdx}"], + processor: mdx.createRemarkProcessor({ + lintCodeBlocks: true, + }), + rules: { + "no-unused-expressions": "off", + } + }, +]); diff --git a/formatter.js b/formatter.js deleted file mode 100644 index 77165e42..00000000 --- a/formatter.js +++ /dev/null @@ -1,12 +0,0 @@ -import fs from "fs/promises"; - -async function formatGasBenchmark(filePath) { - const markdownContent = await fs.readFile(filePath, "utf8"); - const formattedContent = markdownContent.replace(/(? { - return parseInt(match).toLocaleString("en-US"); - }); - await fs.writeFile(filePath, formattedContent); -} - -formatGasBenchmark("docs/guides/lockup/04-gas-benchmarks.md"); -formatGasBenchmark("docs/guides/flow/04-gas-benchmarks.md"); diff --git a/justfile b/justfile new file mode 100644 index 00000000..400e0484 --- /dev/null +++ b/justfile @@ -0,0 +1,96 @@ +# See https://github.com/sablier-labs/devkit/blob/main/just/base.just +import "./node_modules/@sablier/devkit/just/base.just" + +# ---------------------------------------------------------------------------- # +# RECIPES # +# ---------------------------------------------------------------------------- # + +# Show available commands +default: + @just --list + +# Build the documentation site +build: autogen + bun docusaurus build + +# Remove build files +@clean: + bun docusaurus clear + bunx del-cli src/autogen/**/*.mdx + +# Deploy website to Vercel +deploy: + bun vercel pull --environment=production --token=$VERCEL_TOKEN --yes + bun vercel build --prod --token=$VERCEL_TOKEN + bun vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN + +# Check code with ESLint +eslint-check: + bun eslint --cache . +alias ec := eslint-check + +# Fix code with ESLint +eslint-write: + bun eslint --cache --fix . +alias ew := eslint-write + +# Run all code checks +full-check: biome-check prettier-check eslint-check tsc-check + +# Run all code fixes +full-write: biome-write prettier-write eslint-write + +# Serve built site +serve: + bun docusaurus serve + +# Setup Husky git hooks +setup: + bun husky + +# Start development server with autogen +start: autogen + bun docusaurus start + +# Run Jest tests +test: + bun jest +alias t := test + +# ---------------------------------------------------------------------------- # +# RECIPES: AUTOGEN # +# ---------------------------------------------------------------------------- # + +# Run all autogen commands with overwrite +[group("autogen")] +autogen: + just cli autogen --overwrite + +# Generate deployment documentation +[group("autogen")] +autogen-deployments: + just cli deployments --overwrite + +# Generate GraphQL schema documentation +[group("autogen")] +@autogen-graphql vendor="all" protocol="all": + just cli autogen graphql --vendor {{ vendor }} --protocol {{ protocol }} + +# Generate indexer documentation +[group("autogen")] +autogen-indexers: + just cli indexers --overwrite + +# Generate reference documentation +[group("autogen")] +autogen-reference: + bash cli/autogen-reference.sh + +# ---------------------------------------------------------------------------- # +# RECIPES: HELPERS # +# ---------------------------------------------------------------------------- # + +# Helper to run CLI commands through the main entry point +[private] +@cli *args: + bun run cli/index.ts {{ args }} diff --git a/package.json b/package.json index 45a13b7e..374442fd 100644 --- a/package.json +++ b/package.json @@ -21,47 +21,56 @@ "url": "https://github.com/sablier-labs/docs/issues" }, "dependencies": { - "@algolia/client-search": "^4.24", + "@algolia/client-search": "^5.27", "@cookbookdev/docsbot": "^4.25", "@docusaurus/core": "^3.8", + "@docusaurus/faster": "^3.8.1", "@docusaurus/plugin-client-redirects": "^3.8", "@docusaurus/plugin-vercel-analytics": "^3.8", "@docusaurus/preset-classic": "^3.8", - "@docusaurus/theme-classic": "^3.8", "@docusaurus/theme-mermaid": "^3.8", "@emotion/react": "^11.14", "@emotion/styled": "^11.14", + "@graphql-markdown/docusaurus": "^1.29", + "@graphql-tools/graphql-file-loader": "^8.0.20", "@heroicons/react": "^2.2", - "@mdx-js/react": "~3.0.1", + "@mdx-js/mdx": "~3.1", + "@sablier/indexers": "1.0.0-beta.2", "@vercel/analytics": "^1.5", - "clsx": "^2.1", + "axios": "^1.9", "docusaurus-theme-github-codeblock": "^2.0", "function-plot": "^1.25", - "hast-util-is-element": "3.0.0", + "lodash": "^4.17", "prism-react-renderer": "^2.4", - "react": "18.2", - "react-dom": "18.2", - "react-loadable": "^5.5", + "react": "18.2.0", + "react-dom": "18.2.0", + "rehype-external-links": "^3.0", "rehype-katex": "7", - "remark-math": "6" + "remark-math": "6", + "sablier": "1.0.0-beta.8" }, "devDependencies": { - "@docusaurus/eslint-plugin": "^3.8", - "@docusaurus/module-type-aliases": "^3.8", + "@biomejs/biome": "2.0.0-beta.5", "@docusaurus/tsconfig": "^3.8", "@docusaurus/types": "^3.8", - "@trivago/prettier-plugin-sort-imports": "^4.3", - "@types/node": "^20.19", - "@typescript-eslint/eslint-plugin": "^8.33", - "@typescript-eslint/parser": "^8.33", - "eslint": "^8.57", - "eslint-plugin-mdx": "^3.4", - "eslint-plugin-react": "^7.37", + "@eslint/compat": "^1.3.0", + "@graphql-markdown/types": "^1.7.0", + "@graphql-tools/url-loader": "^8.0.31", + "@sablier/devkit": "github:sablier-labs/devkit#main", + "@types/eslint": "^9.6.1", + "@types/node": "^24.0", + "bufferutil": "^4.0.9", + "commander": "^14.0", + "eslint": "^9.29", + "eslint-plugin-mdx": "^3.5", + "execa": "5.1.1", "husky": "^9.1", - "lint-staged": "^15.5", + "js-yaml": "^4.1.0", + "lint-staged": "^16.1", "prettier": "^3.5", - "typescript": "^5.8", - "vercel": "^34.4" + "typescript": "5.8.3", + "utf-8-validate": "^6.0.5", + "vercel": "^43.1" }, "engines": { "node": ">=20.0" @@ -70,12 +79,15 @@ "keywords": [ "asset-streaming", "blockchain", - "cryptotokens", - "cryptoassets", + "crypto-assets", + "crypto-tokens", "ethereum", + "evm", "money-streaming", "real-time-finance", "sablier", + "sablier-airdrops", + "sablier-docs", "sablier-flow", "sablier-lockup", "smart-contracts", @@ -86,26 +98,12 @@ "web3" ], "private": true, - "repository": "github:sablier-labs/docs", - "resolutions": { - "jackspeak": "2.1.1" + "repository": { + "type": "git", + "url": "git+https://github.com/sablier-labs/docs.git" }, "scripts": { - "build": "docusaurus build", - "check": "bun run prettier:check && bun run lint:check", - "clear": "docusaurus clear", - "deploy": "docusaurus deploy", - "fix": "bun run prettier:write && bun run lint:fix", - "lint:check": "bun eslint --cache . --ext md,mdx,ts,tsx", - "lint:fix": "bun eslint --cache . --ext md,mdx,ts,tsx --fix && bun formatter.js", - "prepare": "husky", - "prettier:check": "prettier --cache --check \"**/*.{json,md,mdx,ts,tsx,yml}\"", - "prettier:write": "prettier --cache --write \"**/*.{json,md,mdx,ts,tsx,yml}\"", - "serve": "docusaurus serve", - "start": "docusaurus start", - "submodule-reset": "git submodule deinit --all -f && git submodule update --init --recursive", - "swizzle": "docusaurus swizzle", - "typecheck": "tsc", - "write-heading-ids": "docusaurus write-heading-ids" + "autogen": "bun run cli/index.ts autogen --overwrite", + "build": "bun run autogen && docusaurus build" } } diff --git a/repomix.config.jsonc b/repomix.config.jsonc new file mode 100644 index 00000000..82215975 --- /dev/null +++ b/repomix.config.jsonc @@ -0,0 +1,13 @@ +{ + "$schema": "https://repomix.com/schemas/latest/schema.json", + "ignore": { + "customPatterns": ["docs/reference", "repos"], + "useDefaultPatterns": true, + "useGitignore": true + }, + "include": ["./**/*.mdx"], + "output": { + "filePath": ".repomix/output.txt", + "style": "plain" + } +} diff --git a/sidebars.js b/sidebars.js deleted file mode 100644 index c4802009..00000000 --- a/sidebars.js +++ /dev/null @@ -1,12 +0,0 @@ -/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ -// By default, Docusaurus generates a sidebar from the docs folder structure -const sidebars = { - conceptsSidebar: [{ type: "autogenerated", dirName: "concepts" }], - guidesSidebar: [{ type: "autogenerated", dirName: "guides" }], - referencesSidebar: [{ type: "autogenerated", dirName: "reference" }], - apiSidebar: [{ type: "autogenerated", dirName: "api" }], - appSidebar: [{ type: "autogenerated", dirName: "apps" }], - supportSidebar: [{ type: "autogenerated", dirName: "support" }], -}; - -export default sidebars; diff --git a/src/autogen/airdrops/.gitkeep b/src/autogen/airdrops/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/src/autogen/flow/.gitkeep b/src/autogen/flow/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/src/autogen/lockup/.gitkeep b/src/autogen/lockup/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/src/components/atoms/GFMContent.tsx b/src/components/atoms/GFMContent.tsx new file mode 100644 index 00000000..bf30863b --- /dev/null +++ b/src/components/atoms/GFMContent.tsx @@ -0,0 +1,24 @@ +import { evaluateSync } from "@mdx-js/mdx"; +import { useMemo } from "react"; +import * as runtime from "react/jsx-runtime"; +import rehypeExternalLinks from "rehype-external-links"; +import remarkGfm from "remark-gfm"; + +type GFMContentProps = { + content: string; +}; + +/** + * Renders GitHub-Flavored Markdown content using MDX. + */ +export default function GFMContent({ content }: GFMContentProps) { + const { default: Content } = useMemo(() => { + return evaluateSync(content, { + ...runtime, + rehypePlugins: [[rehypeExternalLinks, { target: "_blank" }]], + remarkPlugins: [remarkGfm], + }); + }, [content]); + + return ; +} diff --git a/src/components/atoms/HardcodedDemonstration.tsx b/src/components/atoms/HardcodedDemonstration.tsx new file mode 100644 index 00000000..5952742e --- /dev/null +++ b/src/components/atoms/HardcodedDemonstration.tsx @@ -0,0 +1,21 @@ +import Link from "@docusaurus/Link"; +import type { Sablier } from "sablier"; + +type DeploymentProps = { + protocol: Sablier.Protocol; +}; + +export default function HardcodedDemonstration({ protocol }: DeploymentProps) { + return ( + <> + In the code above, the contract addresses are hard-coded for demonstration purposes. However, in production, you + would likely use input parameters to allow flexibility in changing the addresses. +
    +
    + Also, these addresses are deployed on Ethereum Sepolia. If you need to work with a different chain, {protocol}{" "} + addresses can be obtained from the{" "} + {protocol} Deployments page. +
    + + ); +} diff --git a/src/components/atoms/RemoteGFMContent.tsx b/src/components/atoms/RemoteGFMContent.tsx new file mode 100644 index 00000000..34a105d4 --- /dev/null +++ b/src/components/atoms/RemoteGFMContent.tsx @@ -0,0 +1,54 @@ +import axios from "axios"; +import { useEffect, useState } from "react"; +import GFMContent from "./GFMContent"; + +type RemoteGFMContentProps = { + /** + * URL of raw Markdown file + * e.g. https://raw.githubusercontent.com/sablier-labs/benchmarks/main/results/flow/flow.md + */ + url: string; +}; + +export default function RemoteGFMContent({ url }: RemoteGFMContentProps) { + const [content, setContent] = useState(""); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + let isMounted = true; + setLoading(true); + + axios + .get(url) + .then((response) => { + if (isMounted) { + setContent(response.data); + setError(null); + } + }) + .catch((err) => { + if (isMounted) { + setError(err.message); + } + }) + .finally(() => { + if (isMounted) { + setLoading(false); + } + }); + + return () => { + isMounted = false; + }; + }, [url]); + + if (loading) { + return

    Loading content...

    ; + } + if (error) { + return

    Error loading content: {error}

    ; + } + + return ; +} diff --git a/src/components/molecules/EnvioEndpointTable.tsx b/src/components/molecules/EnvioEndpointTable.tsx index 2091a787..39811cb5 100644 --- a/src/components/molecules/EnvioEndpointTable.tsx +++ b/src/components/molecules/EnvioEndpointTable.tsx @@ -1,11 +1,10 @@ -import React from "react"; import Link from "@docusaurus/Link"; -interface Props { +type EnvioEndpointTableProps = { protocolId: string; -} +}; -const EnvioEndpointTable: React.FC = ({ protocolId }) => { +export default function EnvioEndpointTable({ protocolId }: EnvioEndpointTableProps) { // Generate the Envio endpoint URL const endpoint = `https://indexer.hyperindex.xyz/${protocolId}/v1/graphql`; @@ -34,6 +33,4 @@ const EnvioEndpointTable: React.FC = ({ protocolId }) => { ); -}; - -export default EnvioEndpointTable; +} diff --git a/src/components/molecules/Feature.tsx b/src/components/molecules/Feature.tsx index 58eb8ef5..8579afac 100644 --- a/src/components/molecules/Feature.tsx +++ b/src/components/molecules/Feature.tsx @@ -1,5 +1,5 @@ -import styled from "@emotion/styled"; import Link from "@docusaurus/Link"; +import styled from "@emotion/styled"; import ArrowRightIcon from "@heroicons/react/24/outline/ArrowRightIcon"; import type UserCircleIcon from "@heroicons/react/24/outline/UserCircleIcon"; import Heading from "@theme/Heading"; diff --git a/src/components/molecules/LinkPreview.tsx b/src/components/molecules/LinkPreview.tsx index 7c3277ec..6f0f5d1e 100644 --- a/src/components/molecules/LinkPreview.tsx +++ b/src/components/molecules/LinkPreview.tsx @@ -1,8 +1,8 @@ -import { useCallback } from "react"; -import styled from "@emotion/styled"; import Link from "@docusaurus/Link"; +import styled from "@emotion/styled"; import SablierIcon from "@site/static/img/logo.svg"; import GitHubIcon from "@site/static/img/social/github.svg"; +import { useCallback } from "react"; const Wrapper = styled(Link)` border: 1px solid var(--ifm-color-emphasis-200); @@ -57,12 +57,12 @@ const StyledGitHubIcon = styled.div` } `; -interface LinkPreviewProps { +type LinkPreviewProps = { href: string; - icon: string; - subtitle: string; + icon?: string; + subtitle?: string; title: string; -} +}; export default function LinkPreview(props: LinkPreviewProps) { const renderIcon = useCallback(() => { @@ -83,7 +83,7 @@ export default function LinkPreview(props: LinkPreviewProps) { {renderIcon()} {props.title} - {props.subtitle} + {props.subtitle && {props.subtitle}} ); diff --git a/src/components/molecules/link-previews/Indexers.tsx b/src/components/molecules/link-previews/Indexers.tsx new file mode 100644 index 00000000..2184bc12 --- /dev/null +++ b/src/components/molecules/link-previews/Indexers.tsx @@ -0,0 +1,32 @@ +import type { Indexer } from "@sablier/indexers"; +import { capitalize } from "lodash"; +import { Links } from "../../../constants"; +import LinkPreview from "../LinkPreview"; + +type LinkPreviewIndexersProps = + | { + vendor: Indexer.Vendor; + protocol: Indexer.Protocol; + } + | { + vendor?: undefined; + protocol?: undefined; + }; + +export default function LinkPreviewIndexers({ vendor, protocol }: LinkPreviewIndexersProps = {}) { + let href: string; + let subtitle: string; + let title: string; + + if (!vendor || !protocol) { + href = Links.GitHub.INDEXERS; + subtitle = "Data indexers for the Sablier Protocol"; + title = "Sablier Indexers"; + } else { + href = `${Links.GitHub.INDEXERS}/blob/main/src/${vendor}/${protocol}`; + subtitle = `src/${vendor}/${protocol}`; + title = `${capitalize(vendor)} indexer for the Sablier ${capitalize(protocol)} protocol`; + } + + return ; +} diff --git a/src/components/molecules/link-previews/MerkleAPI.tsx b/src/components/molecules/link-previews/MerkleAPI.tsx new file mode 100644 index 00000000..c510d0e4 --- /dev/null +++ b/src/components/molecules/link-previews/MerkleAPI.tsx @@ -0,0 +1,12 @@ +import LinkPreview from "../LinkPreview"; + +export default function LinkPreviewMerkleAPI() { + return ( + + ); +} diff --git a/src/components/molecules/link-previews/index.ts b/src/components/molecules/link-previews/index.ts new file mode 100644 index 00000000..f55ca8cb --- /dev/null +++ b/src/components/molecules/link-previews/index.ts @@ -0,0 +1,2 @@ +export { default as LinkPreviewIndexers } from "./Indexers"; +export { default as LinkPreviewMerkleAPI } from "./MerkleAPI"; diff --git a/src/components/organisms/AskCookbook.tsx b/src/components/organisms/AskCookbook.tsx index ec296cc7..420e07ff 100644 --- a/src/components/organisms/AskCookbook.tsx +++ b/src/components/organisms/AskCookbook.tsx @@ -1,4 +1,3 @@ -import React from "react"; import BaseAskCookbook from "@cookbookdev/docsbot/react"; /** It's going to be exposed in HTTP requests anyway so it's fine to just hardcode it here */ diff --git a/src/components/organisms/Background.tsx b/src/components/organisms/Background.tsx index 3bee2a52..057a2f7b 100644 --- a/src/components/organisms/Background.tsx +++ b/src/components/organisms/Background.tsx @@ -1,5 +1,5 @@ -import type { PropsWithChildren } from "react"; import styled from "@emotion/styled"; +import type { PropsWithChildren } from "react"; const Wrapper = styled.div` position: absolute; @@ -45,17 +45,17 @@ const Light = styled.div<{ horizontal: "left" | "right"; vertical: string }>` filter: blur(60px); } - ${(props) => props.horizontal == "left" && `left: -50vw;`} - ${(props) => props.horizontal == "right" && `right: 0;`} + ${(props) => props.horizontal === "left" && `left: -50vw;`} + ${(props) => props.horizontal === "right" && `right: 0;`} `; -interface Props { +type BackgroundProps = { className?: string; left?: "top" | "center" | "bottom" | "none"; right?: "top" | "center" | "bottom" | "none"; -} +}; -function Background({ children, className, left = "top", right = "top" }: PropsWithChildren) { +function Background({ children, className, left = "top", right = "top" }: PropsWithChildren) { return ( diff --git a/src/components/organisms/Chains.tsx b/src/components/organisms/Chains.tsx new file mode 100644 index 00000000..c5321fae --- /dev/null +++ b/src/components/organisms/Chains.tsx @@ -0,0 +1,29 @@ +import { useMemo } from "react"; +import { sablier } from "sablier"; +import GFMContent from "../atoms/GFMContent"; + +export interface ChainProps { + kind: "mainnets" | "testnets"; +} + +export function Chains({ kind }: ChainProps) { + const content = useMemo(() => { + let content: string = ""; + content += `| Name | Chain ID | In UI? | Native Token | Explorer |\n`; + content += `| :--- | :------- | :----- | :----------- | :------- |\n`; + + const getter = kind === "mainnets" ? sablier.chains.getMainnets : sablier.chains.getTestnets; + for (const chain of getter()) { + const supportedCell = chain.isSupportedByUI ? "✅" : "❌"; + const symbolCell = chain.nativeCurrency.symbol; + const explorerURL = chain.blockExplorers.default.url; + const explorerCell = `[${new URL(explorerURL).host}](${explorerURL})`; + content += `| ${chain.name} | ${chain.id} | ${supportedCell} | ${symbolCell} | ${explorerCell} |\n`; + } + return content; + }, [kind]); + + return ; +} + +export default Chains; diff --git a/src/components/organisms/FunctionPlot.tsx b/src/components/organisms/FunctionPlot.tsx index 1c8b1a98..d6bded97 100644 --- a/src/components/organisms/FunctionPlot.tsx +++ b/src/components/organisms/FunctionPlot.tsx @@ -1,5 +1,5 @@ +import functionPlot, { type FunctionPlotOptions } from "function-plot"; import { memo, useEffect, useRef } from "react"; -import functionPlot, { FunctionPlotOptions } from "function-plot"; export interface ExtendedFunctionPlotOptions extends FunctionPlotOptions { xAxisLabel?: string; @@ -12,7 +12,7 @@ export interface FunctionPlotProps { } // See https://github.com/mauriciopoppe/function-plot -const FunctionPlot: React.FC = memo(function ({ options }: FunctionPlotProps) { +const FunctionPlot: React.FC = memo(({ options }: FunctionPlotProps) => { const rootEl = useRef(null); useEffect(() => { @@ -21,17 +21,17 @@ const FunctionPlot: React.FC = memo(function ({ options }: Fu ...options, disableZoom: true, grid: true, + target: rootEl.current, xAxis: { domain: [0, options?.xDomainLimit || 100], label: options?.xAxisLabel || "x - time", }, yAxis: { domain: [0, options?.yDomainLimit || 100], label: "y - earnings" }, - target: rootEl.current, }); } catch (err) { console.error("FunctionPlot error: ", err); } - }, [options, rootEl]); + }, [options]); return
    ; }); diff --git a/src/components/organisms/Header.tsx b/src/components/organisms/Header.tsx index a3a3b400..80b90b8f 100644 --- a/src/components/organisms/Header.tsx +++ b/src/components/organisms/Header.tsx @@ -127,7 +127,7 @@ export default function Header() { to={"/apps/features/overview"} /> - + Discord
    Discord

    Hop in to the #dev channel to get help.

    @@ -88,7 +88,7 @@ function Socials() { - + GitHub
    GitHub

    View all Sablier code repositories.

    @@ -97,7 +97,7 @@ function Socials() {
    - + Blog
    Blog diff --git a/src/components/organisms/header/Underlay.tsx b/src/components/organisms/header/Underlay.tsx index 2a0731a3..6c918179 100644 --- a/src/components/organisms/header/Underlay.tsx +++ b/src/components/organisms/header/Underlay.tsx @@ -1,5 +1,5 @@ -import styled from "@emotion/styled"; import useBaseUrl from "@docusaurus/useBaseUrl"; +import styled from "@emotion/styled"; import Background from "../Background"; const Mesh = styled.div<{ image?: string }>` @@ -90,7 +90,7 @@ const CircleRightTop = styled(Circle)` function Underlay() { return ( - + diff --git a/src/constants.ts b/src/constants.ts index b6184c5b..592b421d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,14 +1,21 @@ +// See https://github.com/sablier-labs/benchmarks +export const BENCHMARKS_COMMIT = "cbbb3d1"; +export const GITHUB_ORG = "sablier-labs"; + export const Links = { + APP: "https://app.sablier.com", + BLOG: "https://blog.sablier.com", + DISCORD: "https://discord.gg/bSwRCwWRsT", + EXAMPLE: "https://app.sablier.com/vesting/stream/LL-1-273/", Forms: { CALL: "https://forms.gle/6z3XyfSLXDoRghG99", CHAINS: "https://forms.gle/9EaRarDie98Fw1mw6", }, GitHub: { - DEPLOYMENTS: "https://github.com/sablier-labs/deployments", - ORG: "https://github.com/sablier-labs", + BENCHMARKS: `https://github.com/${GITHUB_ORG}/benchmarks`, + DEPLOYMENTS: `https://github.com/${GITHUB_ORG}/deployments`, + INDEXERS: `https://github.com/${GITHUB_ORG}/indexers`, + ORG: `https://github.com/${GITHUB_ORG}`, + SDK: `https://github.com/${GITHUB_ORG}/sdk`, }, - APP: "https://app.sablier.com", - BLOG: "https://blog.sablier.com", - DISCORD: "https://discord.sablier.com", - EXAMPLE: "https://app.sablier.com/stream/LL2-11155111-3/", }; diff --git a/src/css/custom.css b/src/css/custom.css index 7354c11f..ad9059c8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -20,9 +20,8 @@ --ifm-container-width: var(--sablier-size-content); --ifm-footer-background-color: var(--sablier-color-dark100); - --ifm-font-family-base: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, - sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", - "Segoe UI Symbol"; + --ifm-font-family-base: + "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; --ifm-navbar-background-color: var(--sablier-color-background); } @@ -33,6 +32,12 @@ body .footer { padding-top: 60px; } +@media (max-width: 960px) { + body .footer { + display: none; + } +} + html { -moz-osx-font-smoothing: grayscale; font-weight: 500; @@ -105,6 +110,10 @@ html[data-theme="dark"] .alert--info { --ifm-hero-text-color: var(--ifm-font-color-base); } +.hidden { + display: none !important; +} + .main-wrapper { display: flex; } @@ -141,12 +150,6 @@ html[data-theme="dark"] .alert--info { display: inline-block; } -@media (max-width: 960px) { - .footer { - display: none; - } -} - .markdown li > p { margin-bottom: 6px; margin-top: 8px; diff --git a/src/css/sablier.css b/src/css/sablier.css index fb590286..f0f88e46 100644 --- a/src/css/sablier.css +++ b/src/css/sablier.css @@ -1,3 +1,5 @@ +@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;500;600;700;800;900&display=swap"); + :root { --sablier-color-background: var(--sablier-color-dark000); --sablier-color-backgroundLights: #484f70; @@ -64,9 +66,9 @@ } /* TODO: - * Refactor explicitly used color "names" to "purpose" when the Sablier Interface will support light mode. - * This will keep --sablier-color- raw and unchanged, while --sablier-color- can adapt with the theme (light/dark). - */ +* Refactor explicitly used color "names" to "purpose" when the Sablier Interface will support light mode. +* This will keep --sablier-color- raw and unchanged, while --sablier-color- can adapt with the theme (light/dark). +*/ [data-theme="light"] { --sablier-color-white: #1a1d28; @@ -86,5 +88,3 @@ --sablier-color-border: #c3c9d5; --sablier-color-borderLanding: #e1e4ea; } - -@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;500;600;700;800;900&display=swap"); diff --git a/src/helpers.ts b/src/helpers.ts new file mode 100644 index 00000000..9d52e7ca --- /dev/null +++ b/src/helpers.ts @@ -0,0 +1,9 @@ +import { BENCHMARKS_COMMIT, GITHUB_ORG } from "./constants"; + +export function getBenchmarkURL(path: string): string { + return getRawContentURL("benchmarks", BENCHMARKS_COMMIT, path); +} + +export function getRawContentURL(repo: string, ref: string, path: string): string { + return `https://raw.githubusercontent.com/${GITHUB_ORG}/${repo}/${ref}/${path}`; +} diff --git a/docs/snippets/BatchCommonSteps.mdx b/src/snippets/BatchCommonSteps.mdx similarity index 100% rename from docs/snippets/BatchCommonSteps.mdx rename to src/snippets/BatchCommonSteps.mdx diff --git a/docs/snippets/AdmonitionSimpleCode.mdx b/src/snippets/CautionNonProduction.mdx similarity index 100% rename from docs/snippets/AdmonitionSimpleCode.mdx rename to src/snippets/CautionNonProduction.mdx diff --git a/src/snippets/DeprecatedIndexers.mdx b/src/snippets/DeprecatedIndexers.mdx new file mode 100644 index 00000000..1209f4fc --- /dev/null +++ b/src/snippets/DeprecatedIndexers.mdx @@ -0,0 +1,6 @@ +:::important + +The following indexers were deprecated on February 3, 2025, so they might return outdated data if queried now. Please +use our latest endpoints to query up-to-date data for the Sablier Protocol. + +::: diff --git a/src/snippets/ExplainerEnvio.mdx b/src/snippets/ExplainerEnvio.mdx new file mode 100644 index 00000000..7e021d39 --- /dev/null +++ b/src/snippets/ExplainerEnvio.mdx @@ -0,0 +1,2 @@ +Envio is a multi-chain indexer. There's a single GraphQL API endpoint that aggregates data across chains. This approach differs from +other vendors like The Graph, which require a separate indexer for each chain where Sablier is available. diff --git a/src/snippets/ExplainerTheGraph.mdx b/src/snippets/ExplainerTheGraph.mdx new file mode 100644 index 00000000..e1c4d115 --- /dev/null +++ b/src/snippets/ExplainerTheGraph.mdx @@ -0,0 +1,48 @@ +import TabItem from "@theme/TabItem"; +import Tabs from "@theme/Tabs"; + +In the table below, you will see three URLs: + +- `Production URL`: requires a Studio API key for making queries. +- `Testing URL`: doesn't require an API key but it's rate-limited to 3000 queries per day. Opening this URL in the browser opens a GraphiQL playground. +- `Explorer URL`: The explorer URL for the indexer, if available. + +To learn how to create a Studio API key, check out [this guide](https://thegraph.com/docs/en/studio/managing-api-keys). + +The API key has to be provided via an `Authorization: Bearer ` header. Here are two examples in curl and JavaScript: + + + + + +```bash +curl -X POST \ + -H "Authorization: Bearer " \ + -H "Content-Type: application/json" \ + -d '{"query": "{ _meta: { block { number } } }"' \ + +``` + + + + + +```js +import { GraphQLClient } from "graphql-request"; + +async function getBlockNumber() { + const client = new GraphQLClient("", { + headers: { + Authorization: `Bearer `, + }, + }); + + const query = `query { _meta: { block { number } } }`; + const result = await client.request(query); + console.log(result); +} +``` + + + + diff --git a/docs/snippets/LocalEnvironment.mdx b/src/snippets/LocalEnvironment.mdx similarity index 99% rename from docs/snippets/LocalEnvironment.mdx rename to src/snippets/LocalEnvironment.mdx index 170455f7..f6e1ae17 100644 --- a/docs/snippets/LocalEnvironment.mdx +++ b/src/snippets/LocalEnvironment.mdx @@ -1,5 +1,3 @@ -{/* eslint-disable react/prop-types */} - import Link from "@docusaurus/Link"; export const Introduction = ({ protocol }) => ( diff --git a/docs/snippets/LockupParams.mdx b/src/snippets/LockupParams.mdx similarity index 100% rename from docs/snippets/LockupParams.mdx rename to src/snippets/LockupParams.mdx diff --git a/docs/snippets/ReleaseHistoryAirdrops.mdx b/src/snippets/ReleaseHistoryAirdrops.mdx similarity index 100% rename from docs/snippets/ReleaseHistoryAirdrops.mdx rename to src/snippets/ReleaseHistoryAirdrops.mdx diff --git a/docs/snippets/ReleaseHistoryFlow.mdx b/src/snippets/ReleaseHistoryFlow.mdx similarity index 100% rename from docs/snippets/ReleaseHistoryFlow.mdx rename to src/snippets/ReleaseHistoryFlow.mdx diff --git a/docs/snippets/ReleaseHistoryLegacy.mdx b/src/snippets/ReleaseHistoryLegacy.mdx similarity index 100% rename from docs/snippets/ReleaseHistoryLegacy.mdx rename to src/snippets/ReleaseHistoryLegacy.mdx diff --git a/docs/snippets/ReleaseHistoryLockup.mdx b/src/snippets/ReleaseHistoryLockup.mdx similarity index 100% rename from docs/snippets/ReleaseHistoryLockup.mdx rename to src/snippets/ReleaseHistoryLockup.mdx diff --git a/docs/snippets/TokenApproval.mdx b/src/snippets/TokenApproval.mdx similarity index 100% rename from docs/snippets/TokenApproval.mdx rename to src/snippets/TokenApproval.mdx diff --git a/src/theme/MDXComponents/A.js b/src/theme/MDXComponents/A.js index fcd82c5b..6fd3befb 100644 --- a/src/theme/MDXComponents/A.js +++ b/src/theme/MDXComponents/A.js @@ -1,4 +1,3 @@ -/* eslint-disable react/prop-types */ import styled from "@emotion/styled"; import ArrowIcon from "@heroicons/react/24/outline/ArrowTopRightOnSquareIcon"; import A from "@theme-original/MDXComponents/A"; diff --git a/static/banners/docs-apis.webp b/static/banners/docs-apis.webp deleted file mode 100644 index 0fa071b6..00000000 Binary files a/static/banners/docs-apis.webp and /dev/null differ diff --git a/static/decor/noise-dark100.svg b/static/decor/noise-dark100.svg deleted file mode 100644 index 63bec22f..00000000 --- a/static/decor/noise-dark100.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - diff --git a/static/graphql-overview.md b/static/graphql-overview.md new file mode 100644 index 00000000..d9d0fffb --- /dev/null +++ b/static/graphql-overview.md @@ -0,0 +1,16 @@ +--- +id: "overview" +sidebar_position: 1 +title: "Overview" +--- + +This documentation has been automatically generated from the GraphQL schema, with +[GraphQL-Markdown](https://graphql-markdown.github.io). + +Use the sidebar to navigate through the documentation. + +- Queries +- Objects +- Enums +- Inputs +- Scalars diff --git a/static/banners/docs-airdrops-airstreams.webp b/static/img/banners/docs-airdrops-airstreams.webp similarity index 100% rename from static/banners/docs-airdrops-airstreams.webp rename to static/img/banners/docs-airdrops-airstreams.webp diff --git a/static/banners/docs-airdrops-instant.webp b/static/img/banners/docs-airdrops-instant.webp similarity index 100% rename from static/banners/docs-airdrops-instant.webp rename to static/img/banners/docs-airdrops-instant.webp diff --git a/static/banners/docs-app-navigation.webp b/static/img/banners/docs-app-navigation.webp similarity index 100% rename from static/banners/docs-app-navigation.webp rename to static/img/banners/docs-app-navigation.webp diff --git a/static/banners/docs-payments.webp b/static/img/banners/docs-payments.webp similarity index 100% rename from static/banners/docs-payments.webp rename to static/img/banners/docs-payments.webp diff --git a/static/banners/docs-vesting.webp b/static/img/banners/docs-vesting.webp similarity index 100% rename from static/banners/docs-vesting.webp rename to static/img/banners/docs-vesting.webp diff --git a/static/img/brands/The Graph - Logomark.zip b/static/img/brands/The Graph - Logomark.zip new file mode 100644 index 00000000..5c8692d9 Binary files /dev/null and b/static/img/brands/The Graph - Logomark.zip differ diff --git a/static/img/brands/The Graph - Logomark/The Graph - Logomark - Dark.png b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Dark.png new file mode 100644 index 00000000..ae6b9fec Binary files /dev/null and b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Dark.png differ diff --git a/static/img/brands/The Graph - Logomark/The Graph - Logomark - Darkhi-res.png b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Darkhi-res.png new file mode 100644 index 00000000..db99543e Binary files /dev/null and b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Darkhi-res.png differ diff --git a/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.png b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.png new file mode 100644 index 00000000..a1788f37 Binary files /dev/null and b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.png differ diff --git a/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.svg b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.svg new file mode 100644 index 00000000..cd7c84d8 --- /dev/null +++ b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Light.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/img/brands/The Graph - Logomark/The Graph - Logomark - Lighthi-res.png b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Lighthi-res.png new file mode 100644 index 00000000..600657ae Binary files /dev/null and b/static/img/brands/The Graph - Logomark/The Graph - Logomark - Lighthi-res.png differ diff --git a/static/img/brands/envio.png b/static/img/brands/envio.png new file mode 100644 index 00000000..c3321b5c Binary files /dev/null and b/static/img/brands/envio.png differ diff --git a/static/img/brands/envio.svg b/static/img/brands/envio.svg new file mode 100644 index 00000000..67bad779 --- /dev/null +++ b/static/img/brands/envio.svg @@ -0,0 +1,31 @@ + + + + +Created by potrace 1.16, written by Peter Selinger 2001-2019 + + + + + + diff --git a/static/img/brands/the-graph.svg b/static/img/brands/the-graph.svg new file mode 100644 index 00000000..68ec6ae7 --- /dev/null +++ b/static/img/brands/the-graph.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/img/campaign-verification/03_1.webp b/static/img/campaign-verification/03-step-1.webp similarity index 100% rename from static/img/campaign-verification/03_1.webp rename to static/img/campaign-verification/03-step-1.webp diff --git a/static/img/campaign-verification/03_2.webp b/static/img/campaign-verification/03-step-2.webp similarity index 100% rename from static/img/campaign-verification/03_2.webp rename to static/img/campaign-verification/03-step-2.webp diff --git a/static/decor/grid-pattern.svg b/static/img/decor/grid-pattern.svg similarity index 100% rename from static/decor/grid-pattern.svg rename to static/img/decor/grid-pattern.svg diff --git a/static/img/flow-nft.svg b/static/img/nft/flow.svg similarity index 100% rename from static/img/flow-nft.svg rename to static/img/nft/flow.svg diff --git a/static/img/lockup-gallery.webp b/static/img/nft/gallery.webp similarity index 100% rename from static/img/lockup-gallery.webp rename to static/img/nft/gallery.webp diff --git a/static/img/lockup-nft.svg b/static/img/nft/lockup.svg similarity index 100% rename from static/img/lockup-nft.svg rename to static/img/nft/lockup.svg diff --git a/tsconfig.json b/tsconfig.json index 0e5118ed..a5ac3827 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,15 +2,7 @@ // This file is not used in compilation. It is here just for a nice editor experience. "extends": "@docusaurus/tsconfig", "compilerOptions": { - "baseUrl": ".", - "checkJs": true, - "moduleResolution": "node", - "module": "ESNext", - "paths": { - "react": ["./node_modules/@types/react"] - }, - "target": "ESNext" + "baseUrl": "." }, - "exclude": [".docusaurus", "node_modules", "static/js"], - "include": ["**/*.js", "**/*.ts", "**/*.tsx"] + "exclude": ["build", "node_modules", "repos"] }