Compare commits

...

3 Commits

Author SHA1 Message Date
ce717930c6 Mock ship keys for usage in e2e tests (#9)
All checks were successful
Publish azimuth-watcher docker image on release / Run docker build and publish (release) Successful in 2m31s
Part of https://plan.wireit.in/deepstack/browse/VUL-294/

Reviewed-on: #9
Co-authored-by: Shreerang Kale <shree@deepstacksoft.com>
Co-committed-by: Shreerang Kale <shree@deepstacksoft.com>
2025-11-28 10:07:58 +00:00
699bf8ee9f Upgrade watcher-ts packages to fix block processing (#8)
All checks were successful
Publish azimuth-watcher docker image on release / Run docker build and publish (release) Successful in 4m52s
Part of milestone 6 (Testnet)

Reviewed-on: #8
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2025-11-18 10:05:50 +00:00
8ab8f8e261 Upgrade watcher-ts packages for handling network error (#6)
All checks were successful
Publish azimuth-watcher docker image on release / Run docker build and publish (release) Successful in 5m10s
Part of https://plan.wireit.in/deepstack/browse/VUL-271/ and milestone 6 (Testnet)

Reviewed-on: #6
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2025-11-13 08:42:43 +00:00
13 changed files with 131 additions and 86 deletions

View File

@ -3,6 +3,6 @@
"packages/*"
],
"useWorkspaces": true,
"version": "0.1.11",
"version": "0.2.1",
"npmClient": "yarn"
}

View File

@ -27,6 +27,12 @@
# Log directory for GQL requests
logDir = "./gql-logs"
# Flag to enable injecting mock events for testing
enableMockEvents = false
# Flag to enable mocking ship keys for testing
enableMockShipKeys = false
# GQL cache settings
[server.gql.cache]
enabled = true

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/azimuth-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "azimuth-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -27,6 +27,12 @@ import { mockEventStore, MockEventInput } from './mock-event-store';
const log = debug('vulcanize:resolver');
// Mock ship keys environment variables
const TEST_MOCK_POINT = process.env.TEST_MOCK_POINT;
const TEST_MOCK_ENCRYPTION_KEY = process.env.TEST_MOCK_ENCRYPTION_KEY;
const TEST_MOCK_AUTHENTICATION_KEY = process.env.TEST_MOCK_AUTHENTICATION_KEY;
const TEST_MOCK_LIFE = process.env.TEST_MOCK_LIFE;
const executeAndRecordMetrics = async (
indexer: Indexer,
gqlLogger: winston.Logger,
@ -79,7 +85,8 @@ export const createResolvers = async (
const indexer = indexerArg as Indexer;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const gqlCacheConfig = indexer.serverConfig.gql.cache;
const gqlConfig = indexer.serverConfig.gql;
const mockShipKeysEnabled = (gqlConfig as any).enableMockShipKeys;
return {
BigInt: GraphQLBigInt,
@ -109,9 +116,14 @@ export const createResolvers = async (
},
injectMockEvents: async (_: any, { events }: { events: MockEventInput[] }): Promise<{ success: boolean, eventsInjected: number }> => {
log('injectMockEvents', events.length);
const eventsInjected = mockEventStore.addEvents(events);
return { success: true, eventsInjected };
if ((gqlConfig as any).enableMockEvents) {
log('injectMockEvents', events.length);
const eventsInjected = mockEventStore.addEvents(events);
return { success: true, eventsInjected };
}
log('Forbidden');
return { success: false, eventsInjected: 0 };
}
},
@ -129,6 +141,17 @@ export const createResolvers = async (
// Set cache-control hints
// setGQLCacheHints(info, {}, gqlCacheConfig);
// Check if we should return mocked active status for this point
const shouldMock = mockShipKeysEnabled && TEST_MOCK_POINT && _point === BigInt(TEST_MOCK_POINT);
if (shouldMock) {
log('isActive: returning mocked value (true) for point:', _point.toString());
return Promise.resolve({
value: true,
proof: undefined
});
}
return executeAndRecordMetrics(
indexer,
gqlLogger,
@ -151,6 +174,22 @@ export const createResolvers = async (
// Set cache-control hints
// setGQLCacheHints(info, {}, gqlCacheConfig);
// Check if we should return mocked keys for this point
const shouldMock = mockShipKeysEnabled && TEST_MOCK_POINT && _point === BigInt(TEST_MOCK_POINT);
if (shouldMock) {
log('getKeys: returning mocked keys for point:', _point.toString());
return Promise.resolve({
value: {
value0: TEST_MOCK_ENCRYPTION_KEY,
value1: TEST_MOCK_AUTHENTICATION_KEY,
value2: BigInt(0),
value3: BigInt(TEST_MOCK_LIFE ?? 1)
},
proof: undefined
});
}
return executeAndRecordMetrics(
indexer,
gqlLogger,

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/censures-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "censures-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/claims-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "claims-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/conditional-star-release-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "conditional-star-release-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/delegated-sending-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "delegated-sending-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/ecliptic-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "ecliptic-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/gateway-server",
"version": "0.1.11",
"version": "0.2.1",
"main": "index.js",
"license": "AGPL-3.0",
"private": true,

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/linear-star-release-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "linear-star-release-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "@cerc-io/polls-watcher",
"version": "0.1.11",
"version": "0.2.1",
"description": "polls-watcher",
"private": true,
"main": "dist/index.js",
@ -39,10 +39,10 @@
"homepage": "https://github.com/cerc-io/watcher-ts#readme",
"dependencies": {
"@apollo/client": "^3.3.19",
"@cerc-io/cli": "0.2.98-patch.3",
"@cerc-io/ipld-eth-client": "0.2.98-patch.3",
"@cerc-io/solidity-mapper": "0.2.98-patch.3",
"@cerc-io/util": "0.2.98-patch.3",
"@cerc-io/cli": "0.2.98-patch.5",
"@cerc-io/ipld-eth-client": "0.2.98-patch.5",
"@cerc-io/solidity-mapper": "0.2.98-patch.5",
"@cerc-io/util": "0.2.98-patch.5",
"@ethersproject/providers": "^5.4.4",
"debug": "^4.3.1",
"decimal.js": "^10.3.1",

View File

@ -206,10 +206,10 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
"@cerc-io/cache@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcache/-/0.2.98-patch.3/cache-0.2.98-patch.3.tgz#d60eee7f751036532b2d9a054216a75c99832f6c"
integrity sha512-zalJUirFo++YFdA8tD8F632XhpPOkNjsz87VP2ltHCSIrh720T4v/QDzMsGORs++1E9oPp4QRbQ7MntX/jzVwA==
"@cerc-io/cache@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcache/-/0.2.98-patch.5/cache-0.2.98-patch.5.tgz#bef0af0bae4155663a0cb257740303463577fac2"
integrity sha512-9Marfx9EqJdGcvUxgJ/WjWfYIyXcMPhQoD4I+2NTmjxi/sCrSoHy9EQhIJiSfvr4YnTOn7AYFedOb+dsDKgKpQ==
dependencies:
canonical-json "^0.0.4"
debug "^4.3.1"
@ -217,19 +217,19 @@
fs-extra "^10.0.0"
level "^7.0.0"
"@cerc-io/cli@0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcli/-/0.2.98-patch.3/cli-0.2.98-patch.3.tgz#08208564bbdcfa23c91a0f0a3a40c9496aeacf23"
integrity sha512-mNkd0JZ63Kxs7Nr0+1QgWi2MNcDiSTyINPS7BpWBQUAYpJu4YZ6Y8KJpI+6Juxh1TlnZU8F4fh6MqEuORwgvrw==
"@cerc-io/cli@0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fcli/-/0.2.98-patch.5/cli-0.2.98-patch.5.tgz#1d06f713e61705f74e4c469b6ade9a0d436b47a5"
integrity sha512-TgYhPBk5QKVglBV/Iys/mCiDr1TmRn/ZWZBNMuamX02GTtWoSJRQIdFmqjRwVS68PB6Qkx3GzknQ177M2k8huQ==
dependencies:
"@apollo/client" "^3.7.1"
"@cerc-io/cache" "^0.2.98-patch.3"
"@cerc-io/ipld-eth-client" "^0.2.98-patch.3"
"@cerc-io/cache" "^0.2.98-patch.5"
"@cerc-io/ipld-eth-client" "^0.2.98-patch.5"
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
"@cerc-io/nitro-node" "^0.1.15"
"@cerc-io/peer" "^0.2.98-patch.3"
"@cerc-io/rpc-eth-client" "^0.2.98-patch.3"
"@cerc-io/util" "^0.2.98-patch.3"
"@cerc-io/peer" "^0.2.98-patch.5"
"@cerc-io/rpc-eth-client" "^0.2.98-patch.5"
"@cerc-io/util" "^0.2.98-patch.5"
"@ethersproject/providers" "^5.4.4"
"@graphql-tools/utils" "^9.1.1"
"@ipld/dag-cbor" "^8.0.0"
@ -250,14 +250,14 @@
typeorm "0.2.37"
yargs "^17.0.1"
"@cerc-io/ipld-eth-client@0.2.98-patch.3", "@cerc-io/ipld-eth-client@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fipld-eth-client/-/0.2.98-patch.3/ipld-eth-client-0.2.98-patch.3.tgz#cde66c17a00b5294ceffe320d4c9893f69d690da"
integrity sha512-QELYD26u9d4ZAmRjvm/ljS5iYQheUaQiUuEYV7Hig6Q4qFy8xdEjN/4uaJu/0/Q1gcKhdFGQLmwaJ4o1hNQ87Q==
"@cerc-io/ipld-eth-client@0.2.98-patch.5", "@cerc-io/ipld-eth-client@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fipld-eth-client/-/0.2.98-patch.5/ipld-eth-client-0.2.98-patch.5.tgz#ee123559a71ea14dbb3d27f7e9e91444372d78ac"
integrity sha512-nw3qJxI6ZQ7tyWOMWIEsthLlACucFl4oqRIX7zRYzWYhXPzF7dsmzdGlO5AubJlUIugFMfIeBr0JEvOm4stTHA==
dependencies:
"@apollo/client" "^3.7.1"
"@cerc-io/cache" "^0.2.98-patch.3"
"@cerc-io/util" "^0.2.98-patch.3"
"@cerc-io/cache" "^0.2.98-patch.5"
"@cerc-io/util" "^0.2.98-patch.5"
cross-fetch "^3.1.4"
debug "^4.3.1"
ethers "^5.4.4"
@ -410,10 +410,10 @@
unique-names-generator "^4.7.1"
yargs "^17.0.1"
"@cerc-io/peer@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.98-patch.3/peer-0.2.98-patch.3.tgz#3369a7fbe782ec5a2deffb9d183900bcb393842e"
integrity sha512-tnJEyFyAX6EEKp3xh73/c5FwY8M/6vbaCE5JXOPtyXhL9cIXhjMPmxJ7J370Nb+3DC8qcPbbuJOMXaYzawO5vQ==
"@cerc-io/peer@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fpeer/-/0.2.98-patch.5/peer-0.2.98-patch.5.tgz#fc0407b0f97f6cbe3bdfa13a06ece2b492d5efc7"
integrity sha512-/OhHNWlm9FX/44jUqGl4WjAG2GWWjClHvfGTMk/01Us4gVDUT5qgvNn3Tuw/mJLbVPibOFqyCgcbz8oDOJvBng==
dependencies:
"@cerc-io/libp2p" "^0.42.2-laconic-0.1.4"
"@cerc-io/prometheus-metrics" "1.1.4"
@ -452,23 +452,23 @@
it-stream-types "^1.0.4"
promjs "^0.4.2"
"@cerc-io/rpc-eth-client@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Frpc-eth-client/-/0.2.98-patch.3/rpc-eth-client-0.2.98-patch.3.tgz#37255cce97df6f162305b0b86647a600267ca1e6"
integrity sha512-3Fd7GiISGMTiRmGAadvxVEqXm003kAZQXYgE7MFVKbjnd87NuCnyMmFGKoBT8qQMKy9DS0rs3rR3A76Z8tNg3w==
"@cerc-io/rpc-eth-client@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Frpc-eth-client/-/0.2.98-patch.5/rpc-eth-client-0.2.98-patch.5.tgz#300f7e6fd4c90c720902d3d5e118d558484cf39b"
integrity sha512-vhfUk4VpMgkY8pfooOIlHu8I5Cb9fo2bBQP1VwnGm6vj9qngsiUm3QmxDrnCWaytmN1/q/AEP9HsvgHiQDSKHQ==
dependencies:
"@cerc-io/cache" "^0.2.98-patch.3"
"@cerc-io/ipld-eth-client" "^0.2.98-patch.3"
"@cerc-io/util" "^0.2.98-patch.3"
"@cerc-io/cache" "^0.2.98-patch.5"
"@cerc-io/ipld-eth-client" "^0.2.98-patch.5"
"@cerc-io/util" "^0.2.98-patch.5"
chai "^4.3.4"
ethers "^5.4.4"
left-pad "^1.3.0"
mocha "^8.4.0"
"@cerc-io/solidity-mapper@0.2.98-patch.3", "@cerc-io/solidity-mapper@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fsolidity-mapper/-/0.2.98-patch.3/solidity-mapper-0.2.98-patch.3.tgz#6d067aba1185069791628fca9bb80f044e9d148f"
integrity sha512-3aD0lVE4afLloCGPKWGTioi8r/bQtp00vHIdMjvKPuvDQxcgFouM3fme3xqy0gVdGFVjhCeHUJrHdawXXQmm3w==
"@cerc-io/solidity-mapper@0.2.98-patch.5", "@cerc-io/solidity-mapper@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fsolidity-mapper/-/0.2.98-patch.5/solidity-mapper-0.2.98-patch.5.tgz#3266b04f0c7f809dd4f331c2150ebc709f129936"
integrity sha512-YHmXvAH41Vz2fUfkPpP7VjElnGGg2QDYSt7p/teXyLMrro95rurfSkZ2K3NfCjLB9mF7LDREaiEW/+her2Xn6A==
dependencies:
dotenv "^10.0.0"
@ -477,15 +477,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"
integrity sha512-2jFICUSyffuZ+8+qRhXuLSJq4GJ6Y02wxiXoubH0Kzv2lIKkJtWICY1ZQQhtXAvP0ncAQB85WJHqtqwH8l7J3Q==
"@cerc-io/util@0.2.98-patch.3", "@cerc-io/util@^0.2.98-patch.3":
version "0.2.98-patch.3"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Futil/-/0.2.98-patch.3/util-0.2.98-patch.3.tgz#2e4bf7faff6685f791ebc8bcd9a6247f3aac7739"
integrity sha512-Z4OL2bgqpZnnIF03bLVxGvU2jY4HvsrRmWLxre0T0PS4SLPJk5OccXdynNSF3BsFRy2k0nl5Nd7DZepHiEy3GQ==
"@cerc-io/util@0.2.98-patch.5", "@cerc-io/util@^0.2.98-patch.5":
version "0.2.98-patch.5"
resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Futil/-/0.2.98-patch.5/util-0.2.98-patch.5.tgz#3d88ffaed3486f8dff86c1b4abd4af075d9f7389"
integrity sha512-fg0i6yD4A1X2dvpRY1FrtaBhhvyXW5m8cn7XNZh/NxcyCEu2nStsH/ND5HHUzffaUAgDPMBkluLESrCn9/5tUQ==
dependencies:
"@apollo/utils.keyvaluecache" "^1.0.1"
"@cerc-io/nitro-node" "^0.1.15"
"@cerc-io/peer" "^0.2.98-patch.3"
"@cerc-io/solidity-mapper" "^0.2.98-patch.3"
"@cerc-io/peer" "^0.2.98-patch.5"
"@cerc-io/solidity-mapper" "^0.2.98-patch.5"
"@cerc-io/ts-channel" "1.0.3-ts-nitro-0.1.1"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/providers" "^5.4.4"