Skip to content

Commit 27c15ff

Browse files
committed
feat(web): change id to be the daily timestamp
1 parent c8bc752 commit 27c15ff

File tree

4 files changed

+15
-26
lines changed

4 files changed

+15
-26
lines changed

subgraph/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 KlerosCore"
1111
},
1212
"dependencies": {
13-
"@graphprotocol/graph-cli": "^0.29.0",
13+
"@graphprotocol/graph-cli": "^0.29.1",
1414
"@graphprotocol/graph-ts": "^0.26.0"
1515
}
1616
}

subgraph/schema.graphql

+5-15
Original file line numberDiff line numberDiff line change
@@ -94,36 +94,26 @@ type OutgoingMessage @entity {
9494
}
9595

9696
type PNKStakedDataPoint @entity {
97-
id: ID! # Incrementally set, id 0 reserved for counter
98-
timestamp: BigInt!
97+
id: ID! # Will be the timestamp except for the counter which will be 0
9998
value: BigInt!
100-
length: Int! # For the counter, to store number of datapoints
10199
}
102100

103101
type ETHPaidDataPoint @entity {
104-
id: ID! # Incrementally set, id 0 reserved for counter
105-
timestamp: BigInt!
102+
id: ID! # Will be the timestamp except for the counter which will be 0
106103
value: BigInt!
107-
length: Int! # For the counter, to store number of datapoints
108104
}
109105

110106
type PNKRedistributedDataPoint @entity {
111-
id: ID! # Incrementally set, id 0 reserved for counter
112-
timestamp: BigInt!
107+
id: ID! # Will be the timestamp except for the counter which will be 0
113108
value: BigInt!
114-
length: Int! # For the counter, to store number of datapoints
115109
}
116110

117111
type ActiveJurorsDataPoint @entity {
118-
id: ID! # Incrementally set, id 0 reserved for counter
119-
timestamp: BigInt!
112+
id: ID! # Will be the timestamp except for the counter which will be 0
120113
value: BigInt!
121-
length: Int! # For the counter, to store number of datapoints
122114
}
123115

124116
type CasesDataPoint @entity {
125-
id: ID! # Incrementally set, id 0 reserved for counter
126-
timestamp: BigInt!
117+
id: ID! # Will be the timestamp except for the counter which will be 0
127118
value: BigInt!
128-
length: Int! # For the counter, to store number of datapoints
129119
}

subgraph/src/KlerosCore.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export function handleDisputeCreation(event: DisputeCreation): void {
7474
round.penalties = roundInfo.value3;
7575
dispute.save();
7676
round.save();
77+
updateCases(BigInt.fromI32(1), event.block.timestamp);
7778
}
7879

7980
export function handleNewPeriod(event: NewPeriod): void {
@@ -171,16 +172,14 @@ function updateDataPoint(delta: BigInt, timestamp: BigInt, entityName: string):
171172
let counter = store.get(entityName, "0");
172173
if (!counter) {
173174
counter = new Entity();
174-
counter.set("length", Value.fromI32(0));
175175
counter.set("value", Value.fromBigInt(BigInt.fromI32(0)));
176176
}
177-
const newLength = counter.get("length")!.toI32() + 1;
177+
let dayID = timestamp.toI32() / 86400
178+
let dayStartTimestamp = dayID * 86400
178179
const newValue = counter.get("value")!.toBigInt().plus(delta);
179180
const newDataPoint = new Entity();
180-
newDataPoint.set("length", Value.fromI32(newLength));
181181
newDataPoint.set("value", Value.fromBigInt(newValue));
182-
newDataPoint.set("timestamp", Value.fromBigInt(timestamp));
183-
store.set(entityName, newLength.toString(), newDataPoint);
182+
store.set(entityName, dayStartTimestamp.toString(), newDataPoint);
184183
store.set(entityName, "0", newDataPoint);
185184
}
186185

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1572,9 +1572,9 @@ __metadata:
15721572
languageName: node
15731573
linkType: hard
15741574

1575-
"@graphprotocol/graph-cli@npm:^0.29.0":
1576-
version: 0.29.0
1577-
resolution: "@graphprotocol/graph-cli@npm:0.29.0"
1575+
"@graphprotocol/graph-cli@npm:^0.29.1":
1576+
version: 0.29.1
1577+
resolution: "@graphprotocol/graph-cli@npm:0.29.1"
15781578
dependencies:
15791579
assemblyscript: 0.19.10
15801580
binary-install-raw: 0.0.13
@@ -1603,7 +1603,7 @@ __metadata:
16031603
yaml: 1.9.2
16041604
bin:
16051605
graph: bin/graph
1606-
checksum: 743b0c667fcbc80f216f208b4b05a94ac22355c5eba6b66371d4c61637e52958d727bef032549fdbe9946e3f8fc03f4a0fe0f6df2b3e5fd129618abfc131ef71
1606+
checksum: 1a93a210f65e6bfab0fc6c8d7a75dfc56c6443f058a0e65fac9c9478dafe1574f371c225ac7acd163885e28a0607db9c81d0dabbd40e4249d05730b4e71768b6
16071607
languageName: node
16081608
linkType: hard
16091609

@@ -1728,7 +1728,7 @@ __metadata:
17281728
version: 0.0.0-use.local
17291729
resolution: "@kleros/kleros-v2-subgraph@workspace:subgraph"
17301730
dependencies:
1731-
"@graphprotocol/graph-cli": ^0.29.0
1731+
"@graphprotocol/graph-cli": ^0.29.1
17321732
"@graphprotocol/graph-ts": ^0.26.0
17331733
languageName: unknown
17341734
linkType: soft

0 commit comments

Comments
 (0)