mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-06 19:38:05 +00:00
Change package name prefixes to cerc-io (#177)
This commit is contained in:
parent
e30af92901
commit
f3230e3822
2
.github/workflows/on-main.yaml
vendored
2
.github/workflows/on-main.yaml
vendored
@ -65,6 +65,6 @@ jobs:
|
|||||||
- name: Tag docker image
|
- name: Tag docker image
|
||||||
run: docker tag ${{steps.vars.outputs.repo}} ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|
run: docker tag ${{steps.vars.outputs.repo}} ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|
||||||
- name: Docker Login
|
- name: Docker Login
|
||||||
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u vulcanize --password-stdin
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u cerc-io --password-stdin
|
||||||
- name: Docker Push
|
- name: Docker Push
|
||||||
run: docker push ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|
run: docker push ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|
||||||
|
8
.github/workflows/publish.yaml
vendored
8
.github/workflows/publish.yaml
vendored
@ -13,10 +13,10 @@ jobs:
|
|||||||
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
||||||
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
|
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
|
||||||
- name: Docker Login to Registry
|
- name: Docker Login to Registry
|
||||||
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u vulcanize --password-stdin
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u cerc-io --password-stdin
|
||||||
- name: Docker Pull
|
- name: Docker Pull
|
||||||
run: docker pull ghcr.io/vulcanize/watcher-ts:${{steps.vars.outputs.sha}}
|
run: docker pull ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.sha}}
|
||||||
- name: Tag docker image
|
- name: Tag docker image
|
||||||
run: docker tag ghcr.io/vulcanize/watcher-ts:${{steps.vars.outputs.sha}} ghcr.io/vulcanize/watcher-ts:${{steps.vars.outputs.tag}}
|
run: docker tag ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.sha}} ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.tag}}
|
||||||
- name: Docker Push to Github Hub
|
- name: Docker Push to Github Hub
|
||||||
run: docker push ghcr.io/vulcanize/watcher-ts:${{steps.vars.outputs.tag}}
|
run: docker push ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.tag}}
|
||||||
|
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
|||||||
## Build docker image
|
## Build docker image
|
||||||
.PHONY: docker-build
|
.PHONY: docker-build
|
||||||
docker-build:
|
docker-build:
|
||||||
docker build -t vulcanize/watcher-ts --build-arg NPM_AUTH_TOKEN=$(NPM_AUTH_TOKEN) .
|
docker build -t cerc-io/watcher-ts --build-arg NPM_AUTH_TOKEN=$(NPM_AUTH_TOKEN) .
|
||||||
|
@ -13,7 +13,7 @@ There are packages used from github so we need to follow the following steps to
|
|||||||
3. Follow the steps in https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry#authenticating-with-a-personal-access-token to authenticate to github packages. We can also run the follwing to authenticate by logging in to npm.
|
3. Follow the steps in https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry#authenticating-with-a-personal-access-token to authenticate to github packages. We can also run the follwing to authenticate by logging in to npm.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ npm login --scope=@vulcanize --registry=https://npm.pkg.github.com
|
$ npm login --scope=@cerc-io --registry=https://npm.pkg.github.com
|
||||||
|
|
||||||
> Username: USERNAME
|
> Username: USERNAME
|
||||||
> Password: TOKEN
|
> Password: TOKEN
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "lerna run lint --stream",
|
"lint": "lerna run lint --stream",
|
||||||
"test:init": "lerna run test:init --stream --ignore @vulcanize/*-watcher",
|
"test:init": "lerna run test:init --stream --ignore @cerc-io/*-watcher",
|
||||||
"test": "lerna run test --stream --ignore @vulcanize/*-watcher",
|
"test": "lerna run test --stream --ignore @cerc-io/*-watcher",
|
||||||
"build": "lerna run build --stream",
|
"build": "lerna run build --stream",
|
||||||
"build:watch": "lerna run build --stream --parallel -- -w",
|
"build:watch": "lerna run build --stream --parallel -- -w",
|
||||||
"db:reset": "sudo ./scripts/reset-dbs.sh",
|
"db:reset": "sudo ./scripts/reset-dbs.sh",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/address-watcher",
|
"name": "@cerc-io/address-watcher",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Address Watcher",
|
"description": "Address Watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -16,22 +16,22 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@types/lodash": "^4.14.168",
|
"@types/lodash": "^4.14.168",
|
||||||
"@vulcanize/cache": "^0.1.0",
|
"@cerc-io/cache": "^0.1.0",
|
||||||
"@vulcanize/ipld-eth-client": "^0.1.0",
|
"@cerc-io/ipld-eth-client": "^0.1.0",
|
||||||
"@vulcanize/solidity-mapper": "^0.1.0",
|
"@cerc-io/solidity-mapper": "^0.1.0",
|
||||||
"@vulcanize/tracing-client": "^0.1.0",
|
"@cerc-io/tracing-client": "^0.1.0",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
"apollo-server-express": "^2.25.0",
|
"apollo-server-express": "^2.25.0",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"ethers": "^5.4.4",
|
"ethers": "^5.4.4",
|
||||||
|
@ -7,7 +7,7 @@ import yargs from 'yargs';
|
|||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
import { ethers } from 'ethers';
|
import { ethers } from 'ethers';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
|
||||||
|
@ -8,9 +8,9 @@ import yargs from 'yargs';
|
|||||||
import { hideBin } from 'yargs/helpers';
|
import { hideBin } from 'yargs/helpers';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getCache } from '@vulcanize/cache';
|
import { getCache } from '@cerc-io/cache';
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { DEFAULT_CONFIG_PATH, getConfig, JobQueue } from '@vulcanize/util';
|
import { DEFAULT_CONFIG_PATH, getConfig, JobQueue } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
import { QUEUE_TX_TRACING } from './tx-watcher';
|
import { QUEUE_TX_TRACING } from './tx-watcher';
|
||||||
|
@ -6,9 +6,9 @@ import assert from 'assert';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { ethers } from 'ethers';
|
import { ethers } from 'ethers';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { GetStorageAt } from '@vulcanize/solidity-mapper';
|
import { GetStorageAt } from '@cerc-io/solidity-mapper';
|
||||||
import { TracingClient } from '@vulcanize/tracing-client';
|
import { TracingClient } from '@cerc-io/tracing-client';
|
||||||
|
|
||||||
import { addressesInTrace } from './util';
|
import { addressesInTrace } from './util';
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
|
@ -8,10 +8,10 @@ import yargs from 'yargs';
|
|||||||
import { hideBin } from 'yargs/helpers';
|
import { hideBin } from 'yargs/helpers';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getCache } from '@vulcanize/cache';
|
import { getCache } from '@cerc-io/cache';
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { TracingClient } from '@vulcanize/tracing-client';
|
import { TracingClient } from '@cerc-io/tracing-client';
|
||||||
import { getConfig, JobQueue, DEFAULT_CONFIG_PATH } from '@vulcanize/util';
|
import { getConfig, JobQueue, DEFAULT_CONFIG_PATH } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
|
@ -11,10 +11,10 @@ import { hideBin } from 'yargs/helpers';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { createServer } from 'http';
|
import { createServer } from 'http';
|
||||||
|
|
||||||
import { getCache } from '@vulcanize/cache';
|
import { getCache } from '@cerc-io/cache';
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { TracingClient } from '@vulcanize/tracing-client';
|
import { TracingClient } from '@cerc-io/tracing-client';
|
||||||
import { getConfig, JobQueue, DEFAULT_CONFIG_PATH } from '@vulcanize/util';
|
import { getConfig, JobQueue, DEFAULT_CONFIG_PATH } from '@cerc-io/util';
|
||||||
|
|
||||||
import typeDefs from './schema';
|
import typeDefs from './schema';
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ import debug from 'debug';
|
|||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { JobQueue } from '@vulcanize/util';
|
import { JobQueue } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { BlockProgress } from './entity/BlockProgress';
|
import { BlockProgress } from './entity/BlockProgress';
|
||||||
|
8
packages/cache/package.json
vendored
8
packages/cache/package.json
vendored
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/cache",
|
"name": "@cerc-io/cache",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Generic object cache",
|
"description": "Generic object cache",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -11,14 +11,14 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"canonical-json": "^0.0.4",
|
"canonical-json": "^0.0.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/codegen",
|
"name": "@cerc-io/codegen",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Code generator",
|
"description": "Code generator",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -10,19 +10,19 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@graphql-tools/load-files": "^6.5.2",
|
"@graphql-tools/load-files": "^6.5.2",
|
||||||
"@poanet/solidity-flattener": "https://github.com/vulcanize/solidity-flattener.git",
|
"@poanet/solidity-flattener": "https://github.com/vulcanize/solidity-flattener.git",
|
||||||
"@solidity-parser/parser": "^0.13.2",
|
"@solidity-parser/parser": "^0.13.2",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
"gql-generator": "https://github.com/vulcanize/gql-generator.git",
|
"gql-generator": "https://github.com/vulcanize/gql-generator.git",
|
||||||
"graphql": "^15.5.0",
|
"graphql": "^15.5.0",
|
||||||
"graphql-compose": "^9.0.3",
|
"graphql-compose": "^9.0.3",
|
||||||
|
@ -74,4 +74,4 @@ imports:
|
|||||||
from: typeorm
|
from: typeorm
|
||||||
- toImport:
|
- toImport:
|
||||||
- BlockProgressInterface
|
- BlockProgressInterface
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
|
@ -56,7 +56,7 @@ imports:
|
|||||||
from: typeorm
|
from: typeorm
|
||||||
- toImport:
|
- toImport:
|
||||||
- StateKind
|
- StateKind
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
- toImport:
|
- toImport:
|
||||||
- BlockProgress
|
- BlockProgress
|
||||||
from: ./BlockProgress
|
from: ./BlockProgress
|
||||||
|
@ -57,4 +57,4 @@ imports:
|
|||||||
from: typeorm
|
from: typeorm
|
||||||
- toImport:
|
- toImport:
|
||||||
- SyncStatusInterface
|
- SyncStatusInterface
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
|
@ -290,7 +290,7 @@ export class Entity {
|
|||||||
|
|
||||||
_addBigIntTransformerOption (entityObject: any): void {
|
_addBigIntTransformerOption (entityObject: any): void {
|
||||||
let importObject = entityObject.imports.find((element: any) => {
|
let importObject = entityObject.imports.find((element: any) => {
|
||||||
return element.from === '@vulcanize/util';
|
return element.from === '@cerc-io/util';
|
||||||
});
|
});
|
||||||
|
|
||||||
entityObject.columns.forEach((column: any) => {
|
entityObject.columns.forEach((column: any) => {
|
||||||
@ -308,7 +308,7 @@ export class Entity {
|
|||||||
} else {
|
} else {
|
||||||
importObject = {
|
importObject = {
|
||||||
toImport: new Set(['bigintTransformer']),
|
toImport: new Set(['bigintTransformer']),
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
};
|
};
|
||||||
|
|
||||||
entityObject.imports.push(importObject);
|
entityObject.imports.push(importObject);
|
||||||
@ -329,7 +329,7 @@ export class Entity {
|
|||||||
} else {
|
} else {
|
||||||
importObject = {
|
importObject = {
|
||||||
toImport: new Set(['bigintArrayTransformer']),
|
toImport: new Set(['bigintArrayTransformer']),
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
};
|
};
|
||||||
|
|
||||||
entityObject.imports.push(importObject);
|
entityObject.imports.push(importObject);
|
||||||
@ -340,7 +340,7 @@ export class Entity {
|
|||||||
|
|
||||||
_addDecimalTransformerOption (entityObject: any): void {
|
_addDecimalTransformerOption (entityObject: any): void {
|
||||||
let importObject = entityObject.imports.find((element: any) => {
|
let importObject = entityObject.imports.find((element: any) => {
|
||||||
return element.from === '@vulcanize/util';
|
return element.from === '@cerc-io/util';
|
||||||
});
|
});
|
||||||
|
|
||||||
let isDecimalRequired = false;
|
let isDecimalRequired = false;
|
||||||
@ -362,7 +362,7 @@ export class Entity {
|
|||||||
} else {
|
} else {
|
||||||
importObject = {
|
importObject = {
|
||||||
toImport: new Set(['decimalTransformer']),
|
toImport: new Set(['decimalTransformer']),
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
};
|
};
|
||||||
|
|
||||||
entityObject.imports.push(importObject);
|
entityObject.imports.push(importObject);
|
||||||
@ -385,7 +385,7 @@ export class Entity {
|
|||||||
} else {
|
} else {
|
||||||
importObject = {
|
importObject = {
|
||||||
toImport: new Set(['decimalArrayTransformer']),
|
toImport: new Set(['decimalArrayTransformer']),
|
||||||
from: '@vulcanize/util'
|
from: '@cerc-io/util'
|
||||||
};
|
};
|
||||||
|
|
||||||
entityObject.imports.push(importObject);
|
entityObject.imports.push(importObject);
|
||||||
|
@ -14,7 +14,7 @@ import os from 'os';
|
|||||||
|
|
||||||
import { flatten } from '@poanet/solidity-flattener';
|
import { flatten } from '@poanet/solidity-flattener';
|
||||||
import { parse, visit } from '@solidity-parser/parser';
|
import { parse, visit } from '@solidity-parser/parser';
|
||||||
import { KIND_ACTIVE, KIND_LAZY } from '@vulcanize/util';
|
import { KIND_ACTIVE, KIND_LAZY } from '@cerc-io/util';
|
||||||
|
|
||||||
import { MODE_ETH_CALL, MODE_STORAGE, MODE_ALL, MODE_NONE, DEFAULT_PORT } from './utils/constants';
|
import { MODE_ETH_CALL, MODE_STORAGE, MODE_ALL, MODE_NONE, DEFAULT_PORT } from './utils/constants';
|
||||||
import { Visitor } from './visitor';
|
import { Visitor } from './visitor';
|
||||||
|
@ -10,9 +10,9 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { gql } from '@apollo/client/core';
|
import { gql } from '@apollo/client/core';
|
||||||
import { GraphQLClient, GraphQLConfig } from '@vulcanize/ipld-eth-client';
|
import { GraphQLClient, GraphQLConfig } from '@cerc-io/ipld-eth-client';
|
||||||
|
|
||||||
import { queries, mutations, subscriptions } from './gql';
|
import { queries, mutations, subscriptions } from './gql';
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import { Connection, ConnectionOptions, DeepPartial, FindConditions, QueryRunner, FindManyOptions } from 'typeorm';
|
import { Connection, ConnectionOptions, DeepPartial, FindConditions, QueryRunner, FindManyOptions } from 'typeorm';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { IPLDDatabase as BaseDatabase, IPLDDatabaseInterface, QueryOptions, StateKind, Where } from '@vulcanize/util';
|
import { IPLDDatabase as BaseDatabase, IPLDDatabaseInterface, QueryOptions, StateKind, Where } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Contract } from './entity/Contract';
|
import { Contract } from './entity/Contract';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import {
|
import {
|
||||||
JobQueue,
|
JobQueue,
|
||||||
EventWatcher as BaseEventWatcher,
|
EventWatcher as BaseEventWatcher,
|
||||||
@ -15,7 +15,7 @@ import {
|
|||||||
QUEUE_EVENT_PROCESSING,
|
QUEUE_EVENT_PROCESSING,
|
||||||
UNKNOWN_EVENT_NAME,
|
UNKNOWN_EVENT_NAME,
|
||||||
UpstreamConfig
|
UpstreamConfig
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -19,9 +19,9 @@ import {
|
|||||||
verifyCheckpointData,
|
verifyCheckpointData,
|
||||||
{{/if}}
|
{{/if}}
|
||||||
StateKind
|
StateKind
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
|
@ -12,9 +12,9 @@ import { hideBin } from 'yargs/helpers';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@vulcanize/util';
|
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
// import { updateStateForMappingType, updateStateForElementaryType } from '@vulcanize/util';
|
// import { updateStateForMappingType, updateStateForElementaryType } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer, ResultEvent } from './indexer';
|
import { Indexer, ResultEvent } from './indexer';
|
||||||
|
|
||||||
|
@ -11,9 +11,9 @@ import { PubSub } from 'apollo-server-express';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@vulcanize/util';
|
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
|
@ -10,9 +10,9 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -12,8 +12,8 @@ import _ from 'lodash';
|
|||||||
import { JsonFragment } from '@ethersproject/abi';
|
import { JsonFragment } from '@ethersproject/abi';
|
||||||
import { BaseProvider } from '@ethersproject/providers';
|
import { BaseProvider } from '@ethersproject/providers';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { MappingKey, StorageLayout } from '@vulcanize/solidity-mapper';
|
import { MappingKey, StorageLayout } from '@cerc-io/solidity-mapper';
|
||||||
import {
|
import {
|
||||||
IPLDIndexer as BaseIndexer,
|
IPLDIndexer as BaseIndexer,
|
||||||
IPLDIndexerInterface,
|
IPLDIndexerInterface,
|
||||||
@ -31,9 +31,9 @@ import {
|
|||||||
IPFSClient,
|
IPFSClient,
|
||||||
StateKind,
|
StateKind,
|
||||||
IpldStatus as IpldStatusInterface
|
IpldStatus as IpldStatusInterface
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher } from '@vulcanize/graph-node';
|
import { GraphWatcher } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#each contracts as | contract |}}
|
{{#each contracts as | contract |}}
|
||||||
|
@ -11,9 +11,9 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import util from 'util';
|
import util from 'util';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -26,9 +26,9 @@ import {
|
|||||||
DEFAULT_CONFIG_PATH,
|
DEFAULT_CONFIG_PATH,
|
||||||
initClients,
|
initClients,
|
||||||
startMetricsServer
|
startMetricsServer
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/{{folderName}}",
|
"name": "@cerc-io/{{folderName}}",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "{{folderName}}",
|
"description": "{{folderName}}",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -27,23 +27,23 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"@ipld/dag-cbor": "^6.0.12",
|
"@ipld/dag-cbor": "^6.0.12",
|
||||||
"@vulcanize/ipld-eth-client": "^0.1.0",
|
"@cerc-io/ipld-eth-client": "^0.1.0",
|
||||||
"@vulcanize/solidity-mapper": "^0.1.0",
|
"@cerc-io/solidity-mapper": "^0.1.0",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
"@vulcanize/graph-node": "^0.1.0",
|
"@cerc-io/graph-node": "^0.1.0",
|
||||||
{{/if}}
|
{{/if}}
|
||||||
"apollo-server-express": "^2.25.0",
|
"apollo-server-express": "^2.25.0",
|
||||||
"apollo-type-bigint": "^0.1.3",
|
"apollo-type-bigint": "^0.1.3",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getConfig, resetJobs } from '@vulcanize/util';
|
import { getConfig, resetJobs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset-job-queue');
|
const log = debug('vulcanize:reset-job-queue');
|
||||||
|
|
||||||
|
@ -9,9 +9,9 @@ import debug from 'debug';
|
|||||||
import { MoreThan } from 'typeorm';
|
import { MoreThan } from 'typeorm';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { getConfig, initClients, resetJobs, JobQueue } from '@vulcanize/util';
|
import { getConfig, initClients, resetJobs, JobQueue } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from '../../database';
|
import { Database } from '../../database';
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getResetYargs } from '@vulcanize/util';
|
import { getResetYargs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset');
|
const log = debug('vulcanize:reset');
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ import debug from 'debug';
|
|||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
import { GraphQLScalarType } from 'graphql';
|
import { GraphQLScalarType } from 'graphql';
|
||||||
|
|
||||||
import { ValueResult, BlockHeight, StateKind, gqlTotalQueryCount, gqlQueryCount, jsonBigIntStringReplacer } from '@vulcanize/util';
|
import { ValueResult, BlockHeight, StateKind, gqlTotalQueryCount, gqlQueryCount, jsonBigIntStringReplacer } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { EventWatcher } from './events';
|
import { EventWatcher } from './events';
|
||||||
|
@ -14,9 +14,9 @@ import debug from 'debug';
|
|||||||
import 'graphql-import-node';
|
import 'graphql-import-node';
|
||||||
import { createServer } from 'http';
|
import { createServer } from 'http';
|
||||||
|
|
||||||
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients, startGQLMetricsServer } from '@vulcanize/util';
|
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients, startGQLMetricsServer } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { createResolvers } from './resolvers';
|
import { createResolvers } from './resolvers';
|
||||||
|
@ -10,9 +10,9 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
{{#if (subgraphPath)}}
|
{{#if (subgraphPath)}}
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/eden-watcher",
|
"name": "@cerc-io/eden-watcher",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "eden-watcher",
|
"description": "eden-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -25,22 +25,22 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"@ipld/dag-cbor": "^6.0.12",
|
"@ipld/dag-cbor": "^6.0.12",
|
||||||
"@vulcanize/graph-node": "^0.1.0",
|
"@cerc-io/graph-node": "^0.1.0",
|
||||||
"@vulcanize/ipld-eth-client": "^0.1.0",
|
"@cerc-io/ipld-eth-client": "^0.1.0",
|
||||||
"@vulcanize/solidity-mapper": "^0.1.0",
|
"@cerc-io/solidity-mapper": "^0.1.0",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
"apollo-server-express": "^2.25.0",
|
"apollo-server-express": "^2.25.0",
|
||||||
"apollo-type-bigint": "^0.1.3",
|
"apollo-type-bigint": "^0.1.3",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
|
@ -8,8 +8,8 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -9,8 +9,8 @@ import debug from 'debug';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, StateKind, verifyCheckpointData } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, StateKind, verifyCheckpointData } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -11,8 +11,8 @@ import { PubSub } from 'apollo-server-express';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@vulcanize/util';
|
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -8,8 +8,8 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -9,8 +9,8 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import util from 'util';
|
import util from 'util';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getConfig } from '@vulcanize/util';
|
import { getConfig } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../../database';
|
import { Database } from '../../database';
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getConfig, resetJobs } from '@vulcanize/util';
|
import { getConfig, resetJobs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset-job-queue');
|
const log = debug('vulcanize:reset-job-queue');
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ import debug from 'debug';
|
|||||||
import { MoreThan } from 'typeorm';
|
import { MoreThan } from 'typeorm';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { getConfig, initClients, resetJobs, JobQueue } from '@vulcanize/util';
|
import { getConfig, initClients, resetJobs, JobQueue } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from '../../database';
|
import { Database } from '../../database';
|
||||||
import { Indexer } from '../../indexer';
|
import { Indexer } from '../../indexer';
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getResetYargs } from '@vulcanize/util';
|
import { getResetYargs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset');
|
const log = debug('vulcanize:reset');
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { gql } from '@apollo/client/core';
|
import { gql } from '@apollo/client/core';
|
||||||
import { GraphQLClient, GraphQLConfig } from '@vulcanize/ipld-eth-client';
|
import { GraphQLClient, GraphQLConfig } from '@cerc-io/ipld-eth-client';
|
||||||
|
|
||||||
import { queries, mutations, subscriptions } from './gql';
|
import { queries, mutations, subscriptions } from './gql';
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import { Connection, ConnectionOptions, DeepPartial, FindConditions, QueryRunner, FindManyOptions } from 'typeorm';
|
import { Connection, ConnectionOptions, DeepPartial, FindConditions, QueryRunner, FindManyOptions } from 'typeorm';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { IPLDDatabase as BaseDatabase, IPLDDatabaseInterface, QueryOptions, StateKind, Where } from '@vulcanize/util';
|
import { IPLDDatabase as BaseDatabase, IPLDDatabaseInterface, QueryOptions, StateKind, Where } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Contract } from './entity/Contract';
|
import { Contract } from './entity/Contract';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
|
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, Index, CreateDateColumn } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, Index, CreateDateColumn } from 'typeorm';
|
||||||
import { BlockProgressInterface } from '@vulcanize/util';
|
import { BlockProgressInterface } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockHash'], { unique: true })
|
@Index(['blockHash'], { unique: true })
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
|
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
|
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
|
|
||||||
import { bigintTransformer, decimalTransformer } from '@vulcanize/util';
|
import { bigintTransformer, decimalTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, Index, ManyToOne } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, Index, ManyToOne } from 'typeorm';
|
||||||
|
|
||||||
import { StateKind } from '@vulcanize/util';
|
import { StateKind } from '@cerc-io/util';
|
||||||
|
|
||||||
import { BlockProgress } from './BlockProgress';
|
import { BlockProgress } from './BlockProgress';
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
|
|
||||||
import { bigintArrayTransformer, bigintTransformer } from '@vulcanize/util';
|
import { bigintArrayTransformer, bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
|
|
||||||
import { bigintTransformer, decimalTransformer } from '@vulcanize/util';
|
import { bigintTransformer, decimalTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
enum ProducerSetChangeType {
|
enum ProducerSetChangeType {
|
||||||
Added = 'Added',
|
Added = 'Added',
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
|
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
|
|
||||||
import { bigintTransformer, decimalTransformer } from '@vulcanize/util';
|
import { bigintTransformer, decimalTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
|
|
||||||
import { bigintTransformer, decimalTransformer } from '@vulcanize/util';
|
import { bigintTransformer, decimalTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockNumber'])
|
@Index(['blockNumber'])
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
||||||
import { SyncStatusInterface } from '@vulcanize/util';
|
import { SyncStatusInterface } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class SyncStatus implements SyncStatusInterface {
|
export class SyncStatus implements SyncStatusInterface {
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import {
|
import {
|
||||||
JobQueue,
|
JobQueue,
|
||||||
EventWatcher as BaseEventWatcher,
|
EventWatcher as BaseEventWatcher,
|
||||||
@ -15,7 +15,7 @@ import {
|
|||||||
QUEUE_EVENT_PROCESSING,
|
QUEUE_EVENT_PROCESSING,
|
||||||
UNKNOWN_EVENT_NAME,
|
UNKNOWN_EVENT_NAME,
|
||||||
UpstreamConfig
|
UpstreamConfig
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -6,7 +6,7 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { Between } from 'typeorm';
|
import { Between } from 'typeorm';
|
||||||
|
|
||||||
import { Database as GraphDatabase, prepareEntityState } from '@vulcanize/graph-node';
|
import { Database as GraphDatabase, prepareEntityState } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ import { hideBin } from 'yargs/helpers';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@vulcanize/util';
|
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Copyright 2021 Vulcanize, Inc.
|
// Copyright 2021 Vulcanize, Inc.
|
||||||
//
|
//
|
||||||
|
|
||||||
import { IPLDBlockInterface, StateKind } from '@vulcanize/util';
|
import { IPLDBlockInterface, StateKind } from '@cerc-io/util';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
|
@ -12,8 +12,8 @@ import _ from 'lodash';
|
|||||||
import { JsonFragment } from '@ethersproject/abi';
|
import { JsonFragment } from '@ethersproject/abi';
|
||||||
import { BaseProvider } from '@ethersproject/providers';
|
import { BaseProvider } from '@ethersproject/providers';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { MappingKey, StorageLayout } from '@vulcanize/solidity-mapper';
|
import { MappingKey, StorageLayout } from '@cerc-io/solidity-mapper';
|
||||||
import {
|
import {
|
||||||
IPLDIndexer as BaseIndexer,
|
IPLDIndexer as BaseIndexer,
|
||||||
UNKNOWN_EVENT_NAME,
|
UNKNOWN_EVENT_NAME,
|
||||||
@ -27,8 +27,8 @@ import {
|
|||||||
IPLDIndexerInterface,
|
IPLDIndexerInterface,
|
||||||
IpldStatus as IpldStatusInterface,
|
IpldStatus as IpldStatusInterface,
|
||||||
ValueResult
|
ValueResult
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
import { GraphWatcher } from '@vulcanize/graph-node';
|
import { GraphWatcher } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
import { Contract } from './entity/Contract';
|
import { Contract } from './entity/Contract';
|
||||||
|
@ -24,8 +24,8 @@ import {
|
|||||||
DEFAULT_CONFIG_PATH,
|
DEFAULT_CONFIG_PATH,
|
||||||
initClients,
|
initClients,
|
||||||
startMetricsServer
|
startMetricsServer
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
|
@ -8,7 +8,7 @@ import debug from 'debug';
|
|||||||
import Decimal from 'decimal.js';
|
import Decimal from 'decimal.js';
|
||||||
import { GraphQLScalarType } from 'graphql';
|
import { GraphQLScalarType } from 'graphql';
|
||||||
|
|
||||||
import { BlockHeight, OrderDirection, StateKind, gqlTotalQueryCount, gqlQueryCount, jsonBigIntStringReplacer } from '@vulcanize/util';
|
import { BlockHeight, OrderDirection, StateKind, gqlTotalQueryCount, gqlQueryCount, jsonBigIntStringReplacer } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { EventWatcher } from './events';
|
import { EventWatcher } from './events';
|
||||||
|
@ -14,8 +14,8 @@ import debug from 'debug';
|
|||||||
import 'graphql-import-node';
|
import 'graphql-import-node';
|
||||||
import { createServer } from 'http';
|
import { createServer } from 'http';
|
||||||
|
|
||||||
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients, startGQLMetricsServer } from '@vulcanize/util';
|
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients, startGQLMetricsServer } from '@cerc-io/util';
|
||||||
import { GraphWatcher, Database as GraphDatabase } from '@vulcanize/graph-node';
|
import { GraphWatcher, Database as GraphDatabase } from '@cerc-io/graph-node';
|
||||||
|
|
||||||
import { createResolvers } from './resolvers';
|
import { createResolvers } from './resolvers';
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/erc20-watcher",
|
"name": "@cerc-io/erc20-watcher",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "ERC20 Watcher",
|
"description": "ERC20 Watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -32,22 +32,22 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"@types/lodash": "^4.14.168",
|
"@types/lodash": "^4.14.168",
|
||||||
"@vulcanize/cache": "^0.1.0",
|
"@cerc-io/cache": "^0.1.0",
|
||||||
"@vulcanize/ipld-eth-client": "^0.1.0",
|
"@cerc-io/ipld-eth-client": "^0.1.0",
|
||||||
"@vulcanize/solidity-mapper": "^0.1.0",
|
"@cerc-io/solidity-mapper": "^0.1.0",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
"apollo-server-express": "^2.25.0",
|
"apollo-server-express": "^2.25.0",
|
||||||
"apollo-type-bigint": "^0.1.3",
|
"apollo-type-bigint": "^0.1.3",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getConfig, resetJobs } from '@vulcanize/util';
|
import { getConfig, resetJobs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset-job-queue');
|
const log = debug('vulcanize:reset-job-queue');
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import debug from 'debug';
|
|||||||
import { MoreThan } from 'typeorm';
|
import { MoreThan } from 'typeorm';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { getConfig, initClients, JobQueue, resetJobs } from '@vulcanize/util';
|
import { getConfig, initClients, JobQueue, resetJobs } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../../database';
|
import { Database } from '../../database';
|
||||||
import { Indexer } from '../../indexer';
|
import { Indexer } from '../../indexer';
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { getResetYargs } from '@vulcanize/util';
|
import { getResetYargs } from '@cerc-io/util';
|
||||||
|
|
||||||
const log = debug('vulcanize:reset');
|
const log = debug('vulcanize:reset');
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import yargs from 'yargs';
|
import yargs from 'yargs';
|
||||||
import 'reflect-metadata';
|
import 'reflect-metadata';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { gql } from '@apollo/client/core';
|
import { gql } from '@apollo/client/core';
|
||||||
import { GraphQLClient, GraphQLConfig } from '@vulcanize/ipld-eth-client';
|
import { GraphQLClient, GraphQLConfig } from '@cerc-io/ipld-eth-client';
|
||||||
|
|
||||||
import { queryName, queryDecimals, queryTotalSupply, querySymbol } from './queries';
|
import { queryName, queryDecimals, queryTotalSupply, querySymbol } from './queries';
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import { Connection, ConnectionOptions, DeepPartial, FindConditions, FindManyOptions, QueryRunner } from 'typeorm';
|
import { Connection, ConnectionOptions, DeepPartial, FindConditions, FindManyOptions, QueryRunner } from 'typeorm';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { Database as BaseDatabase, QueryOptions, Where } from '@vulcanize/util';
|
import { Database as BaseDatabase, QueryOptions, Where } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Allowance } from './entity/Allowance';
|
import { Allowance } from './entity/Allowance';
|
||||||
import { Balance } from './entity/Balance';
|
import { Balance } from './entity/Balance';
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockHash', 'blockNumber', 'token', 'owner', 'spender'], { unique: true })
|
@Index(['blockHash', 'blockNumber', 'token', 'owner', 'spender'], { unique: true })
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, Index } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, Index } from 'typeorm';
|
||||||
import { bigintTransformer } from '@vulcanize/util';
|
import { bigintTransformer } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockHash', 'blockNumber', 'token', 'owner'], { unique: true })
|
@Index(['blockHash', 'blockNumber', 'token', 'owner'], { unique: true })
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, Index, CreateDateColumn } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, Index, CreateDateColumn } from 'typeorm';
|
||||||
|
|
||||||
import { BlockProgressInterface } from '@vulcanize/util';
|
import { BlockProgressInterface } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
@Index(['blockHash'], { unique: true })
|
@Index(['blockHash'], { unique: true })
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
||||||
|
|
||||||
import { SyncStatusInterface } from '@vulcanize/util';
|
import { SyncStatusInterface } from '@cerc-io/util';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class SyncStatus implements SyncStatusInterface {
|
export class SyncStatus implements SyncStatusInterface {
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import {
|
import {
|
||||||
JobQueue,
|
JobQueue,
|
||||||
EventWatcher as BaseEventWatcher,
|
EventWatcher as BaseEventWatcher,
|
||||||
@ -14,7 +14,7 @@ import {
|
|||||||
QUEUE_EVENT_PROCESSING,
|
QUEUE_EVENT_PROCESSING,
|
||||||
UNKNOWN_EVENT_NAME,
|
UNKNOWN_EVENT_NAME,
|
||||||
UpstreamConfig
|
UpstreamConfig
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -9,7 +9,7 @@ import { hideBin } from 'yargs/helpers';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { PubSub } from 'apollo-server-express';
|
import { PubSub } from 'apollo-server-express';
|
||||||
|
|
||||||
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@vulcanize/util';
|
import { Config, getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, initClients } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
|
@ -10,9 +10,9 @@ import JSONbig from 'json-bigint';
|
|||||||
import { ethers } from 'ethers';
|
import { ethers } from 'ethers';
|
||||||
import { BaseProvider } from '@ethersproject/providers';
|
import { BaseProvider } from '@ethersproject/providers';
|
||||||
|
|
||||||
import { EthClient } from '@vulcanize/ipld-eth-client';
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
||||||
import { MappingKey, StorageLayout } from '@vulcanize/solidity-mapper';
|
import { MappingKey, StorageLayout } from '@cerc-io/solidity-mapper';
|
||||||
import { IndexerInterface, Indexer as BaseIndexer, ValueResult, UNKNOWN_EVENT_NAME, JobQueue, Where, QueryOptions, ServerConfig } from '@vulcanize/util';
|
import { IndexerInterface, Indexer as BaseIndexer, ValueResult, UNKNOWN_EVENT_NAME, JobQueue, Where, QueryOptions, ServerConfig } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
import { Event } from './entity/Event';
|
import { Event } from './entity/Event';
|
||||||
|
@ -19,7 +19,7 @@ import {
|
|||||||
DEFAULT_CONFIG_PATH,
|
DEFAULT_CONFIG_PATH,
|
||||||
initClients,
|
initClients,
|
||||||
startMetricsServer
|
startMetricsServer
|
||||||
} from '@vulcanize/util';
|
} from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { Database } from './database';
|
import { Database } from './database';
|
||||||
|
@ -6,7 +6,7 @@ import assert from 'assert';
|
|||||||
import BigInt from 'apollo-type-bigint';
|
import BigInt from 'apollo-type-bigint';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
|
|
||||||
import { ValueResult } from '@vulcanize/util';
|
import { ValueResult } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Indexer } from './indexer';
|
import { Indexer } from './indexer';
|
||||||
import { EventWatcher } from './events';
|
import { EventWatcher } from './events';
|
||||||
|
@ -12,7 +12,7 @@ import debug from 'debug';
|
|||||||
import 'graphql-import-node';
|
import 'graphql-import-node';
|
||||||
import { createServer } from 'http';
|
import { createServer } from 'http';
|
||||||
|
|
||||||
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients } from '@vulcanize/util';
|
import { DEFAULT_CONFIG_PATH, getConfig, Config, JobQueue, KIND_ACTIVE, initClients } from '@cerc-io/util';
|
||||||
|
|
||||||
import typeDefs from './schema';
|
import typeDefs from './schema';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "@vulcanize/erc721-watcher",
|
"name": "@cerc-io/erc721-watcher",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "erc721-watcher",
|
"description": "erc721-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
@ -29,21 +29,21 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vulcanize/watcher-ts.git"
|
"url": "git+https://github.com/cerc-io/watcher-ts.git"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vulcanize/watcher-ts/issues"
|
"url": "https://github.com/cerc-io/watcher-ts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vulcanize/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"@ipld/dag-cbor": "^6.0.12",
|
"@ipld/dag-cbor": "^6.0.12",
|
||||||
"@vulcanize/ipld-eth-client": "^0.1.0",
|
"@cerc-io/ipld-eth-client": "^0.1.0",
|
||||||
"@vulcanize/solidity-mapper": "^0.1.0",
|
"@cerc-io/solidity-mapper": "^0.1.0",
|
||||||
"@vulcanize/util": "^0.1.0",
|
"@cerc-io/util": "^0.1.0",
|
||||||
"apollo-server-express": "^2.25.0",
|
"apollo-server-express": "^2.25.0",
|
||||||
"apollo-type-bigint": "^0.1.3",
|
"apollo-type-bigint": "^0.1.3",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
|
@ -7,7 +7,7 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -9,7 +9,7 @@ import debug from 'debug';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, StateKind } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, StateKind } from '@cerc-io/util';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -11,7 +11,7 @@ import { PubSub } from 'apollo-server-express';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@vulcanize/util';
|
import { getConfig, fillBlocks, JobQueue, DEFAULT_CONFIG_PATH, Config, initClients, StateKind } from '@cerc-io/util';
|
||||||
import * as codec from '@ipld/dag-cbor';
|
import * as codec from '@ipld/dag-cbor';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
|
@ -7,7 +7,7 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue, indexBlock } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
@ -8,7 +8,7 @@ import 'reflect-metadata';
|
|||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import util from 'util';
|
import util from 'util';
|
||||||
|
|
||||||
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@vulcanize/util';
|
import { Config, DEFAULT_CONFIG_PATH, getConfig, initClients, JobQueue } from '@cerc-io/util';
|
||||||
|
|
||||||
import { Database } from '../database';
|
import { Database } from '../database';
|
||||||
import { Indexer } from '../indexer';
|
import { Indexer } from '../indexer';
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user