We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c02ed3 commit a27b51fCopy full SHA for a27b51f
2 files changed
web/.gitignore
@@ -23,3 +23,4 @@ static/pwa
23
# generated from contracts
24
src/data/contracts.ts
25
static/indexed-state-*.json
26
+static/indexed-states/
web/src/lib/blockchain/state/State.ts
@@ -11,7 +11,7 @@ const namedLogger = logs('state');
11
12
export const processor = createProcessor();
13
14
-const remoteIndexedState = url(`/indexed-state-${initialContractsInfos.name}.json`);
+const remoteIndexedState = url(`/indexed-states/${initialContractsInfos.name}`);
15
/**
16
* We setup the indexer and make it process the event continuously once connected to the right chain
17
*/
0 commit comments