Compare commits
24 Commits
main
...
iv-modify-
Author | SHA1 | Date | |
---|---|---|---|
|
ca62ed4a69 | ||
|
4a2665cad5 | ||
|
4b700c76d1 | ||
|
37477f4820 | ||
|
95cfbe4351 | ||
|
4ae58dbd71 | ||
|
039f696574 | ||
|
0bde228b8d | ||
|
31bba912ec | ||
|
97b120a8e2 | ||
|
bb64e99d51 | ||
|
eada17f594 | ||
|
b2a4b8b0fd | ||
|
dc9eba3d6a | ||
|
02f5ec9c97 | ||
|
8e4d8fa382 | ||
|
30d4b311e1 | ||
|
27498c4d76 | ||
|
86454e4629 | ||
|
973a9a4006 | ||
|
076c0da300 | ||
|
9b10dc8980 | ||
|
e48e677d02 | ||
|
cb27e53853 |
12
README.md
12
README.md
@ -1,13 +1 @@
|
|||||||
# sushiswap-watcher-ts
|
# sushiswap-watcher-ts
|
||||||
|
|
||||||
Watchers for the [sushiswap-subgraphs](https://github.com/cerc-io/sushiswap-subgraphs/tree/watcher-ts) on Filecoin
|
|
||||||
|
|
||||||
[Stacks](stacks/README.md) for the sushiswap-watchers
|
|
||||||
|
|
||||||
## Setup
|
|
||||||
|
|
||||||
* Run the following command to install required packages:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
yarn && yarn build
|
|
||||||
```
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
"packages/*"
|
"packages/*"
|
||||||
],
|
],
|
||||||
"useWorkspaces": true,
|
"useWorkspaces": true,
|
||||||
"version": "0.1.5",
|
"version": "0.1.4",
|
||||||
"npmClient": "yarn"
|
"npmClient": "yarn"
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* Follow root [README.md setup](../../README.md#setup)
|
* Run the following command to install required packages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn
|
||||||
|
```
|
||||||
|
|
||||||
* Create a postgres12 database for the watcher:
|
* Create a postgres12 database for the watcher:
|
||||||
|
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Contracts to watch (required).
|
|
||||||
# Can pass empty array ([]) when using subgraphPath.
|
|
||||||
contracts: []
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/cerc-io/sushiswap-watcher-ts/packages/blocks-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: none
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3008
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
|
|
||||||
# Config for subgraph
|
|
||||||
subgraph:
|
|
||||||
# Path to subgraph repo directory containing package.json
|
|
||||||
directory: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/blocks
|
|
||||||
|
|
||||||
# Package manager that is used in subgraph repo for dependencies
|
|
||||||
packageManager: pnpm
|
|
||||||
|
|
||||||
# Path to subgraph manifest/config file
|
|
||||||
configFile: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/blocks/subgraph.yaml
|
|
@ -10,7 +10,8 @@
|
|||||||
checkpointInterval = 2000
|
checkpointInterval = 2000
|
||||||
|
|
||||||
# Enable state creation
|
# Enable state creation
|
||||||
enableState = false
|
# CAUTION: Disable only if state creation is not desired or can be filled subsequently
|
||||||
|
enableState = true
|
||||||
|
|
||||||
subgraphPath = "./subgraph-build"
|
subgraphPath = "./subgraph-build"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/blocks-watcher",
|
"name": "@cerc-io/blocks-watcher",
|
||||||
"version": "0.1.5",
|
"version": "0.1.0",
|
||||||
"description": "blocks-watcher",
|
"description": "blocks-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -39,11 +39,11 @@
|
|||||||
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@cerc-io/cli": "^0.2.100",
|
"@cerc-io/cli": "^0.2.98",
|
||||||
"@cerc-io/graph-node": "^0.2.100",
|
"@cerc-io/ipld-eth-client": "^0.2.98",
|
||||||
"@cerc-io/ipld-eth-client": "^0.2.100",
|
"@cerc-io/solidity-mapper": "^0.2.98",
|
||||||
"@cerc-io/solidity-mapper": "^0.2.100",
|
"@cerc-io/util": "^0.2.98",
|
||||||
"@cerc-io/util": "^0.2.100",
|
"@cerc-io/graph-node": "^0.2.98",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"decimal.js": "^10.3.1",
|
"decimal.js": "^10.3.1",
|
||||||
|
@ -651,18 +651,7 @@ export class Indexer implements IndexerInterface {
|
|||||||
assert(blockHash);
|
assert(blockHash);
|
||||||
assert(blockNumber);
|
assert(blockNumber);
|
||||||
|
|
||||||
let dbEvents: DeepPartial<Event>[] = [];
|
const { events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(blockHash, blockNumber, this.eventSignaturesMap, this.parseEventNameAndArgs.bind(this));
|
||||||
let transactions: EthFullTransaction[] = [];
|
|
||||||
|
|
||||||
// Fetch events and txs only if subgraph config has any event handlers
|
|
||||||
if (this._graphWatcher.eventHandlerExists) {
|
|
||||||
({ events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(
|
|
||||||
blockHash,
|
|
||||||
blockNumber,
|
|
||||||
this.eventSignaturesMap,
|
|
||||||
this.parseEventNameAndArgs.bind(this)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
const dbTx = await this._db.createTransactionRunner();
|
const dbTx = await this._db.createTransactionRunner();
|
||||||
try {
|
try {
|
||||||
|
@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* Follow root [README.md setup](../../README.md#setup)
|
* Run the following command to install required packages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn
|
||||||
|
```
|
||||||
|
|
||||||
* Create a postgres12 database for the watcher:
|
* Create a postgres12 database for the watcher:
|
||||||
|
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Contracts to watch (required).
|
|
||||||
# Can pass empty array ([]) when using subgraphPath.
|
|
||||||
contracts: []
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/cerc-io/sushiswap-watcher-ts/packages/route-processor-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: none
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3008
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
|
|
||||||
# Config for subgraph
|
|
||||||
subgraph:
|
|
||||||
# Path to subgraph repo directory containing package.json
|
|
||||||
directory: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/route-processor
|
|
||||||
|
|
||||||
# Package manager that is used in subgraph repo for dependencies
|
|
||||||
packageManager: pnpm
|
|
||||||
|
|
||||||
# Path to subgraph manifest/config file
|
|
||||||
configFile: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/route-processor/subgraph.yaml
|
|
@ -10,7 +10,8 @@
|
|||||||
checkpointInterval = 2000
|
checkpointInterval = 2000
|
||||||
|
|
||||||
# Enable state creation
|
# Enable state creation
|
||||||
enableState = false
|
# CAUTION: Disable only if state creation is not desired or can be filled subsequently
|
||||||
|
enableState = true
|
||||||
|
|
||||||
subgraphPath = "./subgraph-build"
|
subgraphPath = "./subgraph-build"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/route-processor-watcher",
|
"name": "@cerc-io/route-processor-watcher",
|
||||||
"version": "0.1.5",
|
"version": "0.1.0",
|
||||||
"description": "route-processor-watcher",
|
"description": "route-processor-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -39,11 +39,11 @@
|
|||||||
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@cerc-io/cli": "0.2.100",
|
"@cerc-io/cli": "^0.2.98",
|
||||||
"@cerc-io/graph-node": "0.2.100",
|
"@cerc-io/ipld-eth-client": "^0.2.98",
|
||||||
"@cerc-io/ipld-eth-client": "0.2.100",
|
"@cerc-io/solidity-mapper": "^0.2.98",
|
||||||
"@cerc-io/solidity-mapper": "0.2.100",
|
"@cerc-io/util": "^0.2.98",
|
||||||
"@cerc-io/util": "0.2.100",
|
"@cerc-io/graph-node": "^0.2.98",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"decimal.js": "^10.3.1",
|
"decimal.js": "^10.3.1",
|
||||||
|
@ -657,18 +657,7 @@ export class Indexer implements IndexerInterface {
|
|||||||
assert(blockHash);
|
assert(blockHash);
|
||||||
assert(blockNumber);
|
assert(blockNumber);
|
||||||
|
|
||||||
let dbEvents: DeepPartial<Event>[] = [];
|
const { events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(blockHash, blockNumber, this.eventSignaturesMap, this.parseEventNameAndArgs.bind(this));
|
||||||
let transactions: EthFullTransaction[] = [];
|
|
||||||
|
|
||||||
// Fetch events and txs only if subgraph config has any event handlers
|
|
||||||
if (this._graphWatcher.eventHandlerExists) {
|
|
||||||
({ events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(
|
|
||||||
blockHash,
|
|
||||||
blockNumber,
|
|
||||||
this.eventSignaturesMap,
|
|
||||||
this.parseEventNameAndArgs.bind(this)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
const dbTx = await this._db.createTransactionRunner();
|
const dbTx = await this._db.createTransactionRunner();
|
||||||
try {
|
try {
|
||||||
|
@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* Follow root [README.md setup](../../README.md#setup)
|
* Run the following command to install required packages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn
|
||||||
|
```
|
||||||
|
|
||||||
* Create a postgres12 database for the watcher:
|
* Create a postgres12 database for the watcher:
|
||||||
|
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Contracts to watch (required).
|
|
||||||
# Can pass empty array ([]) when using subgraphPath.
|
|
||||||
contracts: []
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/cerc-io/sushiswap-watcher-ts/packages/sushiswap-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: none
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3008
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
|
|
||||||
# Config for subgraph
|
|
||||||
subgraph:
|
|
||||||
# Path to subgraph repo directory containing package.json
|
|
||||||
directory: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/sushiswap
|
|
||||||
|
|
||||||
# Package manager that is used in subgraph repo for dependencies
|
|
||||||
packageManager: pnpm
|
|
||||||
|
|
||||||
# Path to subgraph manifest/config file
|
|
||||||
configFile: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/sushiswap/subgraph.yaml
|
|
@ -10,7 +10,8 @@
|
|||||||
checkpointInterval = 2000
|
checkpointInterval = 2000
|
||||||
|
|
||||||
# Enable state creation
|
# Enable state creation
|
||||||
enableState = false
|
# CAUTION: Disable only if state creation is not desired or can be filled subsequently
|
||||||
|
enableState = true
|
||||||
|
|
||||||
subgraphPath = "./subgraph-build"
|
subgraphPath = "./subgraph-build"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/sushiswap-watcher",
|
"name": "@cerc-io/sushiswap-watcher",
|
||||||
"version": "0.1.5",
|
"version": "0.1.0",
|
||||||
"description": "sushiswap-watcher",
|
"description": "sushiswap-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -39,11 +39,11 @@
|
|||||||
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@cerc-io/cli": "0.2.100",
|
"@cerc-io/cli": "^0.2.98",
|
||||||
"@cerc-io/graph-node": "0.2.100",
|
"@cerc-io/ipld-eth-client": "^0.2.98",
|
||||||
"@cerc-io/ipld-eth-client": "0.2.100",
|
"@cerc-io/solidity-mapper": "^0.2.98",
|
||||||
"@cerc-io/solidity-mapper": "0.2.100",
|
"@cerc-io/util": "^0.2.98",
|
||||||
"@cerc-io/util": "0.2.100",
|
"@cerc-io/graph-node": "^0.2.98",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"decimal.js": "^10.3.1",
|
"decimal.js": "^10.3.1",
|
||||||
|
@ -1165,18 +1165,7 @@ export class Indexer implements IndexerInterface {
|
|||||||
assert(blockHash);
|
assert(blockHash);
|
||||||
assert(blockNumber);
|
assert(blockNumber);
|
||||||
|
|
||||||
let dbEvents: DeepPartial<Event>[] = [];
|
const { events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(blockHash, blockNumber, this.eventSignaturesMap, this.parseEventNameAndArgs.bind(this));
|
||||||
let transactions: EthFullTransaction[] = [];
|
|
||||||
|
|
||||||
// Fetch events and txs only if subgraph config has any event handlers
|
|
||||||
if (this._graphWatcher.eventHandlerExists) {
|
|
||||||
({ events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(
|
|
||||||
blockHash,
|
|
||||||
blockNumber,
|
|
||||||
this.eventSignaturesMap,
|
|
||||||
this.parseEventNameAndArgs.bind(this)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
const dbTx = await this._db.createTransactionRunner();
|
const dbTx = await this._db.createTransactionRunner();
|
||||||
try {
|
try {
|
||||||
|
Binary file not shown.
@ -19,17 +19,17 @@ dataSources:
|
|||||||
entities: []
|
entities: []
|
||||||
abis:
|
abis:
|
||||||
- name: Factory
|
- name: Factory
|
||||||
file: Factory/abi/Uniswap/UniswapV2Factory.json
|
file: Factory/node_modules/abi/Uniswap/UniswapV2Factory.json
|
||||||
- name: Pair
|
- name: Pair
|
||||||
file: Factory/abi/Uniswap/UniswapV2Pair.json
|
file: Factory/node_modules/abi/Uniswap/UniswapV2Pair.json
|
||||||
- name: SushiToken
|
- name: SushiToken
|
||||||
file: Factory/abi/SUSHI/SushiToken.json
|
file: Factory/node_modules/abi/SUSHI/SushiToken.json
|
||||||
- name: ERC20
|
- name: ERC20
|
||||||
file: Factory/abi/ERC20/ERC20.json
|
file: Factory/node_modules/abi/ERC20/ERC20.json
|
||||||
- name: SymbolBytes32
|
- name: SymbolBytes32
|
||||||
file: Factory/abi/ERC20/SymbolBytes32.json
|
file: Factory/node_modules/abi/ERC20/SymbolBytes32.json
|
||||||
- name: NameBytes32
|
- name: NameBytes32
|
||||||
file: Factory/abi/ERC20/NameBytes32.json
|
file: Factory/node_modules/abi/ERC20/NameBytes32.json
|
||||||
eventHandlers:
|
eventHandlers:
|
||||||
- event: PairCreated(indexed address,indexed address,address,uint256)
|
- event: PairCreated(indexed address,indexed address,address,uint256)
|
||||||
handler: onPairCreated
|
handler: onPairCreated
|
||||||
@ -47,15 +47,15 @@ templates:
|
|||||||
entities: []
|
entities: []
|
||||||
abis:
|
abis:
|
||||||
- name: Factory
|
- name: Factory
|
||||||
file: Pair/abi/Uniswap/UniswapV2Factory.json
|
file: Pair/node_modules/abi/Uniswap/UniswapV2Factory.json
|
||||||
- name: Pair
|
- name: Pair
|
||||||
file: Pair/abi/Uniswap/UniswapV2Pair.json
|
file: Pair/node_modules/abi/Uniswap/UniswapV2Pair.json
|
||||||
- name: ERC20
|
- name: ERC20
|
||||||
file: Pair/abi/ERC20/ERC20.json
|
file: Pair/node_modules/abi/ERC20/ERC20.json
|
||||||
- name: SymbolBytes32
|
- name: SymbolBytes32
|
||||||
file: Pair/abi/ERC20/SymbolBytes32.json
|
file: Pair/node_modules/abi/ERC20/SymbolBytes32.json
|
||||||
- name: NameBytes32
|
- name: NameBytes32
|
||||||
file: Pair/abi/ERC20/NameBytes32.json
|
file: Pair/node_modules/abi/ERC20/NameBytes32.json
|
||||||
eventHandlers:
|
eventHandlers:
|
||||||
- event: Sync(uint112,uint112)
|
- event: Sync(uint112,uint112)
|
||||||
handler: onSync
|
handler: onSync
|
||||||
|
Binary file not shown.
@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* Follow root [README.md setup](../../README.md#setup)
|
* Run the following command to install required packages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn
|
||||||
|
```
|
||||||
|
|
||||||
* Create a postgres12 database for the watcher:
|
* Create a postgres12 database for the watcher:
|
||||||
|
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Contracts to watch (required).
|
|
||||||
# Can pass empty array ([]) when using subgraphPath.
|
|
||||||
contracts: []
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/cerc-io/sushiswap-watcher-ts/packages/v2-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: none
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3008
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
|
|
||||||
# Config for subgraph
|
|
||||||
subgraph:
|
|
||||||
# Path to subgraph repo directory containing package.json
|
|
||||||
directory: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/v2
|
|
||||||
|
|
||||||
# Package manager that is used in subgraph repo for dependencies
|
|
||||||
packageManager: pnpm
|
|
||||||
|
|
||||||
# Path to subgraph manifest/config file
|
|
||||||
configFile: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/v2/subgraph.yaml
|
|
@ -10,7 +10,8 @@
|
|||||||
checkpointInterval = 2000
|
checkpointInterval = 2000
|
||||||
|
|
||||||
# Enable state creation
|
# Enable state creation
|
||||||
enableState = false
|
# CAUTION: Disable only if state creation is not desired or can be filled subsequently
|
||||||
|
enableState = true
|
||||||
|
|
||||||
subgraphPath = "./subgraph-build"
|
subgraphPath = "./subgraph-build"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/v2-watcher",
|
"name": "@cerc-io/v2-watcher",
|
||||||
"version": "0.1.5",
|
"version": "0.1.0",
|
||||||
"description": "v2-watcher",
|
"description": "v2-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -39,11 +39,11 @@
|
|||||||
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@cerc-io/cli": "0.2.100",
|
"@cerc-io/cli": "^0.2.98",
|
||||||
"@cerc-io/graph-node": "0.2.100",
|
"@cerc-io/ipld-eth-client": "^0.2.98",
|
||||||
"@cerc-io/ipld-eth-client": "0.2.100",
|
"@cerc-io/solidity-mapper": "^0.2.98",
|
||||||
"@cerc-io/solidity-mapper": "0.2.100",
|
"@cerc-io/util": "^0.2.98",
|
||||||
"@cerc-io/util": "0.2.100",
|
"@cerc-io/graph-node": "^0.2.98",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"decimal.js": "^10.3.1",
|
"decimal.js": "^10.3.1",
|
||||||
|
@ -1040,18 +1040,7 @@ export class Indexer implements IndexerInterface {
|
|||||||
assert(blockHash);
|
assert(blockHash);
|
||||||
assert(blockNumber);
|
assert(blockNumber);
|
||||||
|
|
||||||
let dbEvents: DeepPartial<Event>[] = [];
|
const { events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(blockHash, blockNumber, this.eventSignaturesMap, this.parseEventNameAndArgs.bind(this));
|
||||||
let transactions: EthFullTransaction[] = [];
|
|
||||||
|
|
||||||
// Fetch events and txs only if subgraph config has any event handlers
|
|
||||||
if (this._graphWatcher.eventHandlerExists) {
|
|
||||||
({ events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(
|
|
||||||
blockHash,
|
|
||||||
blockNumber,
|
|
||||||
this.eventSignaturesMap,
|
|
||||||
this.parseEventNameAndArgs.bind(this)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
const dbTx = await this._db.createTransactionRunner();
|
const dbTx = await this._db.createTransactionRunner();
|
||||||
try {
|
try {
|
||||||
|
@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* Follow root [README.md setup](../../README.md#setup)
|
* Run the following command to install required packages:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn
|
||||||
|
```
|
||||||
|
|
||||||
* Create a postgres12 database for the watcher:
|
* Create a postgres12 database for the watcher:
|
||||||
|
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
# Contracts to watch (required).
|
|
||||||
# Can pass empty array ([]) when using subgraphPath.
|
|
||||||
contracts: []
|
|
||||||
|
|
||||||
# Output folder path (logs output using `stdout` if not provided).
|
|
||||||
outputFolder: /home/user/cerc-io/sushiswap-watcher-ts/packages/v3-watcher
|
|
||||||
|
|
||||||
# Code generation mode [eth_call | storage | all | none] (default: none).
|
|
||||||
mode: none
|
|
||||||
|
|
||||||
# Kind of watcher [lazy | active] (default: active).
|
|
||||||
kind: active
|
|
||||||
|
|
||||||
# Watcher server port (default: 3008).
|
|
||||||
port: 3008
|
|
||||||
|
|
||||||
# Flatten the input contract file(s) [true | false] (default: true).
|
|
||||||
flatten: true
|
|
||||||
|
|
||||||
# Config for subgraph
|
|
||||||
subgraph:
|
|
||||||
# Path to subgraph repo directory containing package.json
|
|
||||||
directory: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/v3
|
|
||||||
|
|
||||||
# Package manager that is used in subgraph repo for dependencies
|
|
||||||
packageManager: pnpm
|
|
||||||
|
|
||||||
# Path to subgraph manifest/config file
|
|
||||||
configFile: /home/user/cerc-io/sushiswap-subgraphs/subgraphs/v3/subgraph.yaml
|
|
@ -10,7 +10,8 @@
|
|||||||
checkpointInterval = 2000
|
checkpointInterval = 2000
|
||||||
|
|
||||||
# Enable state creation
|
# Enable state creation
|
||||||
enableState = false
|
# CAUTION: Disable only if state creation is not desired or can be filled subsequently
|
||||||
|
enableState = true
|
||||||
|
|
||||||
subgraphPath = "./subgraph-build"
|
subgraphPath = "./subgraph-build"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cerc-io/v3-watcher",
|
"name": "@cerc-io/v3-watcher",
|
||||||
"version": "0.1.5",
|
"version": "0.1.0",
|
||||||
"description": "v3-watcher",
|
"description": "v3-watcher",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -39,11 +39,11 @@
|
|||||||
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "^3.3.19",
|
"@apollo/client": "^3.3.19",
|
||||||
"@cerc-io/cli": "0.2.100",
|
"@cerc-io/cli": "^0.2.98",
|
||||||
"@cerc-io/graph-node": "0.2.100",
|
"@cerc-io/ipld-eth-client": "^0.2.98",
|
||||||
"@cerc-io/ipld-eth-client": "0.2.100",
|
"@cerc-io/solidity-mapper": "^0.2.98",
|
||||||
"@cerc-io/solidity-mapper": "0.2.100",
|
"@cerc-io/util": "^0.2.98",
|
||||||
"@cerc-io/util": "0.2.100",
|
"@cerc-io/graph-node": "^0.2.98",
|
||||||
"@ethersproject/providers": "^5.4.4",
|
"@ethersproject/providers": "^5.4.4",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
"decimal.js": "^10.3.1",
|
"decimal.js": "^10.3.1",
|
||||||
|
@ -1424,18 +1424,7 @@ export class Indexer implements IndexerInterface {
|
|||||||
assert(blockHash);
|
assert(blockHash);
|
||||||
assert(blockNumber);
|
assert(blockNumber);
|
||||||
|
|
||||||
let dbEvents: DeepPartial<Event>[] = [];
|
const { events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(blockHash, blockNumber, this.eventSignaturesMap, this.parseEventNameAndArgs.bind(this));
|
||||||
let transactions: EthFullTransaction[] = [];
|
|
||||||
|
|
||||||
// Fetch events only if subgraph config has any event handlers
|
|
||||||
if (this._graphWatcher.eventHandlerExists) {
|
|
||||||
({ events: dbEvents, transactions } = await this._baseIndexer.fetchEvents(
|
|
||||||
blockHash,
|
|
||||||
blockNumber,
|
|
||||||
this.eventSignaturesMap,
|
|
||||||
this.parseEventNameAndArgs.bind(this)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
const dbTx = await this._db.createTransactionRunner();
|
const dbTx = await this._db.createTransactionRunner();
|
||||||
try {
|
try {
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
# sushiswap-watcher-stack
|
|
||||||
|
|
||||||
Stacks to run watchers for sushiswap-subgraphs
|
|
||||||
|
|
||||||
- [sushiswap-watcher](stack-orchestrator/stacks/sushiswap)
|
|
||||||
- [blocks-watcher](stack-orchestrator/stacks/sushiswap-blocks)
|
|
||||||
- [route-processor-watcher](stack-orchestrator/stacks/sushiswap-route-processor)
|
|
||||||
- [v2-watcher](stack-orchestrator/stacks/sushiswap-v2)
|
|
||||||
- [v3-watcher](stack-orchestrator/stacks/sushiswap-v3)
|
|
@ -1,8 +1,8 @@
|
|||||||
version: "1.0"
|
version: "1.0"
|
||||||
name: sushiswap-route-processor
|
name: sushiswap-v2
|
||||||
description: "SushiSwap route processor watcher stack"
|
description: "SushiSwap v2 watcher stack"
|
||||||
repos:
|
repos:
|
||||||
containers:
|
containers:
|
||||||
- cerc/watcher-sushiswap
|
- cerc/watcher-sushiswap
|
||||||
pods:
|
pods:
|
||||||
- watcher-sushiswap-route-processor
|
- watcher-sushiswap-v2
|
||||||
|
102
yarn.lock
102
yarn.lock
@ -194,10 +194,10 @@
|
|||||||
binaryen "101.0.0-nightly.20210723"
|
binaryen "101.0.0-nightly.20210723"
|
||||||
long "^4.0.0"
|
long "^4.0.0"
|
||||||
|
|
||||||
"@cerc-io/cache@^0.2.100":
|
"@cerc-io/cache@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcache/-/0.2.100/cache-0.2.100.tgz#59b5d575f51ab23dfcf8165dde73ce4f075ae4cf"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcache/-/0.2.98/cache-0.2.98.tgz#acbd54b0e3b0379652020f3dac832ed04cf392dc"
|
||||||
integrity sha512-hPS40QcF9YGazFrzieFgA+r71ONsEV746qrVrVIMavekE/ocAXY6ZwDLy1fG0Nkib8MbA45kBavHgdvsUkVVMw==
|
integrity sha512-scrDlufZIs0DDehEUL+eaab4Rz2r4G2fgvy2USeY3AnItreXMgUwTUAR7pXqh3FOCuj9crNfysH09Et+49/F/w==
|
||||||
dependencies:
|
dependencies:
|
||||||
canonical-json "^0.0.4"
|
canonical-json "^0.0.4"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
@ -205,19 +205,19 @@
|
|||||||
fs-extra "^10.0.0"
|
fs-extra "^10.0.0"
|
||||||
level "^7.0.0"
|
level "^7.0.0"
|
||||||
|
|
||||||
"@cerc-io/cli@0.2.100", "@cerc-io/cli@^0.2.100":
|
"@cerc-io/cli@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcli/-/0.2.100/cli-0.2.100.tgz#474ce337f187c0f21858a8d229bf4692e0d3c8ea"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcli/-/0.2.98/cli-0.2.98.tgz#b29046fe48260e3e465c240d0aa64da84ad2338d"
|
||||||
integrity sha512-katc0+o86CR2mtAe4lVx9Lf44q943wUbsoqKtbvbHFLypYuyMVkAOs6xgKEwhiHkryJlBLFRaxkpV7HSFbgc+g==
|
integrity sha512-d79Gm3YOLn+CEidPBHaQhm1zu873O75LnFyH7fbIOubC4cBDWQk+RdH5U+8jU4b54EPZeVRotSoo7rQ5V8HsDg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@apollo/client" "^3.7.1"
|
"@apollo/client" "^3.7.1"
|
||||||
"@cerc-io/cache" "^0.2.100"
|
"@cerc-io/cache" "^0.2.98"
|
||||||
"@cerc-io/ipld-eth-client" "^0.2.100"
|
"@cerc-io/ipld-eth-client" "^0.2.98"
|
||||||
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
||||||
"@cerc-io/nitro-node" "^0.1.15"
|
"@cerc-io/nitro-node" "^0.1.15"
|
||||||
"@cerc-io/peer" "^0.2.100"
|
"@cerc-io/peer" "^0.2.98"
|
||||||
"@cerc-io/rpc-eth-client" "^0.2.100"
|
"@cerc-io/rpc-eth-client" "^0.2.98"
|
||||||
"@cerc-io/util" "^0.2.100"
|
"@cerc-io/util" "^0.2.98"
|
||||||
"@ethersproject/providers" "^5.4.4"
|
"@ethersproject/providers" "^5.4.4"
|
||||||
"@graphql-tools/utils" "^9.1.1"
|
"@graphql-tools/utils" "^9.1.1"
|
||||||
"@ipld/dag-cbor" "^8.0.0"
|
"@ipld/dag-cbor" "^8.0.0"
|
||||||
@ -238,16 +238,16 @@
|
|||||||
typeorm "0.2.37"
|
typeorm "0.2.37"
|
||||||
yargs "^17.0.1"
|
yargs "^17.0.1"
|
||||||
|
|
||||||
"@cerc-io/graph-node@0.2.100", "@cerc-io/graph-node@^0.2.100":
|
"@cerc-io/graph-node@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fgraph-node/-/0.2.100/graph-node-0.2.100.tgz#00d00e1fdd766c5035f2f492cd84d6f956187de9"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fgraph-node/-/0.2.98/graph-node-0.2.98.tgz#06b7eb0feb1e1c4ae4e203b6007b8f0c0ac3c218"
|
||||||
integrity sha512-8YmEo2xn3/c7ccAHsc+L70j0L0Tqtu3eGJaQdAePgO5KunvcXdjvVlJ9o31HqnQkU/AUSwVfOYNhb0GvCDUugw==
|
integrity sha512-6PGVnPyRihW1f+yyU2TL61ALnsVN1f5MffmHxiJ+Co02F5t/RP7sfYjJPdT63S+W6mlwpnnmGyX0LuklOXpezQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@apollo/client" "^3.3.19"
|
"@apollo/client" "^3.3.19"
|
||||||
"@cerc-io/assemblyscript" "0.19.10-watcher-ts-0.1.2"
|
"@cerc-io/assemblyscript" "0.19.10-watcher-ts-0.1.2"
|
||||||
"@cerc-io/cache" "^0.2.100"
|
"@cerc-io/cache" "^0.2.98"
|
||||||
"@cerc-io/ipld-eth-client" "^0.2.100"
|
"@cerc-io/ipld-eth-client" "^0.2.98"
|
||||||
"@cerc-io/util" "^0.2.100"
|
"@cerc-io/util" "^0.2.98"
|
||||||
"@types/json-diff" "^0.5.2"
|
"@types/json-diff" "^0.5.2"
|
||||||
"@types/yargs" "^17.0.0"
|
"@types/yargs" "^17.0.0"
|
||||||
bn.js "^4.11.9"
|
bn.js "^4.11.9"
|
||||||
@ -264,14 +264,14 @@
|
|||||||
typeorm-naming-strategies "^2.0.0"
|
typeorm-naming-strategies "^2.0.0"
|
||||||
yargs "^17.0.1"
|
yargs "^17.0.1"
|
||||||
|
|
||||||
"@cerc-io/ipld-eth-client@0.2.100", "@cerc-io/ipld-eth-client@^0.2.100":
|
"@cerc-io/ipld-eth-client@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fipld-eth-client/-/0.2.100/ipld-eth-client-0.2.100.tgz#89a764100c42651db466881249f01168fb6ffd76"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fipld-eth-client/-/0.2.98/ipld-eth-client-0.2.98.tgz#c1a7128be1e81fb4d1ec9a9888b7e5e94ae710ac"
|
||||||
integrity sha512-COmHp2/VSvox4OQ43jD/Go1o6WiPtJL2dj6Pq3XBiK10ZiRa5AHzfcYRiUDMm43ocEibHkDerVQWi67qCGP+PA==
|
integrity sha512-qCnz7foqf+9+X/zEGAu5HGXlvzNwahcsKu6Rtreh8bxhR5VTuuF3KrEeFcQeL1Bhv5+w7KXs5I+ivEgo4ZvHSA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@apollo/client" "^3.7.1"
|
"@apollo/client" "^3.7.1"
|
||||||
"@cerc-io/cache" "^0.2.100"
|
"@cerc-io/cache" "^0.2.98"
|
||||||
"@cerc-io/util" "^0.2.100"
|
"@cerc-io/util" "^0.2.98"
|
||||||
cross-fetch "^3.1.4"
|
cross-fetch "^3.1.4"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
ethers "^5.4.4"
|
ethers "^5.4.4"
|
||||||
@ -394,10 +394,10 @@
|
|||||||
lodash "^4.17.21"
|
lodash "^4.17.21"
|
||||||
uint8arrays "^4.0.3"
|
uint8arrays "^4.0.3"
|
||||||
|
|
||||||
"@cerc-io/peer@^0.2.100":
|
"@cerc-io/peer@^0.2.65":
|
||||||
version "0.2.100"
|
version "0.2.97"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.100/peer-0.2.100.tgz#e5affefe078b8bdaf905c3a125265c8fb28a7ca1"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.97/peer-0.2.97.tgz#6b386a53220bb4b026337eb2ef4246b3eeb947f9"
|
||||||
integrity sha512-1xa9++Hb5kHlGPf/sQt5epLXkDzzOVcII4Jyw5txk1fKKbnMB7tXa2mn33XM9fi6fYjImR9Ki8V+Tow3GlCYIQ==
|
integrity sha512-ylJslts/q6uGVlHS27GiHKYVpTTTv/4vryexxqDPA45YJRk0vCleqRDPehRQr40kCgBQjG9W92Uwcwr7HcSQxQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
||||||
"@cerc-io/prometheus-metrics" "1.1.4"
|
"@cerc-io/prometheus-metrics" "1.1.4"
|
||||||
@ -424,10 +424,10 @@
|
|||||||
unique-names-generator "^4.7.1"
|
unique-names-generator "^4.7.1"
|
||||||
yargs "^17.0.1"
|
yargs "^17.0.1"
|
||||||
|
|
||||||
"@cerc-io/peer@^0.2.65":
|
"@cerc-io/peer@^0.2.98":
|
||||||
version "0.2.97"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.97/peer-0.2.97.tgz#6b386a53220bb4b026337eb2ef4246b3eeb947f9"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.98/peer-0.2.98.tgz#650c771be2a3767456f38c93cb86e6667f2867ec"
|
||||||
integrity sha512-ylJslts/q6uGVlHS27GiHKYVpTTTv/4vryexxqDPA45YJRk0vCleqRDPehRQr40kCgBQjG9W92Uwcwr7HcSQxQ==
|
integrity sha512-b8sCTzFxfTgrlscNutBzML0y4rzkZvzjCpHDEp3P4fMRHIK9SM5o8yYaPS9g1NwoedjbLKCnCDrmaIGpLEbmqA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
|
||||||
"@cerc-io/prometheus-metrics" "1.1.4"
|
"@cerc-io/prometheus-metrics" "1.1.4"
|
||||||
@ -466,23 +466,23 @@
|
|||||||
it-stream-types "^1.0.4"
|
it-stream-types "^1.0.4"
|
||||||
promjs "^0.4.2"
|
promjs "^0.4.2"
|
||||||
|
|
||||||
"@cerc-io/rpc-eth-client@^0.2.100":
|
"@cerc-io/rpc-eth-client@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Frpc-eth-client/-/0.2.100/rpc-eth-client-0.2.100.tgz#527bd2560c3440a2035c4a0508c2f4606e4a3a48"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Frpc-eth-client/-/0.2.98/rpc-eth-client-0.2.98.tgz#005546cf25a245e60fa00b0c972239748ac1c29e"
|
||||||
integrity sha512-KvnzsxeI9eWYiGHM+VjPL19n+oKeDGlO8ADhg4rwXuL3RuTcgkhm6J7z04NnkK+V0WmB9W/3AoYK3JFJPOosLQ==
|
integrity sha512-SjR621w5WxrhLsXyy17mTXo1UwvcPz9QPL4/mwQcwsvzDXoFff1bgxR7UGKInQG5QzGgwTJjAaozVqxQA1X3+g==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@cerc-io/cache" "^0.2.100"
|
"@cerc-io/cache" "^0.2.98"
|
||||||
"@cerc-io/ipld-eth-client" "^0.2.100"
|
"@cerc-io/ipld-eth-client" "^0.2.98"
|
||||||
"@cerc-io/util" "^0.2.100"
|
"@cerc-io/util" "^0.2.98"
|
||||||
chai "^4.3.4"
|
chai "^4.3.4"
|
||||||
ethers "^5.4.4"
|
ethers "^5.4.4"
|
||||||
left-pad "^1.3.0"
|
left-pad "^1.3.0"
|
||||||
mocha "^8.4.0"
|
mocha "^8.4.0"
|
||||||
|
|
||||||
"@cerc-io/solidity-mapper@0.2.100", "@cerc-io/solidity-mapper@^0.2.100":
|
"@cerc-io/solidity-mapper@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fsolidity-mapper/-/0.2.100/solidity-mapper-0.2.100.tgz#c32db3f6a93c78b16011dae951e506092cc3b03b"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fsolidity-mapper/-/0.2.98/solidity-mapper-0.2.98.tgz#6fc8dfcaf872e31964a6cca1ea9fbd7900119f8a"
|
||||||
integrity sha512-1SDvIBhTYsRBAwi3R9xi813r0hPBdehbkdmYpcvdQzzim8ZX9zeX7Izelt/8BTjQ5BcByS403zNFaY/TzT/N8g==
|
integrity sha512-RmGmcgN0fZEZU0r4q14qPm2hVHUK/OQVPIEgyLEbcStHXupYLaTn79li1WpURI7yeVuJ7mFVaauviWA2DeG7dw==
|
||||||
dependencies:
|
dependencies:
|
||||||
dotenv "^10.0.0"
|
dotenv "^10.0.0"
|
||||||
|
|
||||||
@ -491,15 +491,15 @@
|
|||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fts-channel/-/1.0.3-ts-nitro-0.1.1/ts-channel-1.0.3-ts-nitro-0.1.1.tgz#0768781313a167295c0bf21307f47e02dc17e936"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fts-channel/-/1.0.3-ts-nitro-0.1.1/ts-channel-1.0.3-ts-nitro-0.1.1.tgz#0768781313a167295c0bf21307f47e02dc17e936"
|
||||||
integrity sha512-2jFICUSyffuZ+8+qRhXuLSJq4GJ6Y02wxiXoubH0Kzv2lIKkJtWICY1ZQQhtXAvP0ncAQB85WJHqtqwH8l7J3Q==
|
integrity sha512-2jFICUSyffuZ+8+qRhXuLSJq4GJ6Y02wxiXoubH0Kzv2lIKkJtWICY1ZQQhtXAvP0ncAQB85WJHqtqwH8l7J3Q==
|
||||||
|
|
||||||
"@cerc-io/util@0.2.100", "@cerc-io/util@^0.2.100":
|
"@cerc-io/util@^0.2.98":
|
||||||
version "0.2.100"
|
version "0.2.98"
|
||||||
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Futil/-/0.2.100/util-0.2.100.tgz#6530496cfd7a9d047cd1bbbd9b2140cd250f26df"
|
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Futil/-/0.2.98/util-0.2.98.tgz#0bed961a20d43c8973d5b86b400086caa76d2d0a"
|
||||||
integrity sha512-5k1La/KasXsrVXZcikFBafBwVeTMCRmuyrHsjokNq1ic+yzByotYRcYPyIZBiNVFe8/ne6d3uGuF3KouI94EYg==
|
integrity sha512-s1St/bD9OjD3NIfx3gj1tDELgpiyxGl6le3mCs77jHM4KbEHW7pFjhe/5YsLXRvc5cIHwNsrCdOuSAIyVUtC2Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@apollo/utils.keyvaluecache" "^1.0.1"
|
"@apollo/utils.keyvaluecache" "^1.0.1"
|
||||||
"@cerc-io/nitro-node" "^0.1.15"
|
"@cerc-io/nitro-node" "^0.1.15"
|
||||||
"@cerc-io/peer" "^0.2.100"
|
"@cerc-io/peer" "^0.2.98"
|
||||||
"@cerc-io/solidity-mapper" "^0.2.100"
|
"@cerc-io/solidity-mapper" "^0.2.98"
|
||||||
"@cerc-io/ts-channel" "1.0.3-ts-nitro-0.1.1"
|
"@cerc-io/ts-channel" "1.0.3-ts-nitro-0.1.1"
|
||||||
"@ethersproject/properties" "^5.7.0"
|
"@ethersproject/properties" "^5.7.0"
|
||||||
"@ethersproject/providers" "^5.4.4"
|
"@ethersproject/providers" "^5.4.4"
|
||||||
|
Loading…
Reference in New Issue
Block a user