├── .dockerignore ├── .eslintrc ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .jest └── setEnvVars.ts ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yaml ├── jest.config.js ├── jest.config.unit.js ├── package.json ├── packages └── ts-types │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── codegen.yaml │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ └── index.ts │ └── tsconfig.json ├── src ├── @types │ └── environment.d.ts ├── block-watcher.ts ├── caching.ts ├── consts.ts ├── context │ ├── base-repository.ts │ ├── blocks-repository.ts │ ├── box-repository.ts │ ├── database-context.ts │ ├── epochs-repository.ts │ ├── header-repository.ts │ ├── repository-interface.ts │ ├── token-repository.ts │ ├── transactions-repository.ts │ ├── unconfirmed-box-repository.ts │ ├── unconfirmed-input-repository.ts │ └── unconfirmed-transactions-repository.ts ├── data-source.ts ├── entities │ ├── ad-proof-entity.ts │ ├── asset-entity.ts │ ├── base-types │ │ ├── asset-entity-base.ts │ │ ├── box-entity-base.ts │ │ ├── data-input-entity-base.ts │ │ ├── input-entity-base.ts │ │ └── transaction-entity-base.ts │ ├── block-info-entity.ts │ ├── box-entity.ts │ ├── box-register-entity.ts │ ├── data-input-entity.ts │ ├── epochs-parameter-entity.ts │ ├── extension-entity.ts │ ├── header-entity.ts │ ├── index.ts │ ├── input-entity.ts │ ├── script-constant-entity.ts │ ├── token-entity.ts │ ├── transaction-entity.ts │ ├── unconfirmed-asset-entity.ts │ ├── unconfirmed-box-entity.ts │ ├── unconfirmed-data-input-entity.ts │ ├── unconfirmed-input-entity.ts │ └── unconfirmed-transaction-entity.ts ├── graphql │ ├── context-type.ts │ ├── index.ts │ ├── input-types │ │ ├── index.ts │ │ ├── transaction-data-input.ts │ │ ├── transaction-input.ts │ │ ├── transaction-output.ts │ │ └── transaction.ts │ ├── interfaces │ │ ├── asset-interface.ts │ │ ├── box-interface.ts │ │ ├── data-input-interface.ts │ │ ├── input-interface.ts │ │ └── transaction-interface.ts │ ├── objects │ │ ├── ad-proof.ts │ │ ├── address-asset-balance.ts │ │ ├── address-balance.ts │ │ ├── address.ts │ │ ├── asset.ts │ │ ├── block.ts │ │ ├── box.ts │ │ ├── data-input.ts │ │ ├── epochs.ts │ │ ├── extension.ts │ │ ├── header.ts │ │ ├── index.ts │ │ ├── info.ts │ │ ├── input.ts │ │ ├── mempool.ts │ │ ├── state.ts │ │ ├── token.ts │ │ ├── transaction.ts │ │ ├── unconfirmed-address.ts │ │ ├── unconfirmed-asset.ts │ │ ├── unconfirmed-box.ts │ │ ├── unconfirmed-data-input.ts │ │ ├── unconfirmed-input.ts │ │ └── unconfirmed-transaction.ts │ ├── resolvers │ │ ├── address-resolver.ts │ │ ├── block-resolver.ts │ │ ├── box-resolver.ts │ │ ├── data-input-resolver.ts │ │ ├── header-resolver.ts │ │ ├── index.ts │ │ ├── info-resolver.ts │ │ ├── input-resolver.ts │ │ ├── mempool-resolver.ts │ │ ├── pagination-arguments.ts │ │ ├── state-resolver.ts │ │ ├── token-resolver.ts │ │ ├── transaction-resolver.ts │ │ └── utils.ts │ ├── schema.graphql │ └── schema.ts ├── index.ts ├── services │ ├── index.ts │ └── node-service.ts └── utils.ts ├── tests ├── integration.spec.ts ├── services │ └── node-service.spec.ts └── utils.spec.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | types -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | .idea 5 | 6 | .env -------------------------------------------------------------------------------- /.jest/setEnvVars.ts: -------------------------------------------------------------------------------- 1 | process.env.ERGO_NODE_ADDRESS = 'http://localhost'; 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.config.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/jest.config.unit.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/package.json -------------------------------------------------------------------------------- /packages/ts-types/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | .npmrc -------------------------------------------------------------------------------- /packages/ts-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/LICENSE -------------------------------------------------------------------------------- /packages/ts-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/README.md -------------------------------------------------------------------------------- /packages/ts-types/codegen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/codegen.yaml -------------------------------------------------------------------------------- /packages/ts-types/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/package-lock.json -------------------------------------------------------------------------------- /packages/ts-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/package.json -------------------------------------------------------------------------------- /packages/ts-types/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/rollup.config.js -------------------------------------------------------------------------------- /packages/ts-types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/src/index.ts -------------------------------------------------------------------------------- /packages/ts-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/packages/ts-types/tsconfig.json -------------------------------------------------------------------------------- /src/@types/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/@types/environment.d.ts -------------------------------------------------------------------------------- /src/block-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/block-watcher.ts -------------------------------------------------------------------------------- /src/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/caching.ts -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/context/base-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/base-repository.ts -------------------------------------------------------------------------------- /src/context/blocks-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/blocks-repository.ts -------------------------------------------------------------------------------- /src/context/box-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/box-repository.ts -------------------------------------------------------------------------------- /src/context/database-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/database-context.ts -------------------------------------------------------------------------------- /src/context/epochs-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/epochs-repository.ts -------------------------------------------------------------------------------- /src/context/header-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/header-repository.ts -------------------------------------------------------------------------------- /src/context/repository-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/repository-interface.ts -------------------------------------------------------------------------------- /src/context/token-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/token-repository.ts -------------------------------------------------------------------------------- /src/context/transactions-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/transactions-repository.ts -------------------------------------------------------------------------------- /src/context/unconfirmed-box-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/unconfirmed-box-repository.ts -------------------------------------------------------------------------------- /src/context/unconfirmed-input-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/unconfirmed-input-repository.ts -------------------------------------------------------------------------------- /src/context/unconfirmed-transactions-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/context/unconfirmed-transactions-repository.ts -------------------------------------------------------------------------------- /src/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/data-source.ts -------------------------------------------------------------------------------- /src/entities/ad-proof-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/ad-proof-entity.ts -------------------------------------------------------------------------------- /src/entities/asset-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/asset-entity.ts -------------------------------------------------------------------------------- /src/entities/base-types/asset-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/base-types/asset-entity-base.ts -------------------------------------------------------------------------------- /src/entities/base-types/box-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/base-types/box-entity-base.ts -------------------------------------------------------------------------------- /src/entities/base-types/data-input-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/base-types/data-input-entity-base.ts -------------------------------------------------------------------------------- /src/entities/base-types/input-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/base-types/input-entity-base.ts -------------------------------------------------------------------------------- /src/entities/base-types/transaction-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/base-types/transaction-entity-base.ts -------------------------------------------------------------------------------- /src/entities/block-info-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/block-info-entity.ts -------------------------------------------------------------------------------- /src/entities/box-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/box-entity.ts -------------------------------------------------------------------------------- /src/entities/box-register-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/box-register-entity.ts -------------------------------------------------------------------------------- /src/entities/data-input-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/data-input-entity.ts -------------------------------------------------------------------------------- /src/entities/epochs-parameter-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/epochs-parameter-entity.ts -------------------------------------------------------------------------------- /src/entities/extension-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/extension-entity.ts -------------------------------------------------------------------------------- /src/entities/header-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/header-entity.ts -------------------------------------------------------------------------------- /src/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/index.ts -------------------------------------------------------------------------------- /src/entities/input-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/input-entity.ts -------------------------------------------------------------------------------- /src/entities/script-constant-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/script-constant-entity.ts -------------------------------------------------------------------------------- /src/entities/token-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/token-entity.ts -------------------------------------------------------------------------------- /src/entities/transaction-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/transaction-entity.ts -------------------------------------------------------------------------------- /src/entities/unconfirmed-asset-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/unconfirmed-asset-entity.ts -------------------------------------------------------------------------------- /src/entities/unconfirmed-box-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/unconfirmed-box-entity.ts -------------------------------------------------------------------------------- /src/entities/unconfirmed-data-input-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/unconfirmed-data-input-entity.ts -------------------------------------------------------------------------------- /src/entities/unconfirmed-input-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/unconfirmed-input-entity.ts -------------------------------------------------------------------------------- /src/entities/unconfirmed-transaction-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/entities/unconfirmed-transaction-entity.ts -------------------------------------------------------------------------------- /src/graphql/context-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/context-type.ts -------------------------------------------------------------------------------- /src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/index.ts -------------------------------------------------------------------------------- /src/graphql/input-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/input-types/index.ts -------------------------------------------------------------------------------- /src/graphql/input-types/transaction-data-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/input-types/transaction-data-input.ts -------------------------------------------------------------------------------- /src/graphql/input-types/transaction-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/input-types/transaction-input.ts -------------------------------------------------------------------------------- /src/graphql/input-types/transaction-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/input-types/transaction-output.ts -------------------------------------------------------------------------------- /src/graphql/input-types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/input-types/transaction.ts -------------------------------------------------------------------------------- /src/graphql/interfaces/asset-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/interfaces/asset-interface.ts -------------------------------------------------------------------------------- /src/graphql/interfaces/box-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/interfaces/box-interface.ts -------------------------------------------------------------------------------- /src/graphql/interfaces/data-input-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/interfaces/data-input-interface.ts -------------------------------------------------------------------------------- /src/graphql/interfaces/input-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/interfaces/input-interface.ts -------------------------------------------------------------------------------- /src/graphql/interfaces/transaction-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/interfaces/transaction-interface.ts -------------------------------------------------------------------------------- /src/graphql/objects/ad-proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/ad-proof.ts -------------------------------------------------------------------------------- /src/graphql/objects/address-asset-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/address-asset-balance.ts -------------------------------------------------------------------------------- /src/graphql/objects/address-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/address-balance.ts -------------------------------------------------------------------------------- /src/graphql/objects/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/address.ts -------------------------------------------------------------------------------- /src/graphql/objects/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/asset.ts -------------------------------------------------------------------------------- /src/graphql/objects/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/block.ts -------------------------------------------------------------------------------- /src/graphql/objects/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/box.ts -------------------------------------------------------------------------------- /src/graphql/objects/data-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/data-input.ts -------------------------------------------------------------------------------- /src/graphql/objects/epochs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/epochs.ts -------------------------------------------------------------------------------- /src/graphql/objects/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/extension.ts -------------------------------------------------------------------------------- /src/graphql/objects/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/header.ts -------------------------------------------------------------------------------- /src/graphql/objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/index.ts -------------------------------------------------------------------------------- /src/graphql/objects/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/info.ts -------------------------------------------------------------------------------- /src/graphql/objects/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/input.ts -------------------------------------------------------------------------------- /src/graphql/objects/mempool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/mempool.ts -------------------------------------------------------------------------------- /src/graphql/objects/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/state.ts -------------------------------------------------------------------------------- /src/graphql/objects/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/token.ts -------------------------------------------------------------------------------- /src/graphql/objects/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/transaction.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-address.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-asset.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-box.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-data-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-data-input.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-input.ts -------------------------------------------------------------------------------- /src/graphql/objects/unconfirmed-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/objects/unconfirmed-transaction.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/address-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/address-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/block-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/block-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/box-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/box-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/data-input-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/data-input-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/header-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/header-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/info-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/info-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/input-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/input-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/mempool-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/mempool-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/pagination-arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/pagination-arguments.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/state-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/state-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/token-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/token-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/transaction-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/transaction-resolver.ts -------------------------------------------------------------------------------- /src/graphql/resolvers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/resolvers/utils.ts -------------------------------------------------------------------------------- /src/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/schema.graphql -------------------------------------------------------------------------------- /src/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/graphql/schema.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./node-service"; 2 | -------------------------------------------------------------------------------- /src/services/node-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/services/node-service.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/tests/integration.spec.ts -------------------------------------------------------------------------------- /tests/services/node-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/tests/services/node-service.spec.ts -------------------------------------------------------------------------------- /tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/tests/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nautls/ergo-graphql/HEAD/tsconfig.json --------------------------------------------------------------------------------