diff --git a/.env.example b/.env.example index bd71ab09..38b059a4 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,7 @@ PORT="8080" # express trust proxy config for if you are using a reverse proxy TRUST_PROXY=1 +NODE_ENV=production SENTRYDSN= @@ -10,11 +11,14 @@ DATABASE_URL=postgresql://username:password@block-sync-db:5432/Blocksync?schema= DATABASE_URL_CORE= # whether to migrate the database programatically or not, if set to true, the database will be migrated programatically -# according to prisma migrations, for prod environtments where dont have direct db access or dont want to connect to db directly. -# Please note this has its own limitations, if this is used please dont modify the db schema manually a all, only rely on the -# programatic migrations. https://www.prisma.io/docs/orm/prisma-migrate/workflows/development-and-production#production-and-testing-environments +# according to postgres/migrations, for prod environtments where dont have direct db access or dont want to connect to db directly. +# Please note this has its own limitations, if this is used please dont modify the db schema manually at all, only rely on the +# programatic migrations. # 1 = true, 0 = false MIGRATE_DB_PROGRAMATICALLY=1 +# whether to use ssl for the database connection or not, for localhost db disable this +# 1 = true, 0 = false +DATABASE_USE_SSL=0 # optional endpoint to map entity ipfs service to when entity is resolved on blocksync IPFS_SERVICE_MAPPING="https://devnet-blocksync.ixo.earth/api/ipfs/" diff --git a/.github/workflows/node-ci-build.yml b/.github/workflows/node-ci-build.yml new file mode 100644 index 00000000..6510ad75 --- /dev/null +++ b/.github/workflows/node-ci-build.yml @@ -0,0 +1,13 @@ +name: Build and Release +on: + push: + branches: + - master + - develop + +jobs: + build-and-release: + uses: ixofoundation/ixo-github-actions/.github/workflows/node-ci-build.yml@main + with: + commit_sha: ${{ github.sha }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/node-ci-pr.yml b/.github/workflows/node-ci-pr.yml new file mode 100644 index 00000000..ec82357d --- /dev/null +++ b/.github/workflows/node-ci-pr.yml @@ -0,0 +1,7 @@ +name: Pull Request Build and Test +on: + pull_request: + +jobs: + call-ci-workflow: + uses: ixofoundation/ixo-github-actions/.github/workflows/node-ci-pr.yml@main \ No newline at end of file diff --git a/.nvmrc b/.nvmrc index 2f3b977c..cbd89321 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v18.15.0 \ No newline at end of file +v18.17.0 \ No newline at end of file diff --git a/.releaserc.json b/.releaserc.json new file mode 100644 index 00000000..699d5855 --- /dev/null +++ b/.releaserc.json @@ -0,0 +1,62 @@ +{ + "branches": [ + "main", + { + "name": "develop", + "channel": "alpha", + "prerelease": true + }, + { + "name": "test", + "channel": "beta", + "prerelease": true + } + ], + "ci": true, + "preset": "conventionalcommits", + "plugins": [ + [ + "@semantic-release/commit-analyzer", + { + "releaseRules": [ + { "breaking": true, "release": "major" }, + { "type": "feat", "release": "minor" }, + { "type": "fix", "release": "patch" }, + { "type": "perf", "release": "patch" }, + { "type": "build", "release": "patch" }, + { "scope": "security", "release": "patch" }, + { "type": "chore", "release": false }, + { "type": "ci", "release": false }, + { "type": "docs", "release": false }, + { "type": "refactor", "release": false }, + { "type": "revert", "release": false }, + { "type": "style", "release": false }, + { "type": "test", "release": false }, + { "scope": "no-release", "release": false }, + { "scope": "release", "release": "patch" } + ], + "presetConfig": true + } + ], + [ + "@semantic-release/release-notes-generator", + { + "presetConfig": true + } + ], + [ + "@semantic-release/npm", + { + "npmPublish": false + } + ], + [ + "@semantic-release/git", + { + "assets": ["package.json"], + "message": "chore(release): ${nextRelease.version} [skip ci]\n${nextRelease.notes}" + } + ], + "@semantic-release/github" + ] +} diff --git a/Dockerfile b/Dockerfile index b339ae2a..fb38b9f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 node:16.14.2 +FROM --platform=linux/amd64 node:18.17.0 # Create app directory RUN mkdir /usr/src/app @@ -11,8 +11,6 @@ RUN yarn --pure-lockfile --production && yarn cache clean # Copy rest of files COPY . . -# Generate Prisma client -RUN yarn prisma:generate EXPOSE 8080 diff --git a/README.md b/README.md index 0c228f75..c1cc2cc3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![GitHub repo size](https://img.shields.io/github/repo-size/ixofoundation/ixo-blocksync) [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ixofoundation/jambo/blob/main/LICENSE) -![Postgres](https://img.shields.io/badge/postgres-%23316192.svg?style=for-the-badge&logo=postgresql&logoColor=white)![Express.js](https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB)![NodeJS](https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge&logo=node.js&logoColor=white)![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)![Prisma](https://img.shields.io/badge/Prisma-3982CE?style=for-the-badge&logo=Prisma&logoColor=white)![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)![GraphQL](https://img.shields.io/badge/-GraphQL-E10098?style=for-the-badge&logo=graphql&logoColor=white) +![Postgres](https://img.shields.io/badge/postgres-%23316192.svg?style=for-the-badge&logo=postgresql&logoColor=white)![Express.js](https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB)![NodeJS](https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge&logo=node.js&logoColor=white)![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)![GraphQL](https://img.shields.io/badge/-GraphQL-E10098?style=for-the-badge&logo=graphql&logoColor=white) Syncs all the public info from an ixo blockchain to an instance of PostgreSQL. It gets fed from a [ixo-blocksync-core](https://github.com/ixofoundation/ixo-blocksync-core) database in order to speed up indexing and put less strain on nodes, which means you need an ixo-blocksync-core database connection in order to run this. @@ -30,8 +30,6 @@ Copy `.env.example` to `.env` and configure. If this step is skipped, ixo-blocks ```bash npm install -npx prisma migrate reset -npx prisma generate npm run build npm start ``` diff --git a/docker-compose.yml b/docker-compose.yml index c1177d36..766a10bb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,4 +26,3 @@ services: - 5432:5432 volumes: - ./data/db:/var/lib/postgresql/data - - ./src/prisma/migrations/20230314111809_init/:/docker-entrypoint-initdb.d/ diff --git a/docs/assets/search.js b/docs/assets/search.js index 5ae90049..63f421b9 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":2,\"name\":\"app\",\"url\":\"modules/app.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"app\",\"url\":\"functions/app.app.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"app\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"postgraphile\",\"url\":\"modules/postgraphile.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"Postgraphile\",\"url\":\"functions/postgraphile.Postgraphile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgraphile\"},{\"kind\":2,\"name\":\"swagger\",\"url\":\"modules/swagger.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"graphql/claims\",\"url\":\"modules/graphql_claims.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"ClaimsPlugin\",\"url\":\"functions/graphql_claims.ClaimsPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/claims\"},{\"kind\":2,\"name\":\"graphql/entity\",\"url\":\"modules/graphql_entity.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createParentEntityLoader\",\"url\":\"functions/graphql_entity.createParentEntityLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":64,\"name\":\"createFullEntityLoader\",\"url\":\"functions/graphql_entity.createFullEntityLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":64,\"name\":\"EntityPlugin\",\"url\":\"functions/graphql_entity.EntityPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":2,\"name\":\"graphql/example\",\"url\":\"modules/graphql_example.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"IidPlugin\",\"url\":\"functions/graphql_example.IidPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/example\"},{\"kind\":64,\"name\":\"testPlugin\",\"url\":\"functions/graphql_example.testPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/example\"},{\"kind\":2,\"name\":\"graphql/token\",\"url\":\"modules/graphql_token.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createGetAccountTransactionsLoader\",\"url\":\"functions/graphql_token.createGetAccountTransactionsLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/token\"},{\"kind\":64,\"name\":\"TokenPlugin\",\"url\":\"functions/graphql_token.TokenPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/token\"},{\"kind\":2,\"name\":\"handlers/chain_handler\",\"url\":\"modules/handlers_chain_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createChain\",\"url\":\"functions/handlers_chain_handler.createChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/chain_handler\"},{\"kind\":64,\"name\":\"updateChain\",\"url\":\"functions/handlers_chain_handler.updateChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/chain_handler\"},{\"kind\":64,\"name\":\"getChain\",\"url\":\"functions/handlers_chain_handler.getChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/chain_handler\"},{\"kind\":64,\"name\":\"getLastSyncedBlockHeight\",\"url\":\"functions/handlers_chain_handler.getLastSyncedBlockHeight.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/chain_handler\"},{\"kind\":2,\"name\":\"handlers/claims_handler\",\"url\":\"modules/handlers_claims_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getCollectionById\",\"url\":\"functions/handlers_claims_handler.getCollectionById.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getAllCollectionClaimTypesNull\",\"url\":\"functions/handlers_claims_handler.getAllCollectionClaimTypesNull.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getAllClaimTypesFromCellnode\",\"url\":\"functions/handlers_claims_handler.getAllClaimTypesFromCellnode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getClaimTypesFromCellnode\",\"url\":\"functions/handlers_claims_handler.getClaimTypesFromCellnode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":2,\"name\":\"handlers/entity_handler\",\"url\":\"modules/handlers_entity_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getParentEntityById\",\"url\":\"functions/handlers_entity_handler.getParentEntityById.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"getFullEntityById\",\"url\":\"functions/handlers_entity_handler.getFullEntityById.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"deviceExternalIdsLoaded\",\"url\":\"functions/handlers_entity_handler.deviceExternalIdsLoaded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"getEntitiesExternalId\",\"url\":\"functions/handlers_entity_handler.getEntitiesExternalId.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":2,\"name\":\"handlers/ipfs_handler\",\"url\":\"modules/handlers_ipfs_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getIpfsDocument\",\"url\":\"functions/handlers_ipfs_handler.getIpfsDocument.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/ipfs_handler\"},{\"kind\":2,\"name\":\"handlers/token_handler\",\"url\":\"modules/handlers_token_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createGetAccountTransactionsKey\",\"url\":\"functions/handlers_token_handler.createGetAccountTransactionsKey.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalByAddress\",\"url\":\"functions/handlers_token_handler.getTokensTotalByAddress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForEntities\",\"url\":\"functions/handlers_token_handler.getTokensTotalForEntities.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getAccountTransactions\",\"url\":\"functions/handlers_token_handler.getAccountTransactions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getAccountTokens\",\"url\":\"functions/handlers_token_handler.getAccountTokens.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForCollection\",\"url\":\"functions/handlers_token_handler.getTokensTotalForCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForCollectionAmounts\",\"url\":\"functions/handlers_token_handler.getTokensTotalForCollectionAmounts.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":2,\"name\":\"prisma/prisma_client\",\"url\":\"modules/prisma_prisma_client.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"prisma\",\"url\":\"variables/prisma_prisma_client.prisma.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"prisma/prisma_client\"},{\"kind\":32,\"name\":\"prismaCore\",\"url\":\"variables/prisma_prisma_client.prismaCore.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"prisma/prisma_client\"},{\"kind\":2,\"name\":\"sync/sync_blocks\",\"url\":\"modules/sync_sync_blocks.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"startSync\",\"url\":\"functions/sync_sync_blocks.startSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync/sync_blocks\"},{\"kind\":64,\"name\":\"getBlock\",\"url\":\"functions/sync_sync_blocks.getBlock.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync/sync_blocks\"},{\"kind\":2,\"name\":\"sync/sync_chain\",\"url\":\"modules/sync_sync_chain.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"currentChain\",\"url\":\"variables/sync_sync_chain.currentChain.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":32,\"name\":\"queryClient\",\"url\":\"variables/sync_sync_chain.queryClient.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":32,\"name\":\"registry\",\"url\":\"variables/sync_sync_chain.registry.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":64,\"name\":\"syncChain\",\"url\":\"functions/sync_sync_chain.syncChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":2,\"name\":\"sync_handlers/event_data_sync_handler\",\"url\":\"modules/sync_handlers_event_data_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncEventData\",\"url\":\"functions/sync_handlers_event_data_sync_handler.syncEventData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_data_sync_handler\"},{\"kind\":2,\"name\":\"sync_handlers/event_data_sync_wasm_handler\",\"url\":\"modules/sync_handlers_event_data_sync_wasm_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncWasmEventData\",\"url\":\"functions/sync_handlers_event_data_sync_wasm_handler.syncWasmEventData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_data_sync_wasm_handler\"},{\"kind\":2,\"name\":\"sync_handlers/event_sync_handler\",\"url\":\"modules/sync_handlers_event_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncEvents\",\"url\":\"functions/sync_handlers_event_sync_handler.syncEvents.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_sync_handler\"},{\"kind\":2,\"name\":\"sync_handlers/transaction_sync_handler\",\"url\":\"modules/sync_handlers_transaction_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncTransactions\",\"url\":\"functions/sync_handlers_transaction_sync_handler.syncTransactions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/transaction_sync_handler\"},{\"kind\":2,\"name\":\"types/Event\",\"url\":\"modules/types_Event.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":8,\"name\":\"EventTypes\",\"url\":\"enums/types_Event.EventTypes.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":16,\"name\":\"createIid\",\"url\":\"enums/types_Event.EventTypes.html#createIid\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateIid\",\"url\":\"enums/types_Event.EventTypes.html#updateIid\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createEntity\",\"url\":\"enums/types_Event.EventTypes.html#createEntity\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateEntity\",\"url\":\"enums/types_Event.EventTypes.html#updateEntity\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createCollection\",\"url\":\"enums/types_Event.EventTypes.html#createCollection\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateCollection\",\"url\":\"enums/types_Event.EventTypes.html#updateCollection\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"submitClaim\",\"url\":\"enums/types_Event.EventTypes.html#submitClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateClaim\",\"url\":\"enums/types_Event.EventTypes.html#updateClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"disputeClaim\",\"url\":\"enums/types_Event.EventTypes.html#disputeClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createToken\",\"url\":\"enums/types_Event.EventTypes.html#createToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateToken\",\"url\":\"enums/types_Event.EventTypes.html#updateToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"mintToken\",\"url\":\"enums/types_Event.EventTypes.html#mintToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createBond\",\"url\":\"enums/types_Event.EventTypes.html#createBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateBond\",\"url\":\"enums/types_Event.EventTypes.html#updateBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"setNextAlphaBond\",\"url\":\"enums/types_Event.EventTypes.html#setNextAlphaBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"buyOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#buyOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"sellOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#sellOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"swapOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#swapOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"outcomePaymentBond\",\"url\":\"enums/types_Event.EventTypes.html#outcomePaymentBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"shareWithdrawalBond\",\"url\":\"enums/types_Event.EventTypes.html#shareWithdrawalBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"reserveWithdrawalBond\",\"url\":\"enums/types_Event.EventTypes.html#reserveWithdrawalBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":32,\"name\":\"EventTypesArray\",\"url\":\"variables/types_Event.EventTypesArray.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":32,\"name\":\"EventTypesAttributeKey\",\"url\":\"variables/types_Event.EventTypesAttributeKey.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":4194304,\"name\":\"Attribute\",\"url\":\"types/types_Event.Attribute.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Event.Attribute.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/Event.Attribute\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"types/types_Event.Attribute.html#__type.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/Event.Attribute.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/types_Event.Attribute.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/Event.Attribute.__type\"},{\"kind\":2,\"name\":\"types/General\",\"url\":\"modules/types_General.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"ArrElement\",\"url\":\"types/types_General.ArrElement.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/General\"},{\"kind\":2,\"name\":\"types/getBlock\",\"url\":\"modules/types_getBlock.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"GetBlockType\",\"url\":\"types/types_getBlock.GetBlockType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/getBlock\"},{\"kind\":4194304,\"name\":\"GetTransactionsType\",\"url\":\"types/types_getBlock.GetTransactionsType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/getBlock\"},{\"kind\":4194304,\"name\":\"GetEventsType\",\"url\":\"types/types_getBlock.GetEventsType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/getBlock\"},{\"kind\":4194304,\"name\":\"GetEventType\",\"url\":\"types/types_getBlock.GetEventType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/getBlock\"},{\"kind\":2,\"name\":\"util/helpers\",\"url\":\"modules/util_helpers.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"upperHexFromUint8Array\",\"url\":\"functions/util_helpers.upperHexFromUint8Array.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getDocFromAttributes\",\"url\":\"functions/util_helpers.getDocFromAttributes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getValueFromAttributes\",\"url\":\"functions/util_helpers.getValueFromAttributes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getWasmAttr\",\"url\":\"functions/util_helpers.getWasmAttr.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"base64ToJson\",\"url\":\"functions/util_helpers.base64ToJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"splitAttributesByKeyValue\",\"url\":\"functions/util_helpers.splitAttributesByKeyValue.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"chunkArray\",\"url\":\"functions/util_helpers.chunkArray.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"countTokensByType\",\"url\":\"functions/util_helpers.countTokensByType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":2,\"name\":\"util/proto\",\"url\":\"modules/util_proto.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getLatestBlock\",\"url\":\"functions/util_proto.getLatestBlock.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/proto\"},{\"kind\":64,\"name\":\"decodeMessage\",\"url\":\"functions/util_proto.decodeMessage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/proto\"},{\"kind\":2,\"name\":\"util/rate-limiter\",\"url\":\"modules/util_rate_limiter.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"web3StorageRateLimiter\",\"url\":\"variables/util_rate_limiter.web3StorageRateLimiter.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/rate-limiter\"},{\"kind\":2,\"name\":\"util/secrets\",\"url\":\"modules/util_secrets.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"PORT\",\"url\":\"variables/util_secrets.PORT.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"SENTRYDSN\",\"url\":\"variables/util_secrets.SENTRYDSN.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"RPC\",\"url\":\"variables/util_secrets.RPC.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"DATABASE_URL\",\"url\":\"variables/util_secrets.DATABASE_URL.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"DATABASE_URL_CORE\",\"url\":\"variables/util_secrets.DATABASE_URL_CORE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"TRUST_PROXY\",\"url\":\"variables/util_secrets.TRUST_PROXY.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"ENTITY_MODULE_CONTRACT_ADDRESS\",\"url\":\"variables/util_secrets.ENTITY_MODULE_CONTRACT_ADDRESS.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"IPFS_SERVICE_MAPPING\",\"url\":\"variables/util_secrets.IPFS_SERVICE_MAPPING.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":2,\"name\":\"util/sleep\",\"url\":\"modules/util_sleep.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"sleep\",\"url\":\"functions/util_sleep.sleep.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/sleep\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,39.169]],[\"comment/0\",[]],[\"name/1\",[0,39.169]],[\"comment/1\",[]],[\"name/2\",[1,44.294]],[\"comment/2\",[]],[\"name/3\",[2,39.169]],[\"comment/3\",[]],[\"name/4\",[2,39.169]],[\"comment/4\",[]],[\"name/5\",[3,44.294]],[\"comment/5\",[]],[\"name/6\",[4,44.294]],[\"comment/6\",[]],[\"name/7\",[5,44.294]],[\"comment/7\",[]],[\"name/8\",[6,44.294]],[\"comment/8\",[]],[\"name/9\",[7,44.294]],[\"comment/9\",[]],[\"name/10\",[8,44.294]],[\"comment/10\",[]],[\"name/11\",[9,44.294]],[\"comment/11\",[]],[\"name/12\",[10,44.294]],[\"comment/12\",[]],[\"name/13\",[11,44.294]],[\"comment/13\",[]],[\"name/14\",[12,44.294]],[\"comment/14\",[]],[\"name/15\",[13,44.294]],[\"comment/15\",[]],[\"name/16\",[14,44.294]],[\"comment/16\",[]],[\"name/17\",[15,44.294]],[\"comment/17\",[]],[\"name/18\",[16,44.294]],[\"comment/18\",[]],[\"name/19\",[17,44.294]],[\"comment/19\",[]],[\"name/20\",[18,44.294]],[\"comment/20\",[]],[\"name/21\",[19,44.294]],[\"comment/21\",[]],[\"name/22\",[20,44.294]],[\"comment/22\",[]],[\"name/23\",[21,44.294]],[\"comment/23\",[]],[\"name/24\",[22,44.294]],[\"comment/24\",[]],[\"name/25\",[23,44.294]],[\"comment/25\",[]],[\"name/26\",[24,44.294]],[\"comment/26\",[]],[\"name/27\",[25,44.294]],[\"comment/27\",[]],[\"name/28\",[26,44.294]],[\"comment/28\",[]],[\"name/29\",[27,44.294]],[\"comment/29\",[]],[\"name/30\",[28,44.294]],[\"comment/30\",[]],[\"name/31\",[29,44.294]],[\"comment/31\",[]],[\"name/32\",[30,44.294]],[\"comment/32\",[]],[\"name/33\",[31,44.294]],[\"comment/33\",[]],[\"name/34\",[32,44.294]],[\"comment/34\",[]],[\"name/35\",[33,44.294]],[\"comment/35\",[]],[\"name/36\",[34,44.294]],[\"comment/36\",[]],[\"name/37\",[35,44.294]],[\"comment/37\",[]],[\"name/38\",[36,44.294]],[\"comment/38\",[]],[\"name/39\",[37,44.294]],[\"comment/39\",[]],[\"name/40\",[38,44.294]],[\"comment/40\",[]],[\"name/41\",[39,44.294]],[\"comment/41\",[]],[\"name/42\",[40,44.294]],[\"comment/42\",[]],[\"name/43\",[41,44.294]],[\"comment/43\",[]],[\"name/44\",[42,44.294]],[\"comment/44\",[]],[\"name/45\",[43,44.294]],[\"comment/45\",[]],[\"name/46\",[44,44.294]],[\"comment/46\",[]],[\"name/47\",[45,44.294]],[\"comment/47\",[]],[\"name/48\",[46,44.294]],[\"comment/48\",[]],[\"name/49\",[47,44.294]],[\"comment/49\",[]],[\"name/50\",[48,44.294]],[\"comment/50\",[]],[\"name/51\",[49,44.294]],[\"comment/51\",[]],[\"name/52\",[50,44.294]],[\"comment/52\",[]],[\"name/53\",[51,44.294]],[\"comment/53\",[]],[\"name/54\",[52,44.294]],[\"comment/54\",[]],[\"name/55\",[53,44.294]],[\"comment/55\",[]],[\"name/56\",[54,44.294]],[\"comment/56\",[]],[\"name/57\",[55,44.294]],[\"comment/57\",[]],[\"name/58\",[56,44.294]],[\"comment/58\",[]],[\"name/59\",[57,44.294]],[\"comment/59\",[]],[\"name/60\",[58,44.294]],[\"comment/60\",[]],[\"name/61\",[59,44.294]],[\"comment/61\",[]],[\"name/62\",[60,44.294]],[\"comment/62\",[]],[\"name/63\",[61,44.294]],[\"comment/63\",[]],[\"name/64\",[62,44.294]],[\"comment/64\",[]],[\"name/65\",[63,44.294]],[\"comment/65\",[]],[\"name/66\",[64,44.294]],[\"comment/66\",[]],[\"name/67\",[65,44.294]],[\"comment/67\",[]],[\"name/68\",[66,44.294]],[\"comment/68\",[]],[\"name/69\",[67,44.294]],[\"comment/69\",[]],[\"name/70\",[68,44.294]],[\"comment/70\",[]],[\"name/71\",[69,44.294]],[\"comment/71\",[]],[\"name/72\",[70,44.294]],[\"comment/72\",[]],[\"name/73\",[71,44.294]],[\"comment/73\",[]],[\"name/74\",[72,44.294]],[\"comment/74\",[]],[\"name/75\",[73,44.294]],[\"comment/75\",[]],[\"name/76\",[74,44.294]],[\"comment/76\",[]],[\"name/77\",[75,44.294]],[\"comment/77\",[]],[\"name/78\",[76,44.294]],[\"comment/78\",[]],[\"name/79\",[77,44.294]],[\"comment/79\",[]],[\"name/80\",[78,44.294]],[\"comment/80\",[]],[\"name/81\",[79,44.294]],[\"comment/81\",[]],[\"name/82\",[80,44.294]],[\"comment/82\",[]],[\"name/83\",[81,44.294]],[\"comment/83\",[]],[\"name/84\",[82,44.294]],[\"comment/84\",[]],[\"name/85\",[83,44.294]],[\"comment/85\",[]],[\"name/86\",[84,44.294]],[\"comment/86\",[]],[\"name/87\",[85,44.294]],[\"comment/87\",[]],[\"name/88\",[86,44.294]],[\"comment/88\",[]],[\"name/89\",[87,44.294]],[\"comment/89\",[]],[\"name/90\",[88,44.294]],[\"comment/90\",[]],[\"name/91\",[89,44.294]],[\"comment/91\",[]],[\"name/92\",[90,44.294]],[\"comment/92\",[]],[\"name/93\",[91,44.294]],[\"comment/93\",[]],[\"name/94\",[92,44.294]],[\"comment/94\",[]],[\"name/95\",[93,44.294]],[\"comment/95\",[]],[\"name/96\",[94,44.294]],[\"comment/96\",[]],[\"name/97\",[95,44.294]],[\"comment/97\",[]],[\"name/98\",[96,44.294]],[\"comment/98\",[]],[\"name/99\",[97,44.294]],[\"comment/99\",[]],[\"name/100\",[98,44.294]],[\"comment/100\",[]],[\"name/101\",[99,44.294]],[\"comment/101\",[]],[\"name/102\",[100,44.294]],[\"comment/102\",[]],[\"name/103\",[101,44.294]],[\"comment/103\",[]],[\"name/104\",[102,44.294]],[\"comment/104\",[]],[\"name/105\",[103,44.294]],[\"comment/105\",[]],[\"name/106\",[104,44.294]],[\"comment/106\",[]],[\"name/107\",[105,44.294]],[\"comment/107\",[]],[\"name/108\",[106,44.294]],[\"comment/108\",[]],[\"name/109\",[107,44.294]],[\"comment/109\",[]],[\"name/110\",[108,31.478,109,31.478]],[\"comment/110\",[]],[\"name/111\",[110,44.294]],[\"comment/111\",[]],[\"name/112\",[111,44.294]],[\"comment/112\",[]],[\"name/113\",[112,44.294]],[\"comment/113\",[]],[\"name/114\",[113,44.294]],[\"comment/114\",[]],[\"name/115\",[114,44.294]],[\"comment/115\",[]],[\"name/116\",[115,44.294]],[\"comment/116\",[]],[\"name/117\",[116,44.294]],[\"comment/117\",[]],[\"name/118\",[117,44.294]],[\"comment/118\",[]],[\"name/119\",[118,44.294]],[\"comment/119\",[]],[\"name/120\",[119,44.294]],[\"comment/120\",[]],[\"name/121\",[120,44.294]],[\"comment/121\",[]],[\"name/122\",[121,44.294]],[\"comment/122\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":86,\"name\":{\"88\":{}},\"comment\":{}}],[\"app\",{\"_index\":0,\"name\":{\"0\":{},\"1\":{}},\"comment\":{}}],[\"arrelement\",{\"_index\":90,\"name\":{\"92\":{}},\"comment\":{}}],[\"attribute\",{\"_index\":85,\"name\":{\"87\":{}},\"comment\":{}}],[\"base64tojson\",{\"_index\":101,\"name\":{\"103\":{}},\"comment\":{}}],[\"buyorderbond\",{\"_index\":77,\"name\":{\"79\":{}},\"comment\":{}}],[\"chunkarray\",{\"_index\":103,\"name\":{\"105\":{}},\"comment\":{}}],[\"claimsplugin\",{\"_index\":5,\"name\":{\"7\":{}},\"comment\":{}}],[\"counttokensbytype\",{\"_index\":104,\"name\":{\"106\":{}},\"comment\":{}}],[\"createbond\",{\"_index\":74,\"name\":{\"76\":{}},\"comment\":{}}],[\"createchain\",{\"_index\":17,\"name\":{\"19\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":66,\"name\":{\"68\":{}},\"comment\":{}}],[\"createentity\",{\"_index\":64,\"name\":{\"66\":{}},\"comment\":{}}],[\"createfullentityloader\",{\"_index\":8,\"name\":{\"10\":{}},\"comment\":{}}],[\"creategetaccounttransactionskey\",{\"_index\":34,\"name\":{\"36\":{}},\"comment\":{}}],[\"creategetaccounttransactionsloader\",{\"_index\":14,\"name\":{\"16\":{}},\"comment\":{}}],[\"createiid\",{\"_index\":62,\"name\":{\"64\":{}},\"comment\":{}}],[\"createparententityloader\",{\"_index\":7,\"name\":{\"9\":{}},\"comment\":{}}],[\"createtoken\",{\"_index\":71,\"name\":{\"73\":{}},\"comment\":{}}],[\"currentchain\",{\"_index\":48,\"name\":{\"50\":{}},\"comment\":{}}],[\"database_url\",{\"_index\":115,\"name\":{\"116\":{}},\"comment\":{}}],[\"database_url_core\",{\"_index\":116,\"name\":{\"117\":{}},\"comment\":{}}],[\"decodemessage\",{\"_index\":107,\"name\":{\"109\":{}},\"comment\":{}}],[\"deviceexternalidsloaded\",{\"_index\":29,\"name\":{\"31\":{}},\"comment\":{}}],[\"disputeclaim\",{\"_index\":70,\"name\":{\"72\":{}},\"comment\":{}}],[\"entity_module_contract_address\",{\"_index\":118,\"name\":{\"119\":{}},\"comment\":{}}],[\"entityplugin\",{\"_index\":9,\"name\":{\"11\":{}},\"comment\":{}}],[\"eventtypes\",{\"_index\":61,\"name\":{\"63\":{}},\"comment\":{}}],[\"eventtypesarray\",{\"_index\":83,\"name\":{\"85\":{}},\"comment\":{}}],[\"eventtypesattributekey\",{\"_index\":84,\"name\":{\"86\":{}},\"comment\":{}}],[\"getaccounttokens\",{\"_index\":38,\"name\":{\"40\":{}},\"comment\":{}}],[\"getaccounttransactions\",{\"_index\":37,\"name\":{\"39\":{}},\"comment\":{}}],[\"getallclaimtypesfromcellnode\",{\"_index\":24,\"name\":{\"26\":{}},\"comment\":{}}],[\"getallcollectionclaimtypesnull\",{\"_index\":23,\"name\":{\"25\":{}},\"comment\":{}}],[\"getblock\",{\"_index\":46,\"name\":{\"48\":{}},\"comment\":{}}],[\"getblocktype\",{\"_index\":92,\"name\":{\"94\":{}},\"comment\":{}}],[\"getchain\",{\"_index\":19,\"name\":{\"21\":{}},\"comment\":{}}],[\"getclaimtypesfromcellnode\",{\"_index\":25,\"name\":{\"27\":{}},\"comment\":{}}],[\"getcollectionbyid\",{\"_index\":22,\"name\":{\"24\":{}},\"comment\":{}}],[\"getdocfromattributes\",{\"_index\":98,\"name\":{\"100\":{}},\"comment\":{}}],[\"getentitiesexternalid\",{\"_index\":30,\"name\":{\"32\":{}},\"comment\":{}}],[\"geteventstype\",{\"_index\":94,\"name\":{\"96\":{}},\"comment\":{}}],[\"geteventtype\",{\"_index\":95,\"name\":{\"97\":{}},\"comment\":{}}],[\"getfullentitybyid\",{\"_index\":28,\"name\":{\"30\":{}},\"comment\":{}}],[\"getipfsdocument\",{\"_index\":32,\"name\":{\"34\":{}},\"comment\":{}}],[\"getlastsyncedblockheight\",{\"_index\":20,\"name\":{\"22\":{}},\"comment\":{}}],[\"getlatestblock\",{\"_index\":106,\"name\":{\"108\":{}},\"comment\":{}}],[\"getparententitybyid\",{\"_index\":27,\"name\":{\"29\":{}},\"comment\":{}}],[\"gettokenstotalbyaddress\",{\"_index\":35,\"name\":{\"37\":{}},\"comment\":{}}],[\"gettokenstotalforcollection\",{\"_index\":39,\"name\":{\"41\":{}},\"comment\":{}}],[\"gettokenstotalforcollectionamounts\",{\"_index\":40,\"name\":{\"42\":{}},\"comment\":{}}],[\"gettokenstotalforentities\",{\"_index\":36,\"name\":{\"38\":{}},\"comment\":{}}],[\"gettransactionstype\",{\"_index\":93,\"name\":{\"95\":{}},\"comment\":{}}],[\"getvaluefromattributes\",{\"_index\":99,\"name\":{\"101\":{}},\"comment\":{}}],[\"getwasmattr\",{\"_index\":100,\"name\":{\"102\":{}},\"comment\":{}}],[\"graphql/claims\",{\"_index\":4,\"name\":{\"6\":{}},\"comment\":{}}],[\"graphql/entity\",{\"_index\":6,\"name\":{\"8\":{}},\"comment\":{}}],[\"graphql/example\",{\"_index\":10,\"name\":{\"12\":{}},\"comment\":{}}],[\"graphql/token\",{\"_index\":13,\"name\":{\"15\":{}},\"comment\":{}}],[\"handlers/chain_handler\",{\"_index\":16,\"name\":{\"18\":{}},\"comment\":{}}],[\"handlers/claims_handler\",{\"_index\":21,\"name\":{\"23\":{}},\"comment\":{}}],[\"handlers/entity_handler\",{\"_index\":26,\"name\":{\"28\":{}},\"comment\":{}}],[\"handlers/ipfs_handler\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"handlers/token_handler\",{\"_index\":33,\"name\":{\"35\":{}},\"comment\":{}}],[\"iidplugin\",{\"_index\":11,\"name\":{\"13\":{}},\"comment\":{}}],[\"index\",{\"_index\":1,\"name\":{\"2\":{}},\"comment\":{}}],[\"ipfs_service_mapping\",{\"_index\":119,\"name\":{\"120\":{}},\"comment\":{}}],[\"key\",{\"_index\":87,\"name\":{\"89\":{}},\"comment\":{}}],[\"limiter\",{\"_index\":109,\"name\":{\"110\":{}},\"comment\":{}}],[\"minttoken\",{\"_index\":73,\"name\":{\"75\":{}},\"comment\":{}}],[\"outcomepaymentbond\",{\"_index\":80,\"name\":{\"82\":{}},\"comment\":{}}],[\"port\",{\"_index\":112,\"name\":{\"113\":{}},\"comment\":{}}],[\"postgraphile\",{\"_index\":2,\"name\":{\"3\":{},\"4\":{}},\"comment\":{}}],[\"prisma\",{\"_index\":42,\"name\":{\"44\":{}},\"comment\":{}}],[\"prisma/prisma_client\",{\"_index\":41,\"name\":{\"43\":{}},\"comment\":{}}],[\"prismacore\",{\"_index\":43,\"name\":{\"45\":{}},\"comment\":{}}],[\"queryclient\",{\"_index\":49,\"name\":{\"51\":{}},\"comment\":{}}],[\"registry\",{\"_index\":50,\"name\":{\"52\":{}},\"comment\":{}}],[\"reservewithdrawalbond\",{\"_index\":82,\"name\":{\"84\":{}},\"comment\":{}}],[\"rpc\",{\"_index\":114,\"name\":{\"115\":{}},\"comment\":{}}],[\"sellorderbond\",{\"_index\":78,\"name\":{\"80\":{}},\"comment\":{}}],[\"sentrydsn\",{\"_index\":113,\"name\":{\"114\":{}},\"comment\":{}}],[\"setnextalphabond\",{\"_index\":76,\"name\":{\"78\":{}},\"comment\":{}}],[\"sharewithdrawalbond\",{\"_index\":81,\"name\":{\"83\":{}},\"comment\":{}}],[\"sleep\",{\"_index\":121,\"name\":{\"122\":{}},\"comment\":{}}],[\"splitattributesbykeyvalue\",{\"_index\":102,\"name\":{\"104\":{}},\"comment\":{}}],[\"startsync\",{\"_index\":45,\"name\":{\"47\":{}},\"comment\":{}}],[\"submitclaim\",{\"_index\":68,\"name\":{\"70\":{}},\"comment\":{}}],[\"swagger\",{\"_index\":3,\"name\":{\"5\":{}},\"comment\":{}}],[\"swaporderbond\",{\"_index\":79,\"name\":{\"81\":{}},\"comment\":{}}],[\"sync/sync_blocks\",{\"_index\":44,\"name\":{\"46\":{}},\"comment\":{}}],[\"sync/sync_chain\",{\"_index\":47,\"name\":{\"49\":{}},\"comment\":{}}],[\"sync_handlers/event_data_sync_handler\",{\"_index\":52,\"name\":{\"54\":{}},\"comment\":{}}],[\"sync_handlers/event_data_sync_wasm_handler\",{\"_index\":54,\"name\":{\"56\":{}},\"comment\":{}}],[\"sync_handlers/event_sync_handler\",{\"_index\":56,\"name\":{\"58\":{}},\"comment\":{}}],[\"sync_handlers/transaction_sync_handler\",{\"_index\":58,\"name\":{\"60\":{}},\"comment\":{}}],[\"syncchain\",{\"_index\":51,\"name\":{\"53\":{}},\"comment\":{}}],[\"synceventdata\",{\"_index\":53,\"name\":{\"55\":{}},\"comment\":{}}],[\"syncevents\",{\"_index\":57,\"name\":{\"59\":{}},\"comment\":{}}],[\"synctransactions\",{\"_index\":59,\"name\":{\"61\":{}},\"comment\":{}}],[\"syncwasmeventdata\",{\"_index\":55,\"name\":{\"57\":{}},\"comment\":{}}],[\"testplugin\",{\"_index\":12,\"name\":{\"14\":{}},\"comment\":{}}],[\"tokenplugin\",{\"_index\":15,\"name\":{\"17\":{}},\"comment\":{}}],[\"trust_proxy\",{\"_index\":117,\"name\":{\"118\":{}},\"comment\":{}}],[\"types/event\",{\"_index\":60,\"name\":{\"62\":{}},\"comment\":{}}],[\"types/general\",{\"_index\":89,\"name\":{\"91\":{}},\"comment\":{}}],[\"types/getblock\",{\"_index\":91,\"name\":{\"93\":{}},\"comment\":{}}],[\"updatebond\",{\"_index\":75,\"name\":{\"77\":{}},\"comment\":{}}],[\"updatechain\",{\"_index\":18,\"name\":{\"20\":{}},\"comment\":{}}],[\"updateclaim\",{\"_index\":69,\"name\":{\"71\":{}},\"comment\":{}}],[\"updatecollection\",{\"_index\":67,\"name\":{\"69\":{}},\"comment\":{}}],[\"updateentity\",{\"_index\":65,\"name\":{\"67\":{}},\"comment\":{}}],[\"updateiid\",{\"_index\":63,\"name\":{\"65\":{}},\"comment\":{}}],[\"updatetoken\",{\"_index\":72,\"name\":{\"74\":{}},\"comment\":{}}],[\"upperhexfromuint8array\",{\"_index\":97,\"name\":{\"99\":{}},\"comment\":{}}],[\"util/helpers\",{\"_index\":96,\"name\":{\"98\":{}},\"comment\":{}}],[\"util/proto\",{\"_index\":105,\"name\":{\"107\":{}},\"comment\":{}}],[\"util/rate\",{\"_index\":108,\"name\":{\"110\":{}},\"comment\":{}}],[\"util/secrets\",{\"_index\":111,\"name\":{\"112\":{}},\"comment\":{}}],[\"util/sleep\",{\"_index\":120,\"name\":{\"121\":{}},\"comment\":{}}],[\"value\",{\"_index\":88,\"name\":{\"90\":{}},\"comment\":{}}],[\"web3storageratelimiter\",{\"_index\":110,\"name\":{\"111\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":2,\"name\":\"app\",\"url\":\"modules/app.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"app\",\"url\":\"functions/app.app.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"app\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"postgraphile\",\"url\":\"modules/postgraphile.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"Postgraphile\",\"url\":\"functions/postgraphile.Postgraphile.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgraphile\"},{\"kind\":2,\"name\":\"swagger.json\",\"url\":\"modules/swagger_json.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":1024,\"name\":\"export=\",\"url\":\"modules/swagger_json.html#export_\",\"classes\":\"tsd-kind-property tsd-parent-kind-module\",\"parent\":\"swagger.json\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=\"},{\"kind\":1024,\"name\":\"swagger\",\"url\":\"modules/swagger_json.html#export_.__type.swagger\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"modules/swagger_json.html#export_.__type.info\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.info.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.info\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"modules/swagger_json.html#export_.__type.info.__type-1.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.info.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"modules/swagger_json.html#export_.__type.info.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.info.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.info.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.info.__type\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"modules/swagger_json.html#export_.__type.host\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":1024,\"name\":\"basePath\",\"url\":\"modules/swagger_json.html#export_.__type.basePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":1024,\"name\":\"schemes\",\"url\":\"modules/swagger_json.html#export_.__type.schemes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":1024,\"name\":\"paths\",\"url\":\"modules/swagger_json.html#export_.__type.paths\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths\"},{\"kind\":1024,\"name\":\"/\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.description-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type\"},{\"kind\":1024,\"name\":\"parameters\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.parameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type\"},{\"kind\":1024,\"name\":\"responses\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.responses\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.responses.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type.responses\"},{\"kind\":1024,\"name\":\"200\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.responses.__type-5.200\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type.responses.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.responses.__type-5.200.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type.responses.__type.200\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._.__type-3.get.__type-4.responses.__type-5.200.__type-6.description-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./.__type.get.__type.responses.__type.200.__type\"},{\"kind\":1024,\"name\":\"/api/graphql_schema\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.description-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type\"},{\"kind\":1024,\"name\":\"parameters\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.parameters-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type\"},{\"kind\":1024,\"name\":\"responses\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.responses-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.responses-2.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type.responses\"},{\"kind\":1024,\"name\":\"200\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.responses-2.__type-13.200-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type.responses.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.responses-2.__type-13.200-2.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type.responses.__type.200\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_graphql_schema.__type-11.get-2.__type-12.responses-2.__type-13.200-2.__type-14.description-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/graphql_schema.__type.get.__type.responses.__type.200.__type\"},{\"kind\":1024,\"name\":\"/api/ipfs/{cid}\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type.get\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3.__type-16.description-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type.get.__type\"},{\"kind\":1024,\"name\":\"parameters\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3.__type-16.parameters-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type.get.__type\"},{\"kind\":1024,\"name\":\"responses\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3.__type-16.responses-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type.get.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_ipfs__cid_.__type-15.get-3.__type-16.responses-3.__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/ipfs/{cid}.__type.get.__type.responses\"},{\"kind\":1024,\"name\":\"/api/claims/collection/{id}/claims\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.description-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type\"},{\"kind\":1024,\"name\":\"parameters\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.parameters-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type\"},{\"kind\":1024,\"name\":\"responses\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.responses-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.responses-1.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type.responses\"},{\"kind\":1024,\"name\":\"200\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.responses-1.__type-9.200-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type.responses.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.responses-1.__type-9.200-1.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type.responses.__type.200\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_claims_collection__id__claims.__type-7.get-1.__type-8.responses-1.__type-9.200-1.__type-10.description-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/claims/collection/{id}/claims.__type.get.__type.responses.__type.200.__type\"},{\"kind\":1024,\"name\":\"/api/tokenomics/fetchAccounts\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts\"},{\"kind\":1024,\"name\":\"get\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.description-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type\"},{\"kind\":1024,\"name\":\"parameters\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.parameters-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type\"},{\"kind\":1024,\"name\":\"responses\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.responses-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.responses-4.__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type.responses\"},{\"kind\":1024,\"name\":\"200\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.responses-4.__type-20.200-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type.responses.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.responses-4.__type-20.200-3.__type-21\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type.responses.__type.200\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"modules/swagger_json.html#export_.__type.paths.__type-2._api_tokenomics_fetchAccounts.__type-18.get-4.__type-19.responses-4.__type-20.200-3.__type-21.description-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"swagger.json.export=.__type.paths.__type./api/tokenomics/fetchAccounts.__type.get.__type.responses.__type.200.__type\"},{\"kind\":2,\"name\":\"swagger\",\"url\":\"modules/swagger.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"graphql/claims\",\"url\":\"modules/graphql_claims.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"ClaimsPlugin\",\"url\":\"functions/graphql_claims.ClaimsPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/claims\"},{\"kind\":2,\"name\":\"graphql/entity\",\"url\":\"modules/graphql_entity.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"ParentEntityLoader\",\"url\":\"types/graphql_entity.ParentEntityLoader.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":64,\"name\":\"createParentEntityLoader\",\"url\":\"functions/graphql_entity.createParentEntityLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":4194304,\"name\":\"FullEntityLoader\",\"url\":\"types/graphql_entity.FullEntityLoader.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":64,\"name\":\"createFullEntityLoader\",\"url\":\"functions/graphql_entity.createFullEntityLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":64,\"name\":\"EntityPlugin\",\"url\":\"functions/graphql_entity.EntityPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/entity\"},{\"kind\":2,\"name\":\"graphql/example\",\"url\":\"modules/graphql_example.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"IidPlugin\",\"url\":\"functions/graphql_example.IidPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/example\"},{\"kind\":64,\"name\":\"testPlugin\",\"url\":\"functions/graphql_example.testPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/example\"},{\"kind\":2,\"name\":\"graphql/smart_tags_plugin\",\"url\":\"modules/graphql_smart_tags_plugin.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"SmartTagsPlugin\",\"url\":\"functions/graphql_smart_tags_plugin.SmartTagsPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/smart_tags_plugin\"},{\"kind\":2,\"name\":\"graphql/token\",\"url\":\"modules/graphql_token.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"GetAccountTransactionsLoader\",\"url\":\"types/graphql_token.GetAccountTransactionsLoader.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graphql/token\"},{\"kind\":64,\"name\":\"createGetAccountTransactionsLoader\",\"url\":\"functions/graphql_token.createGetAccountTransactionsLoader.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/token\"},{\"kind\":64,\"name\":\"TokenPlugin\",\"url\":\"functions/graphql_token.TokenPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/token\"},{\"kind\":2,\"name\":\"graphql/tokenomics\",\"url\":\"modules/graphql_tokenomics.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"TokenomicsPlugin\",\"url\":\"functions/graphql_tokenomics.TokenomicsPlugin.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graphql/tokenomics\"},{\"kind\":2,\"name\":\"handlers/claims_handler\",\"url\":\"modules/handlers_claims_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getCollectionClaims\",\"url\":\"functions/handlers_claims_handler.getCollectionClaims.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getCollectionClaimSchemaTypesLoaded\",\"url\":\"functions/handlers_claims_handler.getCollectionClaimSchemaTypesLoaded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getAllClaimTypesFromCellnode\",\"url\":\"functions/handlers_claims_handler.getAllClaimTypesFromCellnode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":64,\"name\":\"getClaimTypesFromCellnode\",\"url\":\"functions/handlers_claims_handler.getClaimTypesFromCellnode.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/claims_handler\"},{\"kind\":2,\"name\":\"handlers/entity_handler\",\"url\":\"modules/handlers_entity_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getParentEntityById\",\"url\":\"functions/handlers_entity_handler.getParentEntityById.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"getFullEntityById\",\"url\":\"functions/handlers_entity_handler.getFullEntityById.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"deviceExternalIdsLoaded\",\"url\":\"functions/handlers_entity_handler.deviceExternalIdsLoaded.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":64,\"name\":\"getEntitiesExternalId\",\"url\":\"functions/handlers_entity_handler.getEntitiesExternalId.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/entity_handler\"},{\"kind\":2,\"name\":\"handlers/ipfs_handler\",\"url\":\"modules/handlers_ipfs_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getIpfsDocument\",\"url\":\"functions/handlers_ipfs_handler.getIpfsDocument.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/ipfs_handler\"},{\"kind\":2,\"name\":\"handlers/token_handler\",\"url\":\"modules/handlers_token_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"createGetAccountTransactionsKey\",\"url\":\"functions/handlers_token_handler.createGetAccountTransactionsKey.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalByAddress\",\"url\":\"functions/handlers_token_handler.getTokensTotalByAddress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForEntities\",\"url\":\"functions/handlers_token_handler.getTokensTotalForEntities.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getAccountTransactions\",\"url\":\"functions/handlers_token_handler.getAccountTransactions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getAccountTokens\",\"url\":\"functions/handlers_token_handler.getAccountTokens.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForCollection\",\"url\":\"functions/handlers_token_handler.getTokensTotalForCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":64,\"name\":\"getTokensTotalForCollectionAmounts\",\"url\":\"functions/handlers_token_handler.getTokensTotalForCollectionAmounts.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/token_handler\"},{\"kind\":2,\"name\":\"handlers/tokenomics_handler\",\"url\":\"modules/handlers_tokenomics_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"supplyTotal\",\"url\":\"functions/handlers_tokenomics_handler.supplyTotal.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":64,\"name\":\"supplyIBC\",\"url\":\"functions/handlers_tokenomics_handler.supplyIBC.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":64,\"name\":\"supplyStaked\",\"url\":\"functions/handlers_tokenomics_handler.supplyStaked.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":64,\"name\":\"supplyCommunityPool\",\"url\":\"functions/handlers_tokenomics_handler.supplyCommunityPool.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":64,\"name\":\"inflation\",\"url\":\"functions/handlers_tokenomics_handler.inflation.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":64,\"name\":\"getAccountsAndBalances\",\"url\":\"functions/handlers_tokenomics_handler.getAccountsAndBalances.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"handlers/tokenomics_handler\"},{\"kind\":2,\"name\":\"postgres/bond\",\"url\":\"modules/postgres_bond.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Bond\",\"url\":\"types/postgres_bond.Bond.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.Bond.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.Bond\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.Bond.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/postgres_bond.Bond.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"types/postgres_bond.Bond.html#__type.token\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/postgres_bond.Bond.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/postgres_bond.Bond.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"functionType\",\"url\":\"types/postgres_bond.Bond.html#__type.functionType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"functionParameters\",\"url\":\"types/postgres_bond.Bond.html#__type.functionParameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"creatorDid\",\"url\":\"types/postgres_bond.Bond.html#__type.creatorDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"controllerDid\",\"url\":\"types/postgres_bond.Bond.html#__type.controllerDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"reserveTokens\",\"url\":\"types/postgres_bond.Bond.html#__type.reserveTokens\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"txFeePercentage\",\"url\":\"types/postgres_bond.Bond.html#__type.txFeePercentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"exitFeePercentage\",\"url\":\"types/postgres_bond.Bond.html#__type.exitFeePercentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"feeAddress\",\"url\":\"types/postgres_bond.Bond.html#__type.feeAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"reserveWithdrawalAddress\",\"url\":\"types/postgres_bond.Bond.html#__type.reserveWithdrawalAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"maxSupply\",\"url\":\"types/postgres_bond.Bond.html#__type.maxSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"orderQuantityLimits\",\"url\":\"types/postgres_bond.Bond.html#__type.orderQuantityLimits\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"sanityRate\",\"url\":\"types/postgres_bond.Bond.html#__type.sanityRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"sanityMarginPercentage\",\"url\":\"types/postgres_bond.Bond.html#__type.sanityMarginPercentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"currentSupply\",\"url\":\"types/postgres_bond.Bond.html#__type.currentSupply\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"currentReserve\",\"url\":\"types/postgres_bond.Bond.html#__type.currentReserve\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"availableReserve\",\"url\":\"types/postgres_bond.Bond.html#__type.availableReserve\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"currentOutcomePaymentReserve\",\"url\":\"types/postgres_bond.Bond.html#__type.currentOutcomePaymentReserve\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"allowSells\",\"url\":\"types/postgres_bond.Bond.html#__type.allowSells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"allowReserveWithdrawals\",\"url\":\"types/postgres_bond.Bond.html#__type.allowReserveWithdrawals\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"alphaBond\",\"url\":\"types/postgres_bond.Bond.html#__type.alphaBond\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"batchBlocks\",\"url\":\"types/postgres_bond.Bond.html#__type.batchBlocks\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"outcomePayment\",\"url\":\"types/postgres_bond.Bond.html#__type.outcomePayment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":1024,\"name\":\"oracleDid\",\"url\":\"types/postgres_bond.Bond.html#__type.oracleDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.Bond.__type\"},{\"kind\":64,\"name\":\"createBond\",\"url\":\"functions/postgres_bond.createBond.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":64,\"name\":\"updateBond\",\"url\":\"functions/postgres_bond.updateBond.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"BondAlpha\",\"url\":\"types/postgres_bond.BondAlpha.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.BondAlpha.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.BondAlpha\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.BondAlpha.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondAlpha.__type\"},{\"kind\":1024,\"name\":\"alpha\",\"url\":\"types/postgres_bond.BondAlpha.html#__type.alpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondAlpha.__type\"},{\"kind\":1024,\"name\":\"oracleDid\",\"url\":\"types/postgres_bond.BondAlpha.html#__type.oracleDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondAlpha.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.BondAlpha.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondAlpha.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.BondAlpha.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondAlpha.__type\"},{\"kind\":64,\"name\":\"createBondAlpha\",\"url\":\"functions/postgres_bond.createBondAlpha.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"BondBuy\",\"url\":\"types/postgres_bond.BondBuy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.BondBuy.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.BondBuy\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.BondBuy.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":1024,\"name\":\"accountDid\",\"url\":\"types/postgres_bond.BondBuy.html#__type.accountDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.BondBuy.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":1024,\"name\":\"maxPrices\",\"url\":\"types/postgres_bond.BondBuy.html#__type.maxPrices\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.BondBuy.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.BondBuy.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondBuy.__type\"},{\"kind\":64,\"name\":\"createBondBuy\",\"url\":\"functions/postgres_bond.createBondBuy.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"BondSell\",\"url\":\"types/postgres_bond.BondSell.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.BondSell.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.BondSell\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.BondSell.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSell.__type\"},{\"kind\":1024,\"name\":\"accountDid\",\"url\":\"types/postgres_bond.BondSell.html#__type.accountDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSell.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.BondSell.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSell.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.BondSell.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSell.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.BondSell.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSell.__type\"},{\"kind\":64,\"name\":\"createBondSell\",\"url\":\"functions/postgres_bond.createBondSell.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"BondSwap\",\"url\":\"types/postgres_bond.BondSwap.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.BondSwap.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.BondSwap\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.BondSwap.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":1024,\"name\":\"accountDid\",\"url\":\"types/postgres_bond.BondSwap.html#__type.accountDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.BondSwap.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":1024,\"name\":\"toToken\",\"url\":\"types/postgres_bond.BondSwap.html#__type.toToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.BondSwap.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.BondSwap.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.BondSwap.__type\"},{\"kind\":64,\"name\":\"createBondSwap\",\"url\":\"functions/postgres_bond.createBondSwap.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"ShareWithdrawal\",\"url\":\"types/postgres_bond.ShareWithdrawal.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.ShareWithdrawal\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":1024,\"name\":\"recipientDid\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.recipientDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":1024,\"name\":\"recipientAddress\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.recipientAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.ShareWithdrawal.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ShareWithdrawal.__type\"},{\"kind\":64,\"name\":\"createShareWithdrawal\",\"url\":\"functions/postgres_bond.createShareWithdrawal.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"OutcomePayment\",\"url\":\"types/postgres_bond.OutcomePayment.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.OutcomePayment\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":1024,\"name\":\"senderDid\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.senderDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":1024,\"name\":\"senderAddress\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.senderAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.OutcomePayment.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.OutcomePayment.__type\"},{\"kind\":64,\"name\":\"createOutcomePayment\",\"url\":\"functions/postgres_bond.createOutcomePayment.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":4194304,\"name\":\"ReserveWithdrawal\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/bond.ReserveWithdrawal\"},{\"kind\":1024,\"name\":\"bondDid\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.bondDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"withdrawerDid\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.withdrawerDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"withdrawerAddress\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.withdrawerAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"reserveWithdrawalAddress\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.reserveWithdrawalAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/postgres_bond.ReserveWithdrawal.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/bond.ReserveWithdrawal.__type\"},{\"kind\":64,\"name\":\"createReserveWithdrawal\",\"url\":\"functions/postgres_bond.createReserveWithdrawal.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/bond\"},{\"kind\":2,\"name\":\"postgres/chain\",\"url\":\"modules/postgres_chain.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Chain\",\"url\":\"types/postgres_chain.Chain.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/chain\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_chain.Chain.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/chain.Chain\"},{\"kind\":1024,\"name\":\"chainId\",\"url\":\"types/postgres_chain.Chain.html#__type.chainId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/chain.Chain.__type\"},{\"kind\":1024,\"name\":\"blockHeight\",\"url\":\"types/postgres_chain.Chain.html#__type.blockHeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/chain.Chain.__type\"},{\"kind\":64,\"name\":\"getChain\",\"url\":\"functions/postgres_chain.getChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/chain\"},{\"kind\":64,\"name\":\"createChain\",\"url\":\"functions/postgres_chain.createChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/chain\"},{\"kind\":64,\"name\":\"updateChain\",\"url\":\"functions/postgres_chain.updateChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/chain\"},{\"kind\":2,\"name\":\"postgres/claim\",\"url\":\"modules/postgres_claim.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"ClaimCollection\",\"url\":\"types/postgres_claim.ClaimCollection.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/claim.ClaimCollection\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"entity\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.entity\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"admin\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.admin\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"startDate\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.startDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"endDate\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.endDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"quota\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.quota\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"count\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"evaluated\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.evaluated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"approved\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.approved\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"rejected\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.rejected\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"disputed\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.disputed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"invalidated\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.invalidated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":1024,\"name\":\"payments\",\"url\":\"types/postgres_claim.ClaimCollection.html#__type.payments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.ClaimCollection.__type\"},{\"kind\":64,\"name\":\"createClaimCollection\",\"url\":\"functions/postgres_claim.createClaimCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"updateClaimCollection\",\"url\":\"functions/postgres_claim.updateClaimCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":4194304,\"name\":\"Claim\",\"url\":\"types/postgres_claim.Claim.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_claim.Claim.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/claim.Claim\"},{\"kind\":1024,\"name\":\"claimId\",\"url\":\"types/postgres_claim.Claim.html#__type.claimId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"agentDid\",\"url\":\"types/postgres_claim.Claim.html#__type.agentDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"agentAddress\",\"url\":\"types/postgres_claim.Claim.html#__type.agentAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"submissionDate\",\"url\":\"types/postgres_claim.Claim.html#__type.submissionDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"paymentsStatus\",\"url\":\"types/postgres_claim.Claim.html#__type.paymentsStatus\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"schemaType\",\"url\":\"types/postgres_claim.Claim.html#__type.schemaType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"collectionId\",\"url\":\"types/postgres_claim.Claim.html#__type.collectionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":1024,\"name\":\"evaluation\",\"url\":\"types/postgres_claim.Claim.html#__type.evaluation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Claim.__type\"},{\"kind\":64,\"name\":\"createClaim\",\"url\":\"functions/postgres_claim.createClaim.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"updateClaim\",\"url\":\"functions/postgres_claim.updateClaim.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":4194304,\"name\":\"Evaluation\",\"url\":\"types/postgres_claim.Evaluation.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_claim.Evaluation.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/claim.Evaluation\"},{\"kind\":1024,\"name\":\"collectionId\",\"url\":\"types/postgres_claim.Evaluation.html#__type.collectionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"oracle\",\"url\":\"types/postgres_claim.Evaluation.html#__type.oracle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"agentDid\",\"url\":\"types/postgres_claim.Evaluation.html#__type.agentDid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"agentAddress\",\"url\":\"types/postgres_claim.Evaluation.html#__type.agentAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/postgres_claim.Evaluation.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"types/postgres_claim.Evaluation.html#__type.reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"verificationProof\",\"url\":\"types/postgres_claim.Evaluation.html#__type.verificationProof\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_claim.Evaluation.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"evaluationDate\",\"url\":\"types/postgres_claim.Evaluation.html#__type.evaluationDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":1024,\"name\":\"claimId\",\"url\":\"types/postgres_claim.Evaluation.html#__type.claimId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Evaluation.__type\"},{\"kind\":4194304,\"name\":\"Dispute\",\"url\":\"types/postgres_claim.Dispute.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_claim.Dispute.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/claim.Dispute\"},{\"kind\":1024,\"name\":\"proof\",\"url\":\"types/postgres_claim.Dispute.html#__type.proof\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Dispute.__type\"},{\"kind\":1024,\"name\":\"subjectId\",\"url\":\"types/postgres_claim.Dispute.html#__type.subjectId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Dispute.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/postgres_claim.Dispute.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Dispute.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/postgres_claim.Dispute.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/claim.Dispute.__type\"},{\"kind\":64,\"name\":\"createDispute\",\"url\":\"functions/postgres_claim.createDispute.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"getCollectionsClaimTypeNull\",\"url\":\"functions/postgres_claim.getCollectionsClaimTypeNull.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"getCollectionEntity\",\"url\":\"functions/postgres_claim.getCollectionEntity.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"getCollectionClaimsTypeNull\",\"url\":\"functions/postgres_claim.getCollectionClaimsTypeNull.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"updateClaimSchema\",\"url\":\"functions/postgres_claim.updateClaimSchema.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":64,\"name\":\"getCollectionClaimsByType\",\"url\":\"functions/postgres_claim.getCollectionClaimsByType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/claim\"},{\"kind\":2,\"name\":\"postgres/client\",\"url\":\"modules/postgres_client.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"pool\",\"url\":\"variables/postgres_client.pool.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"postgres/client\"},{\"kind\":64,\"name\":\"withTransaction\",\"url\":\"functions/postgres_client.withTransaction.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/client\"},{\"kind\":64,\"name\":\"withQuery\",\"url\":\"functions/postgres_client.withQuery.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/client\"},{\"kind\":2,\"name\":\"postgres/entity\",\"url\":\"modules/postgres_entity.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Entity\",\"url\":\"types/postgres_entity.Entity.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_entity.Entity.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/entity.Entity\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_entity.Entity.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/postgres_entity.Entity.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"startDate\",\"url\":\"types/postgres_entity.Entity.html#__type.startDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"endDate\",\"url\":\"types/postgres_entity.Entity.html#__type.endDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/postgres_entity.Entity.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"relayerNode\",\"url\":\"types/postgres_entity.Entity.html#__type.relayerNode\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"credentials\",\"url\":\"types/postgres_entity.Entity.html#__type.credentials\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"entityVerified\",\"url\":\"types/postgres_entity.Entity.html#__type.entityVerified\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"types/postgres_entity.Entity.html#__type.metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"accounts\",\"url\":\"types/postgres_entity.Entity.html#__type.accounts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"externalId\",\"url\":\"types/postgres_entity.Entity.html#__type.externalId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"types/postgres_entity.Entity.html#__type.owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/entity.Entity.__type\"},{\"kind\":64,\"name\":\"createEntity\",\"url\":\"functions/postgres_entity.createEntity.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"updateEntity\",\"url\":\"functions/postgres_entity.updateEntity.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"updateEntityOwner\",\"url\":\"functions/postgres_entity.updateEntityOwner.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"updateEntityExternalId\",\"url\":\"functions/postgres_entity.updateEntityExternalId.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityDeviceAndNoExternalId\",\"url\":\"functions/postgres_entity.getEntityDeviceAndNoExternalId.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityService\",\"url\":\"functions/postgres_entity.getEntityService.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityParentIid\",\"url\":\"functions/postgres_entity.getEntityParentIid.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":4194304,\"name\":\"EntityAndIid\",\"url\":\"types/postgres_entity.EntityAndIid.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityAndIid\",\"url\":\"functions/postgres_entity.getEntityAndIid.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityDeviceAccounts\",\"url\":\"functions/postgres_entity.getEntityDeviceAccounts.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":64,\"name\":\"getEntityAccountsByIidContext\",\"url\":\"functions/postgres_entity.getEntityAccountsByIidContext.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/entity\"},{\"kind\":2,\"name\":\"postgres/iid\",\"url\":\"modules/postgres_iid.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Iid\",\"url\":\"types/postgres_iid.Iid.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/iid\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_iid.Iid.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/iid.Iid\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_iid.Iid.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"context\",\"url\":\"types/postgres_iid.Iid.html#__type.context\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"controller\",\"url\":\"types/postgres_iid.Iid.html#__type.controller\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"verificationMethod\",\"url\":\"types/postgres_iid.Iid.html#__type.verificationMethod\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"service\",\"url\":\"types/postgres_iid.Iid.html#__type.service\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"authentication\",\"url\":\"types/postgres_iid.Iid.html#__type.authentication\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"assertionMethod\",\"url\":\"types/postgres_iid.Iid.html#__type.assertionMethod\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"keyAgreement\",\"url\":\"types/postgres_iid.Iid.html#__type.keyAgreement\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"capabilityInvocation\",\"url\":\"types/postgres_iid.Iid.html#__type.capabilityInvocation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"capabilityDelegation\",\"url\":\"types/postgres_iid.Iid.html#__type.capabilityDelegation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"linkedResource\",\"url\":\"types/postgres_iid.Iid.html#__type.linkedResource\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"linkedClaim\",\"url\":\"types/postgres_iid.Iid.html#__type.linkedClaim\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"accordedRight\",\"url\":\"types/postgres_iid.Iid.html#__type.accordedRight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"linkedEntity\",\"url\":\"types/postgres_iid.Iid.html#__type.linkedEntity\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"alsoKnownAs\",\"url\":\"types/postgres_iid.Iid.html#__type.alsoKnownAs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"types/postgres_iid.Iid.html#__type.metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/iid.Iid.__type\"},{\"kind\":64,\"name\":\"createIid\",\"url\":\"functions/postgres_iid.createIid.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/iid\"},{\"kind\":64,\"name\":\"updateIid\",\"url\":\"functions/postgres_iid.updateIid.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/iid\"},{\"kind\":2,\"name\":\"postgres/ipfs\",\"url\":\"modules/postgres_ipfs.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Ipfs\",\"url\":\"types/postgres_ipfs.Ipfs.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/ipfs\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_ipfs.Ipfs.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/ipfs.Ipfs\"},{\"kind\":1024,\"name\":\"cid\",\"url\":\"types/postgres_ipfs.Ipfs.html#__type.cid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/ipfs.Ipfs.__type\"},{\"kind\":1024,\"name\":\"contentType\",\"url\":\"types/postgres_ipfs.Ipfs.html#__type.contentType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/ipfs.Ipfs.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/postgres_ipfs.Ipfs.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/ipfs.Ipfs.__type\"},{\"kind\":64,\"name\":\"getIpfs\",\"url\":\"functions/postgres_ipfs.getIpfs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/ipfs\"},{\"kind\":64,\"name\":\"upsertIpfs\",\"url\":\"functions/postgres_ipfs.upsertIpfs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/ipfs\"},{\"kind\":2,\"name\":\"postgres/migrations\",\"url\":\"modules/postgres_migrations.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"postgresMigrate\",\"url\":\"functions/postgres_migrations.postgresMigrate.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/migrations\"},{\"kind\":2,\"name\":\"postgres/token\",\"url\":\"modules/postgres_token.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getTokenName\",\"url\":\"functions/postgres_token.getTokenName.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":4194304,\"name\":\"TokenTransaction\",\"url\":\"types/postgres_token.TokenTransaction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.TokenTransaction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.TokenTransaction\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/postgres_token.TokenTransaction.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenTransaction.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/postgres_token.TokenTransaction.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenTransaction.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_token.TokenTransaction.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenTransaction.__type\"},{\"kind\":1024,\"name\":\"tokenId\",\"url\":\"types/postgres_token.TokenTransaction.html#__type.tokenId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenTransaction.__type\"},{\"kind\":64,\"name\":\"createTokenTransaction\",\"url\":\"functions/postgres_token.createTokenTransaction.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":64,\"name\":\"getTokenClassContractAddress\",\"url\":\"functions/postgres_token.getTokenClassContractAddress.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":4194304,\"name\":\"TokenClass\",\"url\":\"types/postgres_token.TokenClass.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.TokenClass.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.TokenClass\"},{\"kind\":1024,\"name\":\"contractAddress\",\"url\":\"types/postgres_token.TokenClass.html#__type.contractAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"minter\",\"url\":\"types/postgres_token.TokenClass.html#__type.minter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"class\",\"url\":\"types/postgres_token.TokenClass.html#__type.class\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/postgres_token.TokenClass.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/postgres_token.TokenClass.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"image\",\"url\":\"types/postgres_token.TokenClass.html#__type.image\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/postgres_token.TokenClass.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"cap\",\"url\":\"types/postgres_token.TokenClass.html#__type.cap\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"supply\",\"url\":\"types/postgres_token.TokenClass.html#__type.supply\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"paused\",\"url\":\"types/postgres_token.TokenClass.html#__type.paused\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"stopped\",\"url\":\"types/postgres_token.TokenClass.html#__type.stopped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"retired\",\"url\":\"types/postgres_token.TokenClass.html#__type.retired\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":1024,\"name\":\"cancelled\",\"url\":\"types/postgres_token.TokenClass.html#__type.cancelled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenClass.__type\"},{\"kind\":64,\"name\":\"createTokenClass\",\"url\":\"functions/postgres_token.createTokenClass.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":64,\"name\":\"updateTokenClass\",\"url\":\"functions/postgres_token.updateTokenClass.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":4194304,\"name\":\"TokenRetired\",\"url\":\"types/postgres_token.TokenRetired.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.TokenRetired.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.TokenRetired\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_token.TokenRetired.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenRetired.__type\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"types/postgres_token.TokenRetired.html#__type.reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenRetired.__type\"},{\"kind\":1024,\"name\":\"jurisdiction\",\"url\":\"types/postgres_token.TokenRetired.html#__type.jurisdiction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenRetired.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_token.TokenRetired.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenRetired.__type\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"types/postgres_token.TokenRetired.html#__type.owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenRetired.__type\"},{\"kind\":4194304,\"name\":\"TokenCancelled\",\"url\":\"types/postgres_token.TokenCancelled.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.TokenCancelled.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.TokenCancelled\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_token.TokenCancelled.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenCancelled.__type\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"types/postgres_token.TokenCancelled.html#__type.reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenCancelled.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/postgres_token.TokenCancelled.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenCancelled.__type\"},{\"kind\":1024,\"name\":\"owner\",\"url\":\"types/postgres_token.TokenCancelled.html#__type.owner\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenCancelled.__type\"},{\"kind\":4194304,\"name\":\"Token\",\"url\":\"types/postgres_token.Token.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.Token.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.Token\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_token.Token.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.Token.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/postgres_token.Token.html#__type.index\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.Token.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/postgres_token.Token.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.Token.__type\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/postgres_token.Token.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.Token.__type\"},{\"kind\":1024,\"name\":\"tokenData\",\"url\":\"types/postgres_token.Token.html#__type.tokenData\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.Token.__type\"},{\"kind\":64,\"name\":\"createToken\",\"url\":\"functions/postgres_token.createToken.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":4194304,\"name\":\"TokenData\",\"url\":\"types/postgres_token.TokenData.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_token.TokenData.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/token.TokenData\"},{\"kind\":1024,\"name\":\"uri\",\"url\":\"types/postgres_token.TokenData.html#__type.uri\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenData.__type\"},{\"kind\":1024,\"name\":\"encrypted\",\"url\":\"types/postgres_token.TokenData.html#__type.encrypted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenData.__type\"},{\"kind\":1024,\"name\":\"proof\",\"url\":\"types/postgres_token.TokenData.html#__type.proof\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenData.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/postgres_token.TokenData.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenData.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/postgres_token.TokenData.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/token.TokenData.__type\"},{\"kind\":4194304,\"name\":\"TokenTransactionWithToken\",\"url\":\"types/postgres_token.TokenTransactionWithToken.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":64,\"name\":\"getTokenTransaction\",\"url\":\"functions/postgres_token.getTokenTransaction.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":64,\"name\":\"getTokenRetiredAmountSUM\",\"url\":\"functions/postgres_token.getTokenRetiredAmountSUM.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":64,\"name\":\"getTokenClass\",\"url\":\"functions/postgres_token.getTokenClass.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/token\"},{\"kind\":2,\"name\":\"postgres/tokenomics_account\",\"url\":\"modules/postgres_tokenomics_account.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"TokenomicsAccount\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/tokenomics_account\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.address\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"accountNumber\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.accountNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"availBalance\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.availBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"delegationsBalance\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.delegationsBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"rewardsBalance\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.rewardsBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"totalBalance\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.totalBalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/postgres_tokenomics_account.TokenomicsAccount.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/tokenomics_account.TokenomicsAccount.__type\"},{\"kind\":64,\"name\":\"upsertTokenomicsAccount\",\"url\":\"functions/postgres_tokenomics_account.upsertTokenomicsAccount.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/tokenomics_account\"},{\"kind\":2,\"name\":\"postgres/transaction\",\"url\":\"modules/postgres_transaction.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"Block\",\"url\":\"types/postgres_transaction.Block.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_transaction.Block.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/transaction.Block\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"types/postgres_transaction.Block.html#__type.height\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Block.__type\"},{\"kind\":1024,\"name\":\"time\",\"url\":\"types/postgres_transaction.Block.html#__type.time\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Block.__type\"},{\"kind\":1024,\"name\":\"transactions\",\"url\":\"types/postgres_transaction.Block.html#__type.transactions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Block.__type\"},{\"kind\":1024,\"name\":\"messages\",\"url\":\"types/postgres_transaction.Block.html#__type.messages\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Block.__type\"},{\"kind\":4194304,\"name\":\"Transaction\",\"url\":\"types/postgres_transaction.Transaction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_transaction.Transaction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/transaction.Transaction\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"types/postgres_transaction.Transaction.html#__type.hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/postgres_transaction.Transaction.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":1024,\"name\":\"fee\",\"url\":\"types/postgres_transaction.Transaction.html#__type.fee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":1024,\"name\":\"gasUsed\",\"url\":\"types/postgres_transaction.Transaction.html#__type.gasUsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":1024,\"name\":\"gasWanted\",\"url\":\"types/postgres_transaction.Transaction.html#__type.gasWanted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":1024,\"name\":\"memo\",\"url\":\"types/postgres_transaction.Transaction.html#__type.memo\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Transaction.__type\"},{\"kind\":4194304,\"name\":\"Message\",\"url\":\"types/postgres_transaction.Message.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"postgres/transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/postgres_transaction.Message.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"postgres/transaction.Message\"},{\"kind\":1024,\"name\":\"typeUrl\",\"url\":\"types/postgres_transaction.Message.html#__type.typeUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/postgres_transaction.Message.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/postgres_transaction.Message.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/postgres_transaction.Message.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"denoms\",\"url\":\"types/postgres_transaction.Message.html#__type.denoms\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"tokenNames\",\"url\":\"types/postgres_transaction.Message.html#__type.tokenNames\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":1024,\"name\":\"transactionHash\",\"url\":\"types/postgres_transaction.Message.html#__type.transactionHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"postgres/transaction.Message.__type\"},{\"kind\":64,\"name\":\"insertBlock\",\"url\":\"functions/postgres_transaction.insertBlock.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"postgres/transaction\"},{\"kind\":2,\"name\":\"sync/sync_blocks\",\"url\":\"modules/sync_sync_blocks.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"startSync\",\"url\":\"functions/sync_sync_blocks.startSync.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync/sync_blocks\"},{\"kind\":2,\"name\":\"sync/sync_chain\",\"url\":\"modules/sync_sync_chain.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"currentChain\",\"url\":\"variables/sync_sync_chain.currentChain.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":32,\"name\":\"queryClient\",\"url\":\"variables/sync_sync_chain.queryClient.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":32,\"name\":\"registry\",\"url\":\"variables/sync_sync_chain.registry.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":64,\"name\":\"syncChain\",\"url\":\"functions/sync_sync_chain.syncChain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync/sync_chain\"},{\"kind\":2,\"name\":\"sync/sync_custom\",\"url\":\"modules/sync_sync_custom.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"sync_handlers/event_data_sync_handler\",\"url\":\"modules/sync_handlers_event_data_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncEventData\",\"url\":\"functions/sync_handlers_event_data_sync_handler.syncEventData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_data_sync_handler\"},{\"kind\":2,\"name\":\"sync_handlers/event_data_sync_wasm_handler\",\"url\":\"modules/sync_handlers_event_data_sync_wasm_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncWasmEventData\",\"url\":\"functions/sync_handlers_event_data_sync_wasm_handler.syncWasmEventData.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_data_sync_wasm_handler\"},{\"kind\":2,\"name\":\"sync_handlers/event_sync_handler\",\"url\":\"modules/sync_handlers_event_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"DelayedFunction\",\"url\":\"types/sync_handlers_event_sync_handler.DelayedFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_sync_handler\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/sync_handlers_event_sync_handler.DelayedFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"sync_handlers/event_sync_handler.DelayedFunction\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/sync_handlers_event_sync_handler.DelayedFunction.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"sync_handlers/event_sync_handler.DelayedFunction.__type\"},{\"kind\":1024,\"name\":\"func\",\"url\":\"types/sync_handlers_event_sync_handler.DelayedFunction.html#__type.func\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"sync_handlers/event_sync_handler.DelayedFunction.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/sync_handlers_event_sync_handler.DelayedFunction.html#__type.func.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"sync_handlers/event_sync_handler.DelayedFunction.__type.func\"},{\"kind\":64,\"name\":\"syncEvents\",\"url\":\"functions/sync_handlers_event_sync_handler.syncEvents.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/event_sync_handler\"},{\"kind\":2,\"name\":\"sync_handlers/transaction_sync_handler\",\"url\":\"modules/sync_handlers_transaction_sync_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"syncTransactions\",\"url\":\"functions/sync_handlers_transaction_sync_handler.syncTransactions.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"sync_handlers/transaction_sync_handler\"},{\"kind\":2,\"name\":\"types/Event\",\"url\":\"modules/types_Event.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":8,\"name\":\"EventTypes\",\"url\":\"enums/types_Event.EventTypes.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":16,\"name\":\"createIid\",\"url\":\"enums/types_Event.EventTypes.html#createIid\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateIid\",\"url\":\"enums/types_Event.EventTypes.html#updateIid\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createEntity\",\"url\":\"enums/types_Event.EventTypes.html#createEntity\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateEntity\",\"url\":\"enums/types_Event.EventTypes.html#updateEntity\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createCollection\",\"url\":\"enums/types_Event.EventTypes.html#createCollection\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateCollection\",\"url\":\"enums/types_Event.EventTypes.html#updateCollection\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"submitClaim\",\"url\":\"enums/types_Event.EventTypes.html#submitClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateClaim\",\"url\":\"enums/types_Event.EventTypes.html#updateClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"disputeClaim\",\"url\":\"enums/types_Event.EventTypes.html#disputeClaim\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createToken\",\"url\":\"enums/types_Event.EventTypes.html#createToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateToken\",\"url\":\"enums/types_Event.EventTypes.html#updateToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"mintToken\",\"url\":\"enums/types_Event.EventTypes.html#mintToken\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"createBond\",\"url\":\"enums/types_Event.EventTypes.html#createBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"updateBond\",\"url\":\"enums/types_Event.EventTypes.html#updateBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"setNextAlphaBond\",\"url\":\"enums/types_Event.EventTypes.html#setNextAlphaBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"buyOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#buyOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"sellOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#sellOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"swapOrderBond\",\"url\":\"enums/types_Event.EventTypes.html#swapOrderBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"outcomePaymentBond\",\"url\":\"enums/types_Event.EventTypes.html#outcomePaymentBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"shareWithdrawalBond\",\"url\":\"enums/types_Event.EventTypes.html#shareWithdrawalBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":16,\"name\":\"reserveWithdrawalBond\",\"url\":\"enums/types_Event.EventTypes.html#reserveWithdrawalBond\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/Event.EventTypes\"},{\"kind\":32,\"name\":\"EventTypesArray\",\"url\":\"variables/types_Event.EventTypesArray.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":32,\"name\":\"EventTypesAttributeKey\",\"url\":\"variables/types_Event.EventTypesAttributeKey.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":4194304,\"name\":\"Attribute\",\"url\":\"types/types_Event.Attribute.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/Event\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_Event.Attribute.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/Event.Attribute\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"types/types_Event.Attribute.html#__type.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/Event.Attribute.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/types_Event.Attribute.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/Event.Attribute.__type\"},{\"kind\":2,\"name\":\"types/General\",\"url\":\"modules/types_General.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"ArrElement\",\"url\":\"types/types_General.ArrElement.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/General\"},{\"kind\":2,\"name\":\"util/conversions\",\"url\":\"modules/util_conversions.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"Uint8ArrayToJS\",\"url\":\"functions/util_conversions.Uint8ArrayToJS.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"b64toUint8Array\",\"url\":\"functions/util_conversions.b64toUint8Array.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"b64toJson\",\"url\":\"functions/util_conversions.b64toJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"Uint8ArrayTob64\",\"url\":\"functions/util_conversions.Uint8ArrayTob64.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"JsonToArray\",\"url\":\"functions/util_conversions.JsonToArray.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"concatArrayBuffers\",\"url\":\"functions/util_conversions.concatArrayBuffers.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"jsonStringToBase64\",\"url\":\"functions/util_conversions.jsonStringToBase64.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":64,\"name\":\"jsonToBase64\",\"url\":\"functions/util_conversions.jsonToBase64.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/conversions\"},{\"kind\":2,\"name\":\"util/db\",\"url\":\"modules/util_db.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"url2obj\",\"url\":\"functions/util_db.url2obj.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/db\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj\"},{\"kind\":1024,\"name\":\"protocol\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.protocol\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.password\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.host\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"hostname\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.hostname\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"port\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.port\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"segments\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.segments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":1024,\"name\":\"params\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.params\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/db.url2obj.url2obj.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/util_db.url2obj.html#url2obj.__type.params.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"util/db.url2obj.url2obj.__type.params\"},{\"kind\":2,\"name\":\"util/helpers\",\"url\":\"modules/util_helpers.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"upperHexFromUint8Array\",\"url\":\"functions/util_helpers.upperHexFromUint8Array.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getDocFromAttributes\",\"url\":\"functions/util_helpers.getDocFromAttributes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getValueFromAttributes\",\"url\":\"functions/util_helpers.getValueFromAttributes.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"getWasmAttr\",\"url\":\"functions/util_helpers.getWasmAttr.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"base64ToJson\",\"url\":\"functions/util_helpers.base64ToJson.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"splitAttributesByKeyValue\",\"url\":\"functions/util_helpers.splitAttributesByKeyValue.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"chunkArray\",\"url\":\"functions/util_helpers.chunkArray.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":64,\"name\":\"countTokensByType\",\"url\":\"functions/util_helpers.countTokensByType.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/helpers\"},{\"kind\":2,\"name\":\"util/long\",\"url\":\"modules/util_long.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"util/memory\",\"url\":\"modules/util_memory.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"MemoryUsage\",\"url\":\"types/util_memory.MemoryUsage.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"util/memory\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/util_memory.MemoryUsage.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"util/memory.MemoryUsage\"},{\"kind\":1024,\"name\":\"rss\",\"url\":\"types/util_memory.MemoryUsage.html#__type.rss\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/memory.MemoryUsage.__type\"},{\"kind\":1024,\"name\":\"heapTotal\",\"url\":\"types/util_memory.MemoryUsage.html#__type.heapTotal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/memory.MemoryUsage.__type\"},{\"kind\":1024,\"name\":\"heapUsed\",\"url\":\"types/util_memory.MemoryUsage.html#__type.heapUsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/memory.MemoryUsage.__type\"},{\"kind\":1024,\"name\":\"external\",\"url\":\"types/util_memory.MemoryUsage.html#__type.external\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/memory.MemoryUsage.__type\"},{\"kind\":1024,\"name\":\"arrayBuffers\",\"url\":\"types/util_memory.MemoryUsage.html#__type.arrayBuffers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"util/memory.MemoryUsage.__type\"},{\"kind\":64,\"name\":\"byteSizePretty\",\"url\":\"functions/util_memory.byteSizePretty.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/memory\"},{\"kind\":64,\"name\":\"bytesSizesPretty\",\"url\":\"functions/util_memory.bytesSizesPretty.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/memory\"},{\"kind\":64,\"name\":\"getMemoryUsage\",\"url\":\"functions/util_memory.getMemoryUsage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/memory\"},{\"kind\":2,\"name\":\"util/proto\",\"url\":\"modules/util_proto.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getLatestBlock\",\"url\":\"functions/util_proto.getLatestBlock.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/proto\"},{\"kind\":64,\"name\":\"decodeMessage\",\"url\":\"functions/util_proto.decodeMessage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/proto\"},{\"kind\":2,\"name\":\"util/rate-limiter\",\"url\":\"modules/util_rate_limiter.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"web3StorageRateLimiter\",\"url\":\"variables/util_rate_limiter.web3StorageRateLimiter.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/rate-limiter\"},{\"kind\":2,\"name\":\"util/secrets\",\"url\":\"modules/util_secrets.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"PORT\",\"url\":\"variables/util_secrets.PORT.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"SENTRYDSN\",\"url\":\"variables/util_secrets.SENTRYDSN.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"RPC\",\"url\":\"variables/util_secrets.RPC.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"DATABASE_URL\",\"url\":\"variables/util_secrets.DATABASE_URL.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"DATABASE_URL_CORE\",\"url\":\"variables/util_secrets.DATABASE_URL_CORE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"MIGRATE_DB_PROGRAMATICALLY\",\"url\":\"variables/util_secrets.MIGRATE_DB_PROGRAMATICALLY.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"TRUST_PROXY\",\"url\":\"variables/util_secrets.TRUST_PROXY.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"ENTITY_MODULE_CONTRACT_ADDRESS\",\"url\":\"variables/util_secrets.ENTITY_MODULE_CONTRACT_ADDRESS.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"IPFS_SERVICE_MAPPING\",\"url\":\"variables/util_secrets.IPFS_SERVICE_MAPPING.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":32,\"name\":\"DATABASE_USE_SSL\",\"url\":\"variables/util_secrets.DATABASE_USE_SSL.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"util/secrets\"},{\"kind\":2,\"name\":\"util/sleep\",\"url\":\"modules/util_sleep.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"sleep\",\"url\":\"functions/util_sleep.sleep.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"util/sleep\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,53.904]],[\"comment/0\",[]],[\"name/1\",[0,53.904]],[\"comment/1\",[]],[\"name/2\",[1,53.904]],[\"comment/2\",[]],[\"name/3\",[2,53.904]],[\"comment/3\",[]],[\"name/4\",[2,53.904]],[\"comment/4\",[]],[\"name/5\",[3,59.016]],[\"comment/5\",[]],[\"name/6\",[4,59.016]],[\"comment/6\",[]],[\"name/7\",[5,23.061]],[\"comment/7\",[]],[\"name/8\",[6,53.904]],[\"comment/8\",[]],[\"name/9\",[7,59.016]],[\"comment/9\",[]],[\"name/10\",[5,23.061]],[\"comment/10\",[]],[\"name/11\",[8,59.016]],[\"comment/11\",[]],[\"name/12\",[9,59.016]],[\"comment/12\",[]],[\"name/13\",[10,37.797]],[\"comment/13\",[]],[\"name/14\",[11,53.904]],[\"comment/14\",[]],[\"name/15\",[12,59.016]],[\"comment/15\",[]],[\"name/16\",[13,59.016]],[\"comment/16\",[]],[\"name/17\",[14,59.016]],[\"comment/17\",[]],[\"name/18\",[5,23.061]],[\"comment/18\",[]],[\"name/19\",[15,59.016]],[\"comment/19\",[]],[\"name/20\",[5,23.061]],[\"comment/20\",[]],[\"name/21\",[16,46.013]],[\"comment/21\",[]],[\"name/22\",[5,23.061]],[\"comment/22\",[]],[\"name/23\",[10,37.797]],[\"comment/23\",[]],[\"name/24\",[17,46.013]],[\"comment/24\",[]],[\"name/25\",[18,46.013]],[\"comment/25\",[]],[\"name/26\",[5,23.061]],[\"comment/26\",[]],[\"name/27\",[19,48.021]],[\"comment/27\",[]],[\"name/28\",[5,23.061]],[\"comment/28\",[]],[\"name/29\",[10,37.797]],[\"comment/29\",[]],[\"name/30\",[20,59.016]],[\"comment/30\",[]],[\"name/31\",[5,23.061]],[\"comment/31\",[]],[\"name/32\",[16,46.013]],[\"comment/32\",[]],[\"name/33\",[5,23.061]],[\"comment/33\",[]],[\"name/34\",[10,37.797]],[\"comment/34\",[]],[\"name/35\",[17,46.013]],[\"comment/35\",[]],[\"name/36\",[18,46.013]],[\"comment/36\",[]],[\"name/37\",[5,23.061]],[\"comment/37\",[]],[\"name/38\",[19,48.021]],[\"comment/38\",[]],[\"name/39\",[5,23.061]],[\"comment/39\",[]],[\"name/40\",[10,37.797]],[\"comment/40\",[]],[\"name/41\",[21,59.016]],[\"comment/41\",[]],[\"name/42\",[5,23.061]],[\"comment/42\",[]],[\"name/43\",[16,46.013]],[\"comment/43\",[]],[\"name/44\",[5,23.061]],[\"comment/44\",[]],[\"name/45\",[10,37.797]],[\"comment/45\",[]],[\"name/46\",[17,46.013]],[\"comment/46\",[]],[\"name/47\",[18,46.013]],[\"comment/47\",[]],[\"name/48\",[5,23.061]],[\"comment/48\",[]],[\"name/49\",[22,59.016]],[\"comment/49\",[]],[\"name/50\",[5,23.061]],[\"comment/50\",[]],[\"name/51\",[16,46.013]],[\"comment/51\",[]],[\"name/52\",[5,23.061]],[\"comment/52\",[]],[\"name/53\",[10,37.797]],[\"comment/53\",[]],[\"name/54\",[17,46.013]],[\"comment/54\",[]],[\"name/55\",[18,46.013]],[\"comment/55\",[]],[\"name/56\",[5,23.061]],[\"comment/56\",[]],[\"name/57\",[19,48.021]],[\"comment/57\",[]],[\"name/58\",[5,23.061]],[\"comment/58\",[]],[\"name/59\",[10,37.797]],[\"comment/59\",[]],[\"name/60\",[23,59.016]],[\"comment/60\",[]],[\"name/61\",[5,23.061]],[\"comment/61\",[]],[\"name/62\",[16,46.013]],[\"comment/62\",[]],[\"name/63\",[5,23.061]],[\"comment/63\",[]],[\"name/64\",[10,37.797]],[\"comment/64\",[]],[\"name/65\",[17,46.013]],[\"comment/65\",[]],[\"name/66\",[18,46.013]],[\"comment/66\",[]],[\"name/67\",[5,23.061]],[\"comment/67\",[]],[\"name/68\",[19,48.021]],[\"comment/68\",[]],[\"name/69\",[5,23.061]],[\"comment/69\",[]],[\"name/70\",[10,37.797]],[\"comment/70\",[]],[\"name/71\",[6,53.904]],[\"comment/71\",[]],[\"name/72\",[24,59.016]],[\"comment/72\",[]],[\"name/73\",[25,59.016]],[\"comment/73\",[]],[\"name/74\",[26,59.016]],[\"comment/74\",[]],[\"name/75\",[27,59.016]],[\"comment/75\",[]],[\"name/76\",[28,59.016]],[\"comment/76\",[]],[\"name/77\",[29,59.016]],[\"comment/77\",[]],[\"name/78\",[30,59.016]],[\"comment/78\",[]],[\"name/79\",[31,59.016]],[\"comment/79\",[]],[\"name/80\",[32,59.016]],[\"comment/80\",[]],[\"name/81\",[33,59.016]],[\"comment/81\",[]],[\"name/82\",[34,59.016]],[\"comment/82\",[]],[\"name/83\",[35,59.016]],[\"comment/83\",[]],[\"name/84\",[36,59.016]],[\"comment/84\",[]],[\"name/85\",[37,59.016]],[\"comment/85\",[]],[\"name/86\",[38,59.016]],[\"comment/86\",[]],[\"name/87\",[39,59.016]],[\"comment/87\",[]],[\"name/88\",[40,59.016]],[\"comment/88\",[]],[\"name/89\",[41,59.016]],[\"comment/89\",[]],[\"name/90\",[42,59.016]],[\"comment/90\",[]],[\"name/91\",[43,59.016]],[\"comment/91\",[]],[\"name/92\",[44,59.016]],[\"comment/92\",[]],[\"name/93\",[45,59.016]],[\"comment/93\",[]],[\"name/94\",[46,59.016]],[\"comment/94\",[]],[\"name/95\",[47,59.016]],[\"comment/95\",[]],[\"name/96\",[48,59.016]],[\"comment/96\",[]],[\"name/97\",[49,59.016]],[\"comment/97\",[]],[\"name/98\",[50,59.016]],[\"comment/98\",[]],[\"name/99\",[51,59.016]],[\"comment/99\",[]],[\"name/100\",[52,59.016]],[\"comment/100\",[]],[\"name/101\",[53,59.016]],[\"comment/101\",[]],[\"name/102\",[54,59.016]],[\"comment/102\",[]],[\"name/103\",[55,59.016]],[\"comment/103\",[]],[\"name/104\",[56,59.016]],[\"comment/104\",[]],[\"name/105\",[57,59.016]],[\"comment/105\",[]],[\"name/106\",[58,59.016]],[\"comment/106\",[]],[\"name/107\",[59,59.016]],[\"comment/107\",[]],[\"name/108\",[60,59.016]],[\"comment/108\",[]],[\"name/109\",[61,59.016]],[\"comment/109\",[]],[\"name/110\",[62,59.016]],[\"comment/110\",[]],[\"name/111\",[63,59.016]],[\"comment/111\",[]],[\"name/112\",[64,59.016]],[\"comment/112\",[]],[\"name/113\",[65,59.016]],[\"comment/113\",[]],[\"name/114\",[66,59.016]],[\"comment/114\",[]],[\"name/115\",[67,59.016]],[\"comment/115\",[]],[\"name/116\",[68,59.016]],[\"comment/116\",[]],[\"name/117\",[69,59.016]],[\"comment/117\",[]],[\"name/118\",[70,59.016]],[\"comment/118\",[]],[\"name/119\",[71,59.016]],[\"comment/119\",[]],[\"name/120\",[5,23.061]],[\"comment/120\",[]],[\"name/121\",[72,41.657]],[\"comment/121\",[]],[\"name/122\",[73,53.904]],[\"comment/122\",[]],[\"name/123\",[74,53.904]],[\"comment/123\",[]],[\"name/124\",[75,50.536]],[\"comment/124\",[]],[\"name/125\",[10,37.797]],[\"comment/125\",[]],[\"name/126\",[76,59.016]],[\"comment/126\",[]],[\"name/127\",[77,59.016]],[\"comment/127\",[]],[\"name/128\",[78,59.016]],[\"comment/128\",[]],[\"name/129\",[79,59.016]],[\"comment/129\",[]],[\"name/130\",[80,59.016]],[\"comment/130\",[]],[\"name/131\",[81,59.016]],[\"comment/131\",[]],[\"name/132\",[82,59.016]],[\"comment/132\",[]],[\"name/133\",[83,59.016]],[\"comment/133\",[]],[\"name/134\",[84,53.904]],[\"comment/134\",[]],[\"name/135\",[85,59.016]],[\"comment/135\",[]],[\"name/136\",[86,59.016]],[\"comment/136\",[]],[\"name/137\",[87,59.016]],[\"comment/137\",[]],[\"name/138\",[88,59.016]],[\"comment/138\",[]],[\"name/139\",[89,59.016]],[\"comment/139\",[]],[\"name/140\",[90,59.016]],[\"comment/140\",[]],[\"name/141\",[91,59.016]],[\"comment/141\",[]],[\"name/142\",[92,59.016]],[\"comment/142\",[]],[\"name/143\",[93,59.016]],[\"comment/143\",[]],[\"name/144\",[94,59.016]],[\"comment/144\",[]],[\"name/145\",[95,59.016]],[\"comment/145\",[]],[\"name/146\",[96,59.016]],[\"comment/146\",[]],[\"name/147\",[97,53.904]],[\"comment/147\",[]],[\"name/148\",[98,53.904]],[\"comment/148\",[]],[\"name/149\",[99,53.904]],[\"comment/149\",[]],[\"name/150\",[100,53.904]],[\"comment/150\",[]],[\"name/151\",[101,59.016]],[\"comment/151\",[]],[\"name/152\",[5,23.061]],[\"comment/152\",[]],[\"name/153\",[72,41.657]],[\"comment/153\",[]],[\"name/154\",[102,59.016]],[\"comment/154\",[]],[\"name/155\",[98,53.904]],[\"comment/155\",[]],[\"name/156\",[103,41.657]],[\"comment/156\",[]],[\"name/157\",[104,42.909]],[\"comment/157\",[]],[\"name/158\",[105,59.016]],[\"comment/158\",[]],[\"name/159\",[106,59.016]],[\"comment/159\",[]],[\"name/160\",[5,23.061]],[\"comment/160\",[]],[\"name/161\",[72,41.657]],[\"comment/161\",[]],[\"name/162\",[107,50.536]],[\"comment/162\",[]],[\"name/163\",[108,39.542]],[\"comment/163\",[]],[\"name/164\",[109,59.016]],[\"comment/164\",[]],[\"name/165\",[103,41.657]],[\"comment/165\",[]],[\"name/166\",[104,42.909]],[\"comment/166\",[]],[\"name/167\",[110,59.016]],[\"comment/167\",[]],[\"name/168\",[111,59.016]],[\"comment/168\",[]],[\"name/169\",[5,23.061]],[\"comment/169\",[]],[\"name/170\",[72,41.657]],[\"comment/170\",[]],[\"name/171\",[107,50.536]],[\"comment/171\",[]],[\"name/172\",[108,39.542]],[\"comment/172\",[]],[\"name/173\",[103,41.657]],[\"comment/173\",[]],[\"name/174\",[104,42.909]],[\"comment/174\",[]],[\"name/175\",[112,59.016]],[\"comment/175\",[]],[\"name/176\",[113,59.016]],[\"comment/176\",[]],[\"name/177\",[5,23.061]],[\"comment/177\",[]],[\"name/178\",[72,41.657]],[\"comment/178\",[]],[\"name/179\",[107,50.536]],[\"comment/179\",[]],[\"name/180\",[108,39.542]],[\"comment/180\",[]],[\"name/181\",[114,59.016]],[\"comment/181\",[]],[\"name/182\",[103,41.657]],[\"comment/182\",[]],[\"name/183\",[104,42.909]],[\"comment/183\",[]],[\"name/184\",[115,59.016]],[\"comment/184\",[]],[\"name/185\",[116,59.016]],[\"comment/185\",[]],[\"name/186\",[5,23.061]],[\"comment/186\",[]],[\"name/187\",[72,41.657]],[\"comment/187\",[]],[\"name/188\",[117,59.016]],[\"comment/188\",[]],[\"name/189\",[118,59.016]],[\"comment/189\",[]],[\"name/190\",[108,39.542]],[\"comment/190\",[]],[\"name/191\",[103,41.657]],[\"comment/191\",[]],[\"name/192\",[104,42.909]],[\"comment/192\",[]],[\"name/193\",[119,59.016]],[\"comment/193\",[]],[\"name/194\",[97,53.904]],[\"comment/194\",[]],[\"name/195\",[5,23.061]],[\"comment/195\",[]],[\"name/196\",[72,41.657]],[\"comment/196\",[]],[\"name/197\",[120,59.016]],[\"comment/197\",[]],[\"name/198\",[121,59.016]],[\"comment/198\",[]],[\"name/199\",[108,39.542]],[\"comment/199\",[]],[\"name/200\",[103,41.657]],[\"comment/200\",[]],[\"name/201\",[104,42.909]],[\"comment/201\",[]],[\"name/202\",[122,59.016]],[\"comment/202\",[]],[\"name/203\",[123,59.016]],[\"comment/203\",[]],[\"name/204\",[5,23.061]],[\"comment/204\",[]],[\"name/205\",[72,41.657]],[\"comment/205\",[]],[\"name/206\",[124,59.016]],[\"comment/206\",[]],[\"name/207\",[125,59.016]],[\"comment/207\",[]],[\"name/208\",[108,39.542]],[\"comment/208\",[]],[\"name/209\",[84,53.904]],[\"comment/209\",[]],[\"name/210\",[103,41.657]],[\"comment/210\",[]],[\"name/211\",[104,42.909]],[\"comment/211\",[]],[\"name/212\",[126,59.016]],[\"comment/212\",[]],[\"name/213\",[127,59.016]],[\"comment/213\",[]],[\"name/214\",[128,59.016]],[\"comment/214\",[]],[\"name/215\",[5,23.061]],[\"comment/215\",[]],[\"name/216\",[129,59.016]],[\"comment/216\",[]],[\"name/217\",[130,59.016]],[\"comment/217\",[]],[\"name/218\",[131,59.016]],[\"comment/218\",[]],[\"name/219\",[132,59.016]],[\"comment/219\",[]],[\"name/220\",[133,59.016]],[\"comment/220\",[]],[\"name/221\",[134,59.016]],[\"comment/221\",[]],[\"name/222\",[135,59.016]],[\"comment/222\",[]],[\"name/223\",[5,23.061]],[\"comment/223\",[]],[\"name/224\",[136,42.909]],[\"comment/224\",[]],[\"name/225\",[137,53.904]],[\"comment/225\",[]],[\"name/226\",[138,59.016]],[\"comment/226\",[]],[\"name/227\",[139,53.904]],[\"comment/227\",[]],[\"name/228\",[140,53.904]],[\"comment/228\",[]],[\"name/229\",[141,53.904]],[\"comment/229\",[]],[\"name/230\",[142,59.016]],[\"comment/230\",[]],[\"name/231\",[143,59.016]],[\"comment/231\",[]],[\"name/232\",[144,59.016]],[\"comment/232\",[]],[\"name/233\",[145,59.016]],[\"comment/233\",[]],[\"name/234\",[146,59.016]],[\"comment/234\",[]],[\"name/235\",[147,59.016]],[\"comment/235\",[]],[\"name/236\",[148,59.016]],[\"comment/236\",[]],[\"name/237\",[73,53.904]],[\"comment/237\",[]],[\"name/238\",[149,59.016]],[\"comment/238\",[]],[\"name/239\",[150,59.016]],[\"comment/239\",[]],[\"name/240\",[151,59.016]],[\"comment/240\",[]],[\"name/241\",[152,59.016]],[\"comment/241\",[]],[\"name/242\",[5,23.061]],[\"comment/242\",[]],[\"name/243\",[153,53.904]],[\"comment/243\",[]],[\"name/244\",[154,53.904]],[\"comment/244\",[]],[\"name/245\",[155,53.904]],[\"comment/245\",[]],[\"name/246\",[156,59.016]],[\"comment/246\",[]],[\"name/247\",[157,59.016]],[\"comment/247\",[]],[\"name/248\",[158,59.016]],[\"comment/248\",[]],[\"name/249\",[159,53.904]],[\"comment/249\",[]],[\"name/250\",[160,53.904]],[\"comment/250\",[]],[\"name/251\",[161,59.016]],[\"comment/251\",[]],[\"name/252\",[162,53.904]],[\"comment/252\",[]],[\"name/253\",[160,53.904]],[\"comment/253\",[]],[\"name/254\",[5,23.061]],[\"comment/254\",[]],[\"name/255\",[159,53.904]],[\"comment/255\",[]],[\"name/256\",[163,59.016]],[\"comment/256\",[]],[\"name/257\",[154,53.904]],[\"comment/257\",[]],[\"name/258\",[155,53.904]],[\"comment/258\",[]],[\"name/259\",[164,53.904]],[\"comment/259\",[]],[\"name/260\",[165,50.536]],[\"comment/260\",[]],[\"name/261\",[166,59.016]],[\"comment/261\",[]],[\"name/262\",[108,39.542]],[\"comment/262\",[]],[\"name/263\",[167,59.016]],[\"comment/263\",[]],[\"name/264\",[153,53.904]],[\"comment/264\",[]],[\"name/265\",[168,59.016]],[\"comment/265\",[]],[\"name/266\",[5,23.061]],[\"comment/266\",[]],[\"name/267\",[169,53.904]],[\"comment/267\",[]],[\"name/268\",[170,59.016]],[\"comment/268\",[]],[\"name/269\",[171,46.013]],[\"comment/269\",[]],[\"name/270\",[172,53.904]],[\"comment/270\",[]],[\"name/271\",[173,59.016]],[\"comment/271\",[]],[\"name/272\",[174,59.016]],[\"comment/272\",[]],[\"name/273\",[175,59.016]],[\"comment/273\",[]],[\"name/274\",[176,59.016]],[\"comment/274\",[]],[\"name/275\",[177,59.016]],[\"comment/275\",[]],[\"name/276\",[178,59.016]],[\"comment/276\",[]],[\"name/277\",[179,59.016]],[\"comment/277\",[]],[\"name/278\",[180,59.016]],[\"comment/278\",[]],[\"name/279\",[181,59.016]],[\"comment/279\",[]],[\"name/280\",[182,59.016]],[\"comment/280\",[]],[\"name/281\",[183,59.016]],[\"comment/281\",[]],[\"name/282\",[137,53.904]],[\"comment/282\",[]],[\"name/283\",[5,23.061]],[\"comment/283\",[]],[\"name/284\",[136,42.909]],[\"comment/284\",[]],[\"name/285\",[171,46.013]],[\"comment/285\",[]],[\"name/286\",[140,53.904]],[\"comment/286\",[]],[\"name/287\",[141,53.904]],[\"comment/287\",[]],[\"name/288\",[164,53.904]],[\"comment/288\",[]],[\"name/289\",[184,59.016]],[\"comment/289\",[]],[\"name/290\",[185,59.016]],[\"comment/290\",[]],[\"name/291\",[186,59.016]],[\"comment/291\",[]],[\"name/292\",[187,53.904]],[\"comment/292\",[]],[\"name/293\",[188,59.016]],[\"comment/293\",[]],[\"name/294\",[189,59.016]],[\"comment/294\",[]],[\"name/295\",[190,50.536]],[\"comment/295\",[]],[\"name/296\",[191,53.904]],[\"comment/296\",[]],[\"name/297\",[192,53.904]],[\"comment/297\",[]],[\"name/298\",[193,59.016]],[\"comment/298\",[]],[\"name/299\",[194,59.016]],[\"comment/299\",[]],[\"name/300\",[195,59.016]],[\"comment/300\",[]],[\"name/301\",[196,59.016]],[\"comment/301\",[]],[\"name/302\",[197,59.016]],[\"comment/302\",[]],[\"name/303\",[198,59.016]],[\"comment/303\",[]],[\"name/304\",[199,59.016]],[\"comment/304\",[]],[\"name/305\",[200,59.016]],[\"comment/305\",[]],[\"name/306\",[201,59.016]],[\"comment/306\",[]],[\"name/307\",[202,59.016]],[\"comment/307\",[]],[\"name/308\",[203,59.016]],[\"comment/308\",[]],[\"name/309\",[5,23.061]],[\"comment/309\",[]],[\"name/310\",[136,42.909]],[\"comment/310\",[]],[\"name/311\",[204,59.016]],[\"comment/311\",[]],[\"name/312\",[205,59.016]],[\"comment/312\",[]],[\"name/313\",[206,59.016]],[\"comment/313\",[]],[\"name/314\",[207,59.016]],[\"comment/314\",[]],[\"name/315\",[208,59.016]],[\"comment/315\",[]],[\"name/316\",[209,59.016]],[\"comment/316\",[]],[\"name/317\",[210,59.016]],[\"comment/317\",[]],[\"name/318\",[211,59.016]],[\"comment/318\",[]],[\"name/319\",[212,59.016]],[\"comment/319\",[]],[\"name/320\",[213,59.016]],[\"comment/320\",[]],[\"name/321\",[214,59.016]],[\"comment/321\",[]],[\"name/322\",[215,59.016]],[\"comment/322\",[]],[\"name/323\",[216,59.016]],[\"comment/323\",[]],[\"name/324\",[217,59.016]],[\"comment/324\",[]],[\"name/325\",[187,53.904]],[\"comment/325\",[]],[\"name/326\",[218,53.904]],[\"comment/326\",[]],[\"name/327\",[219,53.904]],[\"comment/327\",[]],[\"name/328\",[220,59.016]],[\"comment/328\",[]],[\"name/329\",[221,59.016]],[\"comment/329\",[]],[\"name/330\",[5,23.061]],[\"comment/330\",[]],[\"name/331\",[222,59.016]],[\"comment/331\",[]],[\"name/332\",[223,59.016]],[\"comment/332\",[]],[\"name/333\",[172,53.904]],[\"comment/333\",[]],[\"name/334\",[224,59.016]],[\"comment/334\",[]],[\"name/335\",[225,59.016]],[\"comment/335\",[]],[\"name/336\",[226,59.016]],[\"comment/336\",[]],[\"name/337\",[227,59.016]],[\"comment/337\",[]],[\"name/338\",[228,59.016]],[\"comment/338\",[]],[\"name/339\",[229,59.016]],[\"comment/339\",[]],[\"name/340\",[230,59.016]],[\"comment/340\",[]],[\"name/341\",[5,23.061]],[\"comment/341\",[]],[\"name/342\",[231,53.904]],[\"comment/342\",[]],[\"name/343\",[232,53.904]],[\"comment/343\",[]],[\"name/344\",[108,39.542]],[\"comment/344\",[]],[\"name/345\",[233,59.016]],[\"comment/345\",[]],[\"name/346\",[234,59.016]],[\"comment/346\",[]],[\"name/347\",[235,59.016]],[\"comment/347\",[]],[\"name/348\",[236,59.016]],[\"comment/348\",[]],[\"name/349\",[5,23.061]],[\"comment/349\",[]],[\"name/350\",[237,59.016]],[\"comment/350\",[]],[\"name/351\",[238,59.016]],[\"comment/351\",[]],[\"name/352\",[239,59.016]],[\"comment/352\",[]],[\"name/353\",[75,50.536]],[\"comment/353\",[]],[\"name/354\",[10,37.797]],[\"comment/354\",[]],[\"name/355\",[240,59.016]],[\"comment/355\",[]],[\"name/356\",[171,46.013]],[\"comment/356\",[]],[\"name/357\",[241,59.016]],[\"comment/357\",[]],[\"name/358\",[242,59.016]],[\"comment/358\",[]],[\"name/359\",[243,59.016]],[\"comment/359\",[]],[\"name/360\",[244,59.016]],[\"comment/360\",[]],[\"name/361\",[245,59.016]],[\"comment/361\",[]],[\"name/362\",[246,59.016]],[\"comment/362\",[]],[\"name/363\",[247,59.016]],[\"comment/363\",[]],[\"name/364\",[248,59.016]],[\"comment/364\",[]],[\"name/365\",[249,59.016]],[\"comment/365\",[]],[\"name/366\",[5,23.061]],[\"comment/366\",[]],[\"name/367\",[136,42.909]],[\"comment/367\",[]],[\"name/368\",[165,50.536]],[\"comment/368\",[]],[\"name/369\",[250,59.016]],[\"comment/369\",[]],[\"name/370\",[108,39.542]],[\"comment/370\",[]],[\"name/371\",[190,50.536]],[\"comment/371\",[]],[\"name/372\",[251,59.016]],[\"comment/372\",[]],[\"name/373\",[5,23.061]],[\"comment/373\",[]],[\"name/374\",[136,42.909]],[\"comment/374\",[]],[\"name/375\",[165,50.536]],[\"comment/375\",[]],[\"name/376\",[108,39.542]],[\"comment/376\",[]],[\"name/377\",[190,50.536]],[\"comment/377\",[]],[\"name/378\",[74,53.904]],[\"comment/378\",[]],[\"name/379\",[5,23.061]],[\"comment/379\",[]],[\"name/380\",[136,42.909]],[\"comment/380\",[]],[\"name/381\",[1,53.904]],[\"comment/381\",[]],[\"name/382\",[75,50.536]],[\"comment/382\",[]],[\"name/383\",[252,59.016]],[\"comment/383\",[]],[\"name/384\",[253,53.904]],[\"comment/384\",[]],[\"name/385\",[254,53.904]],[\"comment/385\",[]],[\"name/386\",[253,53.904]],[\"comment/386\",[]],[\"name/387\",[5,23.061]],[\"comment/387\",[]],[\"name/388\",[255,59.016]],[\"comment/388\",[]],[\"name/389\",[256,59.016]],[\"comment/389\",[]],[\"name/390\",[169,53.904]],[\"comment/390\",[]],[\"name/391\",[171,46.013]],[\"comment/391\",[]],[\"name/392\",[136,42.909]],[\"comment/392\",[]],[\"name/393\",[257,59.016]],[\"comment/393\",[]],[\"name/394\",[258,59.016]],[\"comment/394\",[]],[\"name/395\",[259,59.016]],[\"comment/395\",[]],[\"name/396\",[260,59.016]],[\"comment/396\",[]],[\"name/397\",[261,59.016]],[\"comment/397\",[]],[\"name/398\",[262,59.016]],[\"comment/398\",[]],[\"name/399\",[5,23.061]],[\"comment/399\",[]],[\"name/400\",[263,59.016]],[\"comment/400\",[]],[\"name/401\",[264,59.016]],[\"comment/401\",[]],[\"name/402\",[265,59.016]],[\"comment/402\",[]],[\"name/403\",[266,59.016]],[\"comment/403\",[]],[\"name/404\",[267,59.016]],[\"comment/404\",[]],[\"name/405\",[268,59.016]],[\"comment/405\",[]],[\"name/406\",[171,46.013]],[\"comment/406\",[]],[\"name/407\",[269,59.016]],[\"comment/407\",[]],[\"name/408\",[270,59.016]],[\"comment/408\",[]],[\"name/409\",[271,59.016]],[\"comment/409\",[]],[\"name/410\",[5,23.061]],[\"comment/410\",[]],[\"name/411\",[103,41.657]],[\"comment/411\",[]],[\"name/412\",[272,59.016]],[\"comment/412\",[]],[\"name/413\",[273,59.016]],[\"comment/413\",[]],[\"name/414\",[274,59.016]],[\"comment/414\",[]],[\"name/415\",[275,59.016]],[\"comment/415\",[]],[\"name/416\",[5,23.061]],[\"comment/416\",[]],[\"name/417\",[276,59.016]],[\"comment/417\",[]],[\"name/418\",[277,59.016]],[\"comment/418\",[]],[\"name/419\",[278,59.016]],[\"comment/419\",[]],[\"name/420\",[279,59.016]],[\"comment/420\",[]],[\"name/421\",[280,59.016]],[\"comment/421\",[]],[\"name/422\",[281,59.016]],[\"comment/422\",[]],[\"name/423\",[282,59.016]],[\"comment/423\",[]],[\"name/424\",[5,23.061]],[\"comment/424\",[]],[\"name/425\",[283,59.016]],[\"comment/425\",[]],[\"name/426\",[284,53.904]],[\"comment/426\",[]],[\"name/427\",[231,53.904]],[\"comment/427\",[]],[\"name/428\",[232,53.904]],[\"comment/428\",[]],[\"name/429\",[285,59.016]],[\"comment/429\",[]],[\"name/430\",[286,59.016]],[\"comment/430\",[]],[\"name/431\",[287,59.016]],[\"comment/431\",[]],[\"name/432\",[288,59.016]],[\"comment/432\",[]],[\"name/433\",[289,59.016]],[\"comment/433\",[]],[\"name/434\",[290,59.016]],[\"comment/434\",[]],[\"name/435\",[291,59.016]],[\"comment/435\",[]],[\"name/436\",[292,59.016]],[\"comment/436\",[]],[\"name/437\",[293,59.016]],[\"comment/437\",[]],[\"name/438\",[294,59.016]],[\"comment/438\",[]],[\"name/439\",[295,59.016]],[\"comment/439\",[]],[\"name/440\",[296,59.016]],[\"comment/440\",[]],[\"name/441\",[297,59.016]],[\"comment/441\",[]],[\"name/442\",[298,59.016]],[\"comment/442\",[]],[\"name/443\",[299,59.016]],[\"comment/443\",[]],[\"name/444\",[300,59.016]],[\"comment/444\",[]],[\"name/445\",[301,59.016]],[\"comment/445\",[]],[\"name/446\",[302,59.016]],[\"comment/446\",[]],[\"name/447\",[5,23.061]],[\"comment/447\",[]],[\"name/448\",[303,59.016]],[\"comment/448\",[]],[\"name/449\",[304,59.016]],[\"comment/449\",[]],[\"name/450\",[5,23.061]],[\"comment/450\",[]],[\"name/451\",[305,59.016]],[\"comment/451\",[]],[\"name/452\",[306,59.016]],[\"comment/452\",[]],[\"name/453\",[307,59.016]],[\"comment/453\",[]],[\"name/454\",[308,59.016]],[\"comment/454\",[]],[\"name/455\",[309,59.016]],[\"comment/455\",[]],[\"name/456\",[218,53.904]],[\"comment/456\",[]],[\"name/457\",[219,53.904]],[\"comment/457\",[]],[\"name/458\",[191,53.904]],[\"comment/458\",[]],[\"name/459\",[192,53.904]],[\"comment/459\",[]],[\"name/460\",[310,59.016]],[\"comment/460\",[]],[\"name/461\",[311,59.016]],[\"comment/461\",[]],[\"name/462\",[312,59.016]],[\"comment/462\",[]],[\"name/463\",[162,53.904]],[\"comment/463\",[]],[\"name/464\",[313,59.016]],[\"comment/464\",[]],[\"name/465\",[254,53.904]],[\"comment/465\",[]],[\"name/466\",[314,59.016]],[\"comment/466\",[]],[\"name/467\",[315,59.016]],[\"comment/467\",[]],[\"name/468\",[99,53.904]],[\"comment/468\",[]],[\"name/469\",[100,53.904]],[\"comment/469\",[]],[\"name/470\",[316,59.016]],[\"comment/470\",[]],[\"name/471\",[317,59.016]],[\"comment/471\",[]],[\"name/472\",[318,59.016]],[\"comment/472\",[]],[\"name/473\",[319,59.016]],[\"comment/473\",[]],[\"name/474\",[320,59.016]],[\"comment/474\",[]],[\"name/475\",[321,59.016]],[\"comment/475\",[]],[\"name/476\",[322,59.016]],[\"comment/476\",[]],[\"name/477\",[323,59.016]],[\"comment/477\",[]],[\"name/478\",[324,59.016]],[\"comment/478\",[]],[\"name/479\",[325,59.016]],[\"comment/479\",[]],[\"name/480\",[5,23.061]],[\"comment/480\",[]],[\"name/481\",[326,59.016]],[\"comment/481\",[]],[\"name/482\",[284,53.904]],[\"comment/482\",[]],[\"name/483\",[327,59.016]],[\"comment/483\",[]],[\"name/484\",[328,59.016]],[\"comment/484\",[]],[\"name/485\",[329,59.016]],[\"comment/485\",[]],[\"name/486\",[330,59.016]],[\"comment/486\",[]],[\"name/487\",[331,59.016]],[\"comment/487\",[]],[\"name/488\",[332,59.016]],[\"comment/488\",[]],[\"name/489\",[333,59.016]],[\"comment/489\",[]],[\"name/490\",[334,59.016]],[\"comment/490\",[]],[\"name/491\",[335,59.016]],[\"comment/491\",[]],[\"name/492\",[336,59.016]],[\"comment/492\",[]],[\"name/493\",[337,59.016]],[\"comment/493\",[]],[\"name/494\",[338,59.016]],[\"comment/494\",[]],[\"name/495\",[339,59.016]],[\"comment/495\",[]],[\"name/496\",[5,23.061]],[\"comment/496\",[]],[\"name/497\",[139,53.904]],[\"comment/497\",[]],[\"name/498\",[340,59.016]],[\"comment/498\",[]],[\"name/499\",[341,59.016]],[\"comment/499\",[]],[\"name/500\",[11,53.904]],[\"comment/500\",[]],[\"name/501\",[342,59.016]],[\"comment/501\",[]],[\"name/502\",[343,53.904]],[\"comment/502\",[]],[\"name/503\",[344,59.016]],[\"comment/503\",[]],[\"name/504\",[345,59.016]],[\"comment/504\",[]],[\"name/505\",[5,23.061]],[\"comment/505\",[]],[\"name/506\",[346,59.016]],[\"comment/506\",[]],[\"name/507\",[347,59.016]],[\"comment/507\",[]],[\"name/508\",[348,59.016]],[\"comment/508\",[]],[\"name/509\",[349,59.016]],[\"comment/509\",[]],[\"name/510\",[350,59.016]],[\"comment/510\",[]],[\"name/511\",[351,59.016]],[\"comment/511\",[]],[\"name/512\",[352,59.016]],[\"comment/512\",[]],[\"name/513\",[353,59.016]],[\"comment/513\",[]],[\"name/514\",[354,59.016]],[\"comment/514\",[]],[\"name/515\",[355,59.016]],[\"comment/515\",[]],[\"name/516\",[356,59.016]],[\"comment/516\",[]],[\"name/517\",[357,59.016]],[\"comment/517\",[]],[\"name/518\",[5,23.061]],[\"comment/518\",[]],[\"name/519\",[358,59.016]],[\"comment/519\",[]],[\"name/520\",[359,59.016]],[\"comment/520\",[]],[\"name/521\",[360,59.016]],[\"comment/521\",[]],[\"name/522\",[361,59.016]],[\"comment/522\",[]],[\"name/523\",[362,59.016]],[\"comment/523\",[]],[\"name/524\",[363,59.016]],[\"comment/524\",[]],[\"name/525\",[364,59.016]],[\"comment/525\",[]],[\"name/526\",[365,59.016]],[\"comment/526\",[]],[\"name/527\",[366,59.016]],[\"comment/527\",[]],[\"name/528\",[367,59.016]],[\"comment/528\",[]],[\"name/529\",[368,59.016]],[\"comment/529\",[]],[\"name/530\",[369,41.895,370,41.895]],[\"comment/530\",[]],[\"name/531\",[371,59.016]],[\"comment/531\",[]],[\"name/532\",[372,59.016]],[\"comment/532\",[]],[\"name/533\",[343,53.904]],[\"comment/533\",[]],[\"name/534\",[373,59.016]],[\"comment/534\",[]],[\"name/535\",[374,59.016]],[\"comment/535\",[]],[\"name/536\",[375,59.016]],[\"comment/536\",[]],[\"name/537\",[376,59.016]],[\"comment/537\",[]],[\"name/538\",[377,59.016]],[\"comment/538\",[]],[\"name/539\",[378,59.016]],[\"comment/539\",[]],[\"name/540\",[379,59.016]],[\"comment/540\",[]],[\"name/541\",[380,59.016]],[\"comment/541\",[]],[\"name/542\",[381,59.016]],[\"comment/542\",[]],[\"name/543\",[382,59.016]],[\"comment/543\",[]],[\"name/544\",[383,59.016]],[\"comment/544\",[]]],\"invertedIndex\":[[\"\",{\"_index\":15,\"name\":{\"19\":{}},\"comment\":{}}],[\"200\",{\"_index\":19,\"name\":{\"27\":{},\"38\":{},\"57\":{},\"68\":{}},\"comment\":{}}],[\"__type\",{\"_index\":5,\"name\":{\"7\":{},\"10\":{},\"18\":{},\"20\":{},\"22\":{},\"26\":{},\"28\":{},\"31\":{},\"33\":{},\"37\":{},\"39\":{},\"42\":{},\"44\":{},\"48\":{},\"50\":{},\"52\":{},\"56\":{},\"58\":{},\"61\":{},\"63\":{},\"67\":{},\"69\":{},\"120\":{},\"152\":{},\"160\":{},\"169\":{},\"177\":{},\"186\":{},\"195\":{},\"204\":{},\"215\":{},\"223\":{},\"242\":{},\"254\":{},\"266\":{},\"283\":{},\"309\":{},\"330\":{},\"341\":{},\"349\":{},\"366\":{},\"373\":{},\"379\":{},\"387\":{},\"399\":{},\"410\":{},\"416\":{},\"424\":{},\"447\":{},\"450\":{},\"480\":{},\"496\":{},\"505\":{},\"518\":{}},\"comment\":{}}],[\"accordedright\",{\"_index\":215,\"name\":{\"322\":{}},\"comment\":{}}],[\"accountdid\",{\"_index\":107,\"name\":{\"162\":{},\"171\":{},\"179\":{}},\"comment\":{}}],[\"accountnumber\",{\"_index\":264,\"name\":{\"401\":{}},\"comment\":{}}],[\"accounts\",{\"_index\":188,\"name\":{\"293\":{}},\"comment\":{}}],[\"address\",{\"_index\":263,\"name\":{\"400\":{}},\"comment\":{}}],[\"admin\",{\"_index\":138,\"name\":{\"226\":{}},\"comment\":{}}],[\"agentaddress\",{\"_index\":155,\"name\":{\"245\":{},\"258\":{}},\"comment\":{}}],[\"agentdid\",{\"_index\":154,\"name\":{\"244\":{},\"257\":{}},\"comment\":{}}],[\"allowreservewithdrawals\",{\"_index\":94,\"name\":{\"144\":{}},\"comment\":{}}],[\"allowsells\",{\"_index\":93,\"name\":{\"143\":{}},\"comment\":{}}],[\"alpha\",{\"_index\":102,\"name\":{\"154\":{}},\"comment\":{}}],[\"alphabond\",{\"_index\":95,\"name\":{\"145\":{}},\"comment\":{}}],[\"alsoknownas\",{\"_index\":217,\"name\":{\"324\":{}},\"comment\":{}}],[\"amount\",{\"_index\":108,\"name\":{\"163\":{},\"172\":{},\"180\":{},\"190\":{},\"199\":{},\"208\":{},\"262\":{},\"344\":{},\"370\":{},\"376\":{}},\"comment\":{}}],[\"api/claims/collection/{id}/claims\",{\"_index\":22,\"name\":{\"49\":{}},\"comment\":{}}],[\"api/graphql_schema\",{\"_index\":20,\"name\":{\"30\":{}},\"comment\":{}}],[\"api/ipfs/{cid\",{\"_index\":21,\"name\":{\"41\":{}},\"comment\":{}}],[\"api/tokenomics/fetchaccounts\",{\"_index\":23,\"name\":{\"60\":{}},\"comment\":{}}],[\"app\",{\"_index\":0,\"name\":{\"0\":{},\"1\":{}},\"comment\":{}}],[\"approved\",{\"_index\":145,\"name\":{\"233\":{}},\"comment\":{}}],[\"arraybuffers\",{\"_index\":362,\"name\":{\"523\":{}},\"comment\":{}}],[\"arrelement\",{\"_index\":328,\"name\":{\"484\":{}},\"comment\":{}}],[\"assertionmethod\",{\"_index\":209,\"name\":{\"316\":{}},\"comment\":{}}],[\"attribute\",{\"_index\":325,\"name\":{\"479\":{}},\"comment\":{}}],[\"authentication\",{\"_index\":208,\"name\":{\"315\":{}},\"comment\":{}}],[\"availablereserve\",{\"_index\":91,\"name\":{\"141\":{}},\"comment\":{}}],[\"availbalance\",{\"_index\":265,\"name\":{\"402\":{}},\"comment\":{}}],[\"b64tojson\",{\"_index\":332,\"name\":{\"488\":{}},\"comment\":{}}],[\"b64touint8array\",{\"_index\":331,\"name\":{\"487\":{}},\"comment\":{}}],[\"base64tojson\",{\"_index\":351,\"name\":{\"511\":{}},\"comment\":{}}],[\"basepath\",{\"_index\":12,\"name\":{\"15\":{}},\"comment\":{}}],[\"batchblocks\",{\"_index\":96,\"name\":{\"146\":{}},\"comment\":{}}],[\"block\",{\"_index\":271,\"name\":{\"409\":{}},\"comment\":{}}],[\"blockheight\",{\"_index\":130,\"name\":{\"217\":{}},\"comment\":{}}],[\"bond\",{\"_index\":71,\"name\":{\"119\":{}},\"comment\":{}}],[\"bondalpha\",{\"_index\":101,\"name\":{\"151\":{}},\"comment\":{}}],[\"bondbuy\",{\"_index\":106,\"name\":{\"159\":{}},\"comment\":{}}],[\"bonddid\",{\"_index\":72,\"name\":{\"121\":{},\"153\":{},\"161\":{},\"170\":{},\"178\":{},\"187\":{},\"196\":{},\"205\":{}},\"comment\":{}}],[\"bondsell\",{\"_index\":111,\"name\":{\"168\":{}},\"comment\":{}}],[\"bondswap\",{\"_index\":113,\"name\":{\"176\":{}},\"comment\":{}}],[\"buyorderbond\",{\"_index\":317,\"name\":{\"471\":{}},\"comment\":{}}],[\"bytesizepretty\",{\"_index\":363,\"name\":{\"524\":{}},\"comment\":{}}],[\"bytessizespretty\",{\"_index\":364,\"name\":{\"525\":{}},\"comment\":{}}],[\"cancelled\",{\"_index\":246,\"name\":{\"362\":{}},\"comment\":{}}],[\"cap\",{\"_index\":241,\"name\":{\"357\":{}},\"comment\":{}}],[\"capabilitydelegation\",{\"_index\":212,\"name\":{\"319\":{}},\"comment\":{}}],[\"capabilityinvocation\",{\"_index\":211,\"name\":{\"318\":{}},\"comment\":{}}],[\"chain\",{\"_index\":128,\"name\":{\"214\":{}},\"comment\":{}}],[\"chainid\",{\"_index\":129,\"name\":{\"216\":{}},\"comment\":{}}],[\"chunkarray\",{\"_index\":353,\"name\":{\"513\":{}},\"comment\":{}}],[\"cid\",{\"_index\":222,\"name\":{\"331\":{}},\"comment\":{}}],[\"claim\",{\"_index\":152,\"name\":{\"241\":{}},\"comment\":{}}],[\"claimcollection\",{\"_index\":135,\"name\":{\"222\":{}},\"comment\":{}}],[\"claimid\",{\"_index\":153,\"name\":{\"243\":{},\"264\":{}},\"comment\":{}}],[\"claimsplugin\",{\"_index\":25,\"name\":{\"73\":{}},\"comment\":{}}],[\"class\",{\"_index\":239,\"name\":{\"352\":{}},\"comment\":{}}],[\"code\",{\"_index\":277,\"name\":{\"418\":{}},\"comment\":{}}],[\"collection\",{\"_index\":252,\"name\":{\"383\":{}},\"comment\":{}}],[\"collectionid\",{\"_index\":159,\"name\":{\"249\":{},\"255\":{}},\"comment\":{}}],[\"concatarraybuffers\",{\"_index\":335,\"name\":{\"491\":{}},\"comment\":{}}],[\"contenttype\",{\"_index\":223,\"name\":{\"332\":{}},\"comment\":{}}],[\"context\",{\"_index\":204,\"name\":{\"311\":{}},\"comment\":{}}],[\"contractaddress\",{\"_index\":237,\"name\":{\"350\":{}},\"comment\":{}}],[\"controller\",{\"_index\":205,\"name\":{\"312\":{}},\"comment\":{}}],[\"controllerdid\",{\"_index\":79,\"name\":{\"129\":{}},\"comment\":{}}],[\"count\",{\"_index\":143,\"name\":{\"231\":{}},\"comment\":{}}],[\"counttokensbytype\",{\"_index\":354,\"name\":{\"514\":{}},\"comment\":{}}],[\"createbond\",{\"_index\":99,\"name\":{\"149\":{},\"468\":{}},\"comment\":{}}],[\"createbondalpha\",{\"_index\":105,\"name\":{\"158\":{}},\"comment\":{}}],[\"createbondbuy\",{\"_index\":110,\"name\":{\"167\":{}},\"comment\":{}}],[\"createbondsell\",{\"_index\":112,\"name\":{\"175\":{}},\"comment\":{}}],[\"createbondswap\",{\"_index\":115,\"name\":{\"184\":{}},\"comment\":{}}],[\"createchain\",{\"_index\":132,\"name\":{\"219\":{}},\"comment\":{}}],[\"createclaim\",{\"_index\":161,\"name\":{\"251\":{}},\"comment\":{}}],[\"createclaimcollection\",{\"_index\":150,\"name\":{\"239\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":310,\"name\":{\"460\":{}},\"comment\":{}}],[\"createdispute\",{\"_index\":173,\"name\":{\"271\":{}},\"comment\":{}}],[\"createentity\",{\"_index\":191,\"name\":{\"296\":{},\"458\":{}},\"comment\":{}}],[\"createfullentityloader\",{\"_index\":30,\"name\":{\"78\":{}},\"comment\":{}}],[\"creategetaccounttransactionskey\",{\"_index\":56,\"name\":{\"104\":{}},\"comment\":{}}],[\"creategetaccounttransactionsloader\",{\"_index\":39,\"name\":{\"87\":{}},\"comment\":{}}],[\"createiid\",{\"_index\":218,\"name\":{\"326\":{},\"456\":{}},\"comment\":{}}],[\"createoutcomepayment\",{\"_index\":122,\"name\":{\"202\":{}},\"comment\":{}}],[\"createparententityloader\",{\"_index\":28,\"name\":{\"76\":{}},\"comment\":{}}],[\"createreservewithdrawal\",{\"_index\":126,\"name\":{\"212\":{}},\"comment\":{}}],[\"createsharewithdrawal\",{\"_index\":119,\"name\":{\"193\":{}},\"comment\":{}}],[\"createtoken\",{\"_index\":254,\"name\":{\"385\":{},\"465\":{}},\"comment\":{}}],[\"createtokenclass\",{\"_index\":247,\"name\":{\"363\":{}},\"comment\":{}}],[\"createtokentransaction\",{\"_index\":234,\"name\":{\"346\":{}},\"comment\":{}}],[\"creatordid\",{\"_index\":78,\"name\":{\"128\":{}},\"comment\":{}}],[\"credentials\",{\"_index\":185,\"name\":{\"290\":{}},\"comment\":{}}],[\"currentchain\",{\"_index\":292,\"name\":{\"436\":{}},\"comment\":{}}],[\"currentoutcomepaymentreserve\",{\"_index\":92,\"name\":{\"142\":{}},\"comment\":{}}],[\"currentreserve\",{\"_index\":90,\"name\":{\"140\":{}},\"comment\":{}}],[\"currentsupply\",{\"_index\":89,\"name\":{\"139\":{}},\"comment\":{}}],[\"data\",{\"_index\":172,\"name\":{\"270\":{},\"333\":{}},\"comment\":{}}],[\"database_url\",{\"_index\":375,\"name\":{\"536\":{}},\"comment\":{}}],[\"database_url_core\",{\"_index\":376,\"name\":{\"537\":{}},\"comment\":{}}],[\"database_use_ssl\",{\"_index\":381,\"name\":{\"542\":{}},\"comment\":{}}],[\"decodemessage\",{\"_index\":368,\"name\":{\"529\":{}},\"comment\":{}}],[\"delayedfunction\",{\"_index\":302,\"name\":{\"446\":{}},\"comment\":{}}],[\"delegationsbalance\",{\"_index\":266,\"name\":{\"403\":{}},\"comment\":{}}],[\"denoms\",{\"_index\":285,\"name\":{\"429\":{}},\"comment\":{}}],[\"description\",{\"_index\":10,\"name\":{\"13\":{},\"23\":{},\"29\":{},\"34\":{},\"40\":{},\"45\":{},\"53\":{},\"59\":{},\"64\":{},\"70\":{},\"125\":{},\"354\":{}},\"comment\":{}}],[\"deviceexternalidsloaded\",{\"_index\":51,\"name\":{\"99\":{}},\"comment\":{}}],[\"dispute\",{\"_index\":168,\"name\":{\"265\":{}},\"comment\":{}}],[\"disputeclaim\",{\"_index\":313,\"name\":{\"464\":{}},\"comment\":{}}],[\"disputed\",{\"_index\":147,\"name\":{\"235\":{}},\"comment\":{}}],[\"encrypted\",{\"_index\":256,\"name\":{\"389\":{}},\"comment\":{}}],[\"enddate\",{\"_index\":141,\"name\":{\"229\":{},\"287\":{}},\"comment\":{}}],[\"entity\",{\"_index\":137,\"name\":{\"225\":{},\"282\":{}},\"comment\":{}}],[\"entity_module_contract_address\",{\"_index\":379,\"name\":{\"540\":{}},\"comment\":{}}],[\"entityandiid\",{\"_index\":198,\"name\":{\"303\":{}},\"comment\":{}}],[\"entityplugin\",{\"_index\":31,\"name\":{\"79\":{}},\"comment\":{}}],[\"entityverified\",{\"_index\":186,\"name\":{\"291\":{}},\"comment\":{}}],[\"evaluated\",{\"_index\":144,\"name\":{\"232\":{}},\"comment\":{}}],[\"evaluation\",{\"_index\":160,\"name\":{\"250\":{},\"253\":{}},\"comment\":{}}],[\"evaluationdate\",{\"_index\":167,\"name\":{\"263\":{}},\"comment\":{}}],[\"eventtypes\",{\"_index\":309,\"name\":{\"455\":{}},\"comment\":{}}],[\"eventtypesarray\",{\"_index\":323,\"name\":{\"477\":{}},\"comment\":{}}],[\"eventtypesattributekey\",{\"_index\":324,\"name\":{\"478\":{}},\"comment\":{}}],[\"exitfeepercentage\",{\"_index\":82,\"name\":{\"132\":{}},\"comment\":{}}],[\"export\",{\"_index\":4,\"name\":{\"6\":{}},\"comment\":{}}],[\"external\",{\"_index\":361,\"name\":{\"522\":{}},\"comment\":{}}],[\"externalid\",{\"_index\":189,\"name\":{\"294\":{}},\"comment\":{}}],[\"fee\",{\"_index\":278,\"name\":{\"419\":{}},\"comment\":{}}],[\"feeaddress\",{\"_index\":83,\"name\":{\"133\":{}},\"comment\":{}}],[\"from\",{\"_index\":231,\"name\":{\"342\":{},\"427\":{}},\"comment\":{}}],[\"fullentityloader\",{\"_index\":29,\"name\":{\"77\":{}},\"comment\":{}}],[\"func\",{\"_index\":304,\"name\":{\"449\":{}},\"comment\":{}}],[\"functionparameters\",{\"_index\":77,\"name\":{\"127\":{}},\"comment\":{}}],[\"functiontype\",{\"_index\":76,\"name\":{\"126\":{}},\"comment\":{}}],[\"gasused\",{\"_index\":279,\"name\":{\"420\":{}},\"comment\":{}}],[\"gaswanted\",{\"_index\":280,\"name\":{\"421\":{}},\"comment\":{}}],[\"get\",{\"_index\":16,\"name\":{\"21\":{},\"32\":{},\"43\":{},\"51\":{},\"62\":{}},\"comment\":{}}],[\"getaccountsandbalances\",{\"_index\":69,\"name\":{\"117\":{}},\"comment\":{}}],[\"getaccounttokens\",{\"_index\":60,\"name\":{\"108\":{}},\"comment\":{}}],[\"getaccounttransactions\",{\"_index\":59,\"name\":{\"107\":{}},\"comment\":{}}],[\"getaccounttransactionsloader\",{\"_index\":38,\"name\":{\"86\":{}},\"comment\":{}}],[\"getallclaimtypesfromcellnode\",{\"_index\":46,\"name\":{\"94\":{}},\"comment\":{}}],[\"getchain\",{\"_index\":131,\"name\":{\"218\":{}},\"comment\":{}}],[\"getclaimtypesfromcellnode\",{\"_index\":47,\"name\":{\"95\":{}},\"comment\":{}}],[\"getcollectionclaims\",{\"_index\":44,\"name\":{\"92\":{}},\"comment\":{}}],[\"getcollectionclaimsbytype\",{\"_index\":178,\"name\":{\"276\":{}},\"comment\":{}}],[\"getcollectionclaimschematypesloaded\",{\"_index\":45,\"name\":{\"93\":{}},\"comment\":{}}],[\"getcollectionclaimstypenull\",{\"_index\":176,\"name\":{\"274\":{}},\"comment\":{}}],[\"getcollectionentity\",{\"_index\":175,\"name\":{\"273\":{}},\"comment\":{}}],[\"getcollectionsclaimtypenull\",{\"_index\":174,\"name\":{\"272\":{}},\"comment\":{}}],[\"getdocfromattributes\",{\"_index\":348,\"name\":{\"508\":{}},\"comment\":{}}],[\"getentitiesexternalid\",{\"_index\":52,\"name\":{\"100\":{}},\"comment\":{}}],[\"getentityaccountsbyiidcontext\",{\"_index\":201,\"name\":{\"306\":{}},\"comment\":{}}],[\"getentityandiid\",{\"_index\":199,\"name\":{\"304\":{}},\"comment\":{}}],[\"getentitydeviceaccounts\",{\"_index\":200,\"name\":{\"305\":{}},\"comment\":{}}],[\"getentitydeviceandnoexternalid\",{\"_index\":195,\"name\":{\"300\":{}},\"comment\":{}}],[\"getentityparentiid\",{\"_index\":197,\"name\":{\"302\":{}},\"comment\":{}}],[\"getentityservice\",{\"_index\":196,\"name\":{\"301\":{}},\"comment\":{}}],[\"getfullentitybyid\",{\"_index\":50,\"name\":{\"98\":{}},\"comment\":{}}],[\"getipfs\",{\"_index\":224,\"name\":{\"334\":{}},\"comment\":{}}],[\"getipfsdocument\",{\"_index\":54,\"name\":{\"102\":{}},\"comment\":{}}],[\"getlatestblock\",{\"_index\":367,\"name\":{\"528\":{}},\"comment\":{}}],[\"getmemoryusage\",{\"_index\":365,\"name\":{\"526\":{}},\"comment\":{}}],[\"getparententitybyid\",{\"_index\":49,\"name\":{\"97\":{}},\"comment\":{}}],[\"gettokenclass\",{\"_index\":260,\"name\":{\"396\":{}},\"comment\":{}}],[\"gettokenclasscontractaddress\",{\"_index\":235,\"name\":{\"347\":{}},\"comment\":{}}],[\"gettokenname\",{\"_index\":229,\"name\":{\"339\":{}},\"comment\":{}}],[\"gettokenretiredamountsum\",{\"_index\":259,\"name\":{\"395\":{}},\"comment\":{}}],[\"gettokenstotalbyaddress\",{\"_index\":57,\"name\":{\"105\":{}},\"comment\":{}}],[\"gettokenstotalforcollection\",{\"_index\":61,\"name\":{\"109\":{}},\"comment\":{}}],[\"gettokenstotalforcollectionamounts\",{\"_index\":62,\"name\":{\"110\":{}},\"comment\":{}}],[\"gettokenstotalforentities\",{\"_index\":58,\"name\":{\"106\":{}},\"comment\":{}}],[\"gettokentransaction\",{\"_index\":258,\"name\":{\"394\":{}},\"comment\":{}}],[\"getvaluefromattributes\",{\"_index\":349,\"name\":{\"509\":{}},\"comment\":{}}],[\"getwasmattr\",{\"_index\":350,\"name\":{\"510\":{}},\"comment\":{}}],[\"graphql/claims\",{\"_index\":24,\"name\":{\"72\":{}},\"comment\":{}}],[\"graphql/entity\",{\"_index\":26,\"name\":{\"74\":{}},\"comment\":{}}],[\"graphql/example\",{\"_index\":32,\"name\":{\"80\":{}},\"comment\":{}}],[\"graphql/smart_tags_plugin\",{\"_index\":35,\"name\":{\"83\":{}},\"comment\":{}}],[\"graphql/token\",{\"_index\":37,\"name\":{\"85\":{}},\"comment\":{}}],[\"graphql/tokenomics\",{\"_index\":41,\"name\":{\"89\":{}},\"comment\":{}}],[\"handlers/claims_handler\",{\"_index\":43,\"name\":{\"91\":{}},\"comment\":{}}],[\"handlers/entity_handler\",{\"_index\":48,\"name\":{\"96\":{}},\"comment\":{}}],[\"handlers/ipfs_handler\",{\"_index\":53,\"name\":{\"101\":{}},\"comment\":{}}],[\"handlers/token_handler\",{\"_index\":55,\"name\":{\"103\":{}},\"comment\":{}}],[\"handlers/tokenomics_handler\",{\"_index\":63,\"name\":{\"111\":{}},\"comment\":{}}],[\"hash\",{\"_index\":276,\"name\":{\"417\":{}},\"comment\":{}}],[\"heaptotal\",{\"_index\":359,\"name\":{\"520\":{}},\"comment\":{}}],[\"heapused\",{\"_index\":360,\"name\":{\"521\":{}},\"comment\":{}}],[\"height\",{\"_index\":103,\"name\":{\"156\":{},\"165\":{},\"173\":{},\"182\":{},\"191\":{},\"200\":{},\"210\":{},\"411\":{}},\"comment\":{}}],[\"host\",{\"_index\":11,\"name\":{\"14\":{},\"500\":{}},\"comment\":{}}],[\"hostname\",{\"_index\":342,\"name\":{\"501\":{}},\"comment\":{}}],[\"id\",{\"_index\":136,\"name\":{\"224\":{},\"284\":{},\"310\":{},\"367\":{},\"374\":{},\"380\":{},\"392\":{}},\"comment\":{}}],[\"iid\",{\"_index\":203,\"name\":{\"308\":{}},\"comment\":{}}],[\"iidplugin\",{\"_index\":33,\"name\":{\"81\":{}},\"comment\":{}}],[\"image\",{\"_index\":240,\"name\":{\"355\":{}},\"comment\":{}}],[\"index\",{\"_index\":1,\"name\":{\"2\":{},\"381\":{}},\"comment\":{}}],[\"inflation\",{\"_index\":68,\"name\":{\"116\":{}},\"comment\":{}}],[\"info\",{\"_index\":7,\"name\":{\"9\":{}},\"comment\":{}}],[\"insertblock\",{\"_index\":288,\"name\":{\"432\":{}},\"comment\":{}}],[\"invalidated\",{\"_index\":148,\"name\":{\"236\":{}},\"comment\":{}}],[\"ipfs\",{\"_index\":221,\"name\":{\"329\":{}},\"comment\":{}}],[\"ipfs_service_mapping\",{\"_index\":380,\"name\":{\"541\":{}},\"comment\":{}}],[\"jsonstringtobase64\",{\"_index\":336,\"name\":{\"492\":{}},\"comment\":{}}],[\"jsontoarray\",{\"_index\":334,\"name\":{\"490\":{}},\"comment\":{}}],[\"jsontobase64\",{\"_index\":337,\"name\":{\"493\":{}},\"comment\":{}}],[\"jurisdiction\",{\"_index\":250,\"name\":{\"369\":{}},\"comment\":{}}],[\"key\",{\"_index\":326,\"name\":{\"481\":{}},\"comment\":{}}],[\"keyagreement\",{\"_index\":210,\"name\":{\"317\":{}},\"comment\":{}}],[\"limiter\",{\"_index\":370,\"name\":{\"530\":{}},\"comment\":{}}],[\"linkedclaim\",{\"_index\":214,\"name\":{\"321\":{}},\"comment\":{}}],[\"linkedentity\",{\"_index\":216,\"name\":{\"323\":{}},\"comment\":{}}],[\"linkedresource\",{\"_index\":213,\"name\":{\"320\":{}},\"comment\":{}}],[\"maxprices\",{\"_index\":109,\"name\":{\"164\":{}},\"comment\":{}}],[\"maxsupply\",{\"_index\":85,\"name\":{\"135\":{}},\"comment\":{}}],[\"memo\",{\"_index\":281,\"name\":{\"422\":{}},\"comment\":{}}],[\"memoryusage\",{\"_index\":357,\"name\":{\"517\":{}},\"comment\":{}}],[\"message\",{\"_index\":282,\"name\":{\"423\":{}},\"comment\":{}}],[\"messages\",{\"_index\":274,\"name\":{\"414\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":187,\"name\":{\"292\":{},\"325\":{}},\"comment\":{}}],[\"migrate_db_programatically\",{\"_index\":377,\"name\":{\"538\":{}},\"comment\":{}}],[\"minter\",{\"_index\":238,\"name\":{\"351\":{}},\"comment\":{}}],[\"minttoken\",{\"_index\":315,\"name\":{\"467\":{}},\"comment\":{}}],[\"name\",{\"_index\":75,\"name\":{\"124\":{},\"353\":{},\"382\":{}},\"comment\":{}}],[\"oracle\",{\"_index\":163,\"name\":{\"256\":{}},\"comment\":{}}],[\"oracledid\",{\"_index\":98,\"name\":{\"148\":{},\"155\":{}},\"comment\":{}}],[\"orderquantitylimits\",{\"_index\":86,\"name\":{\"136\":{}},\"comment\":{}}],[\"outcomepayment\",{\"_index\":97,\"name\":{\"147\":{},\"194\":{}},\"comment\":{}}],[\"outcomepaymentbond\",{\"_index\":320,\"name\":{\"474\":{}},\"comment\":{}}],[\"owner\",{\"_index\":190,\"name\":{\"295\":{},\"371\":{},\"377\":{}},\"comment\":{}}],[\"parameters\",{\"_index\":17,\"name\":{\"24\":{},\"35\":{},\"46\":{},\"54\":{},\"65\":{}},\"comment\":{}}],[\"params\",{\"_index\":345,\"name\":{\"504\":{}},\"comment\":{}}],[\"parententityloader\",{\"_index\":27,\"name\":{\"75\":{}},\"comment\":{}}],[\"password\",{\"_index\":341,\"name\":{\"499\":{}},\"comment\":{}}],[\"paths\",{\"_index\":14,\"name\":{\"17\":{}},\"comment\":{}}],[\"paused\",{\"_index\":243,\"name\":{\"359\":{}},\"comment\":{}}],[\"payments\",{\"_index\":149,\"name\":{\"238\":{}},\"comment\":{}}],[\"paymentsstatus\",{\"_index\":157,\"name\":{\"247\":{}},\"comment\":{}}],[\"pool\",{\"_index\":180,\"name\":{\"278\":{}},\"comment\":{}}],[\"port\",{\"_index\":343,\"name\":{\"502\":{},\"533\":{}},\"comment\":{}}],[\"postgraphile\",{\"_index\":2,\"name\":{\"3\":{},\"4\":{}},\"comment\":{}}],[\"postgres/bond\",{\"_index\":70,\"name\":{\"118\":{}},\"comment\":{}}],[\"postgres/chain\",{\"_index\":127,\"name\":{\"213\":{}},\"comment\":{}}],[\"postgres/claim\",{\"_index\":134,\"name\":{\"221\":{}},\"comment\":{}}],[\"postgres/client\",{\"_index\":179,\"name\":{\"277\":{}},\"comment\":{}}],[\"postgres/entity\",{\"_index\":183,\"name\":{\"281\":{}},\"comment\":{}}],[\"postgres/iid\",{\"_index\":202,\"name\":{\"307\":{}},\"comment\":{}}],[\"postgres/ipfs\",{\"_index\":220,\"name\":{\"328\":{}},\"comment\":{}}],[\"postgres/migrations\",{\"_index\":226,\"name\":{\"336\":{}},\"comment\":{}}],[\"postgres/token\",{\"_index\":228,\"name\":{\"338\":{}},\"comment\":{}}],[\"postgres/tokenomics_account\",{\"_index\":261,\"name\":{\"397\":{}},\"comment\":{}}],[\"postgres/transaction\",{\"_index\":270,\"name\":{\"408\":{}},\"comment\":{}}],[\"postgresmigrate\",{\"_index\":227,\"name\":{\"337\":{}},\"comment\":{}}],[\"proof\",{\"_index\":169,\"name\":{\"267\":{},\"390\":{}},\"comment\":{}}],[\"protocol\",{\"_index\":139,\"name\":{\"227\":{},\"497\":{}},\"comment\":{}}],[\"queryclient\",{\"_index\":293,\"name\":{\"437\":{}},\"comment\":{}}],[\"quota\",{\"_index\":142,\"name\":{\"230\":{}},\"comment\":{}}],[\"reason\",{\"_index\":165,\"name\":{\"260\":{},\"368\":{},\"375\":{}},\"comment\":{}}],[\"recipientaddress\",{\"_index\":118,\"name\":{\"189\":{}},\"comment\":{}}],[\"recipientdid\",{\"_index\":117,\"name\":{\"188\":{}},\"comment\":{}}],[\"registry\",{\"_index\":294,\"name\":{\"438\":{}},\"comment\":{}}],[\"rejected\",{\"_index\":146,\"name\":{\"234\":{}},\"comment\":{}}],[\"relayernode\",{\"_index\":184,\"name\":{\"289\":{}},\"comment\":{}}],[\"reservetokens\",{\"_index\":80,\"name\":{\"130\":{}},\"comment\":{}}],[\"reservewithdrawal\",{\"_index\":123,\"name\":{\"203\":{}},\"comment\":{}}],[\"reservewithdrawaladdress\",{\"_index\":84,\"name\":{\"134\":{},\"209\":{}},\"comment\":{}}],[\"reservewithdrawalbond\",{\"_index\":322,\"name\":{\"476\":{}},\"comment\":{}}],[\"responses\",{\"_index\":18,\"name\":{\"25\":{},\"36\":{},\"47\":{},\"55\":{},\"66\":{}},\"comment\":{}}],[\"retired\",{\"_index\":245,\"name\":{\"361\":{}},\"comment\":{}}],[\"rewardsbalance\",{\"_index\":267,\"name\":{\"404\":{}},\"comment\":{}}],[\"rpc\",{\"_index\":374,\"name\":{\"535\":{}},\"comment\":{}}],[\"rss\",{\"_index\":358,\"name\":{\"519\":{}},\"comment\":{}}],[\"sanitymarginpercentage\",{\"_index\":88,\"name\":{\"138\":{}},\"comment\":{}}],[\"sanityrate\",{\"_index\":87,\"name\":{\"137\":{}},\"comment\":{}}],[\"schematype\",{\"_index\":158,\"name\":{\"248\":{}},\"comment\":{}}],[\"schemes\",{\"_index\":13,\"name\":{\"16\":{}},\"comment\":{}}],[\"segments\",{\"_index\":344,\"name\":{\"503\":{}},\"comment\":{}}],[\"sellorderbond\",{\"_index\":318,\"name\":{\"472\":{}},\"comment\":{}}],[\"senderaddress\",{\"_index\":121,\"name\":{\"198\":{}},\"comment\":{}}],[\"senderdid\",{\"_index\":120,\"name\":{\"197\":{}},\"comment\":{}}],[\"sentrydsn\",{\"_index\":373,\"name\":{\"534\":{}},\"comment\":{}}],[\"service\",{\"_index\":207,\"name\":{\"314\":{}},\"comment\":{}}],[\"setnextalphabond\",{\"_index\":316,\"name\":{\"470\":{}},\"comment\":{}}],[\"sharewithdrawal\",{\"_index\":116,\"name\":{\"185\":{}},\"comment\":{}}],[\"sharewithdrawalbond\",{\"_index\":321,\"name\":{\"475\":{}},\"comment\":{}}],[\"skip\",{\"_index\":303,\"name\":{\"448\":{}},\"comment\":{}}],[\"sleep\",{\"_index\":383,\"name\":{\"544\":{}},\"comment\":{}}],[\"smarttagsplugin\",{\"_index\":36,\"name\":{\"84\":{}},\"comment\":{}}],[\"splitattributesbykeyvalue\",{\"_index\":352,\"name\":{\"512\":{}},\"comment\":{}}],[\"startdate\",{\"_index\":140,\"name\":{\"228\":{},\"286\":{}},\"comment\":{}}],[\"startsync\",{\"_index\":290,\"name\":{\"434\":{}},\"comment\":{}}],[\"state\",{\"_index\":73,\"name\":{\"122\":{},\"237\":{}},\"comment\":{}}],[\"status\",{\"_index\":164,\"name\":{\"259\":{},\"288\":{}},\"comment\":{}}],[\"stopped\",{\"_index\":244,\"name\":{\"360\":{}},\"comment\":{}}],[\"subjectid\",{\"_index\":170,\"name\":{\"268\":{}},\"comment\":{}}],[\"submissiondate\",{\"_index\":156,\"name\":{\"246\":{}},\"comment\":{}}],[\"submitclaim\",{\"_index\":312,\"name\":{\"462\":{}},\"comment\":{}}],[\"supply\",{\"_index\":242,\"name\":{\"358\":{}},\"comment\":{}}],[\"supplycommunitypool\",{\"_index\":67,\"name\":{\"115\":{}},\"comment\":{}}],[\"supplyibc\",{\"_index\":65,\"name\":{\"113\":{}},\"comment\":{}}],[\"supplystaked\",{\"_index\":66,\"name\":{\"114\":{}},\"comment\":{}}],[\"supplytotal\",{\"_index\":64,\"name\":{\"112\":{}},\"comment\":{}}],[\"swagger\",{\"_index\":6,\"name\":{\"8\":{},\"71\":{}},\"comment\":{}}],[\"swagger.json\",{\"_index\":3,\"name\":{\"5\":{}},\"comment\":{}}],[\"swaporderbond\",{\"_index\":319,\"name\":{\"473\":{}},\"comment\":{}}],[\"sync/sync_blocks\",{\"_index\":289,\"name\":{\"433\":{}},\"comment\":{}}],[\"sync/sync_chain\",{\"_index\":291,\"name\":{\"435\":{}},\"comment\":{}}],[\"sync/sync_custom\",{\"_index\":296,\"name\":{\"440\":{}},\"comment\":{}}],[\"sync_handlers/event_data_sync_handler\",{\"_index\":297,\"name\":{\"441\":{}},\"comment\":{}}],[\"sync_handlers/event_data_sync_wasm_handler\",{\"_index\":299,\"name\":{\"443\":{}},\"comment\":{}}],[\"sync_handlers/event_sync_handler\",{\"_index\":301,\"name\":{\"445\":{}},\"comment\":{}}],[\"sync_handlers/transaction_sync_handler\",{\"_index\":306,\"name\":{\"452\":{}},\"comment\":{}}],[\"syncchain\",{\"_index\":295,\"name\":{\"439\":{}},\"comment\":{}}],[\"synceventdata\",{\"_index\":298,\"name\":{\"442\":{}},\"comment\":{}}],[\"syncevents\",{\"_index\":305,\"name\":{\"451\":{}},\"comment\":{}}],[\"synctransactions\",{\"_index\":307,\"name\":{\"453\":{}},\"comment\":{}}],[\"syncwasmeventdata\",{\"_index\":300,\"name\":{\"444\":{}},\"comment\":{}}],[\"testplugin\",{\"_index\":34,\"name\":{\"82\":{}},\"comment\":{}}],[\"time\",{\"_index\":272,\"name\":{\"412\":{}},\"comment\":{}}],[\"timestamp\",{\"_index\":104,\"name\":{\"157\":{},\"166\":{},\"174\":{},\"183\":{},\"192\":{},\"201\":{},\"211\":{}},\"comment\":{}}],[\"title\",{\"_index\":8,\"name\":{\"11\":{}},\"comment\":{}}],[\"to\",{\"_index\":232,\"name\":{\"343\":{},\"428\":{}},\"comment\":{}}],[\"token\",{\"_index\":74,\"name\":{\"123\":{},\"378\":{}},\"comment\":{}}],[\"tokencancelled\",{\"_index\":251,\"name\":{\"372\":{}},\"comment\":{}}],[\"tokenclass\",{\"_index\":236,\"name\":{\"348\":{}},\"comment\":{}}],[\"tokendata\",{\"_index\":253,\"name\":{\"384\":{},\"386\":{}},\"comment\":{}}],[\"tokenid\",{\"_index\":233,\"name\":{\"345\":{}},\"comment\":{}}],[\"tokennames\",{\"_index\":286,\"name\":{\"430\":{}},\"comment\":{}}],[\"tokenomicsaccount\",{\"_index\":262,\"name\":{\"398\":{}},\"comment\":{}}],[\"tokenomicsplugin\",{\"_index\":42,\"name\":{\"90\":{}},\"comment\":{}}],[\"tokenplugin\",{\"_index\":40,\"name\":{\"88\":{}},\"comment\":{}}],[\"tokenretired\",{\"_index\":249,\"name\":{\"365\":{}},\"comment\":{}}],[\"tokentransaction\",{\"_index\":230,\"name\":{\"340\":{}},\"comment\":{}}],[\"tokentransactionwithtoken\",{\"_index\":257,\"name\":{\"393\":{}},\"comment\":{}}],[\"totalbalance\",{\"_index\":268,\"name\":{\"405\":{}},\"comment\":{}}],[\"totoken\",{\"_index\":114,\"name\":{\"181\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":275,\"name\":{\"415\":{}},\"comment\":{}}],[\"transactionhash\",{\"_index\":287,\"name\":{\"431\":{}},\"comment\":{}}],[\"transactions\",{\"_index\":273,\"name\":{\"413\":{}},\"comment\":{}}],[\"trust_proxy\",{\"_index\":378,\"name\":{\"539\":{}},\"comment\":{}}],[\"txfeepercentage\",{\"_index\":81,\"name\":{\"131\":{}},\"comment\":{}}],[\"type\",{\"_index\":171,\"name\":{\"269\":{},\"285\":{},\"356\":{},\"391\":{},\"406\":{}},\"comment\":{}}],[\"types/event\",{\"_index\":308,\"name\":{\"454\":{}},\"comment\":{}}],[\"types/general\",{\"_index\":327,\"name\":{\"483\":{}},\"comment\":{}}],[\"typeurl\",{\"_index\":283,\"name\":{\"425\":{}},\"comment\":{}}],[\"uint8arraytob64\",{\"_index\":333,\"name\":{\"489\":{}},\"comment\":{}}],[\"uint8arraytojs\",{\"_index\":330,\"name\":{\"486\":{}},\"comment\":{}}],[\"updatebond\",{\"_index\":100,\"name\":{\"150\":{},\"469\":{}},\"comment\":{}}],[\"updatechain\",{\"_index\":133,\"name\":{\"220\":{}},\"comment\":{}}],[\"updateclaim\",{\"_index\":162,\"name\":{\"252\":{},\"463\":{}},\"comment\":{}}],[\"updateclaimcollection\",{\"_index\":151,\"name\":{\"240\":{}},\"comment\":{}}],[\"updateclaimschema\",{\"_index\":177,\"name\":{\"275\":{}},\"comment\":{}}],[\"updatecollection\",{\"_index\":311,\"name\":{\"461\":{}},\"comment\":{}}],[\"updateentity\",{\"_index\":192,\"name\":{\"297\":{},\"459\":{}},\"comment\":{}}],[\"updateentityexternalid\",{\"_index\":194,\"name\":{\"299\":{}},\"comment\":{}}],[\"updateentityowner\",{\"_index\":193,\"name\":{\"298\":{}},\"comment\":{}}],[\"updateiid\",{\"_index\":219,\"name\":{\"327\":{},\"457\":{}},\"comment\":{}}],[\"updatetoken\",{\"_index\":314,\"name\":{\"466\":{}},\"comment\":{}}],[\"updatetokenclass\",{\"_index\":248,\"name\":{\"364\":{}},\"comment\":{}}],[\"upperhexfromuint8array\",{\"_index\":347,\"name\":{\"507\":{}},\"comment\":{}}],[\"upsertipfs\",{\"_index\":225,\"name\":{\"335\":{}},\"comment\":{}}],[\"upserttokenomicsaccount\",{\"_index\":269,\"name\":{\"407\":{}},\"comment\":{}}],[\"uri\",{\"_index\":255,\"name\":{\"388\":{}},\"comment\":{}}],[\"url2obj\",{\"_index\":339,\"name\":{\"495\":{}},\"comment\":{}}],[\"user\",{\"_index\":340,\"name\":{\"498\":{}},\"comment\":{}}],[\"util/conversions\",{\"_index\":329,\"name\":{\"485\":{}},\"comment\":{}}],[\"util/db\",{\"_index\":338,\"name\":{\"494\":{}},\"comment\":{}}],[\"util/helpers\",{\"_index\":346,\"name\":{\"506\":{}},\"comment\":{}}],[\"util/long\",{\"_index\":355,\"name\":{\"515\":{}},\"comment\":{}}],[\"util/memory\",{\"_index\":356,\"name\":{\"516\":{}},\"comment\":{}}],[\"util/proto\",{\"_index\":366,\"name\":{\"527\":{}},\"comment\":{}}],[\"util/rate\",{\"_index\":369,\"name\":{\"530\":{}},\"comment\":{}}],[\"util/secrets\",{\"_index\":372,\"name\":{\"532\":{}},\"comment\":{}}],[\"util/sleep\",{\"_index\":382,\"name\":{\"543\":{}},\"comment\":{}}],[\"value\",{\"_index\":284,\"name\":{\"426\":{},\"482\":{}},\"comment\":{}}],[\"verificationmethod\",{\"_index\":206,\"name\":{\"313\":{}},\"comment\":{}}],[\"verificationproof\",{\"_index\":166,\"name\":{\"261\":{}},\"comment\":{}}],[\"version\",{\"_index\":9,\"name\":{\"12\":{}},\"comment\":{}}],[\"web3storageratelimiter\",{\"_index\":371,\"name\":{\"531\":{}},\"comment\":{}}],[\"withdraweraddress\",{\"_index\":125,\"name\":{\"207\":{}},\"comment\":{}}],[\"withdrawerdid\",{\"_index\":124,\"name\":{\"206\":{}},\"comment\":{}}],[\"withquery\",{\"_index\":182,\"name\":{\"280\":{}},\"comment\":{}}],[\"withtransaction\",{\"_index\":181,\"name\":{\"279\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/enums/types_Event.EventTypes.html b/docs/enums/types_Event.EventTypes.html index c441abcc..07e277c8 100644 --- a/docs/enums/types_Event.EventTypes.html +++ b/docs/enums/types_Event.EventTypes.html @@ -179,26 +179,43 @@