Skip to content

Commit de706d3

Browse files
committed
fix: add field to interfaces, bump subgraph version in package json
1 parent 7d7f562 commit de706d3

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

subgraph/core/schema.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ interface Evidence {
5656
sender: User!
5757
senderAddress: String!
5858
timestamp: BigInt!
59+
transactionHash: Bytes!
5960
name: String
6061
description: String
6162
fileURI: String

subgraph/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kleros/kleros-v2-subgraph",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"license": "MIT",
55
"scripts": {
66
"update:core:arbitrum-sepolia-devnet": "./scripts/update.sh arbitrumSepoliaDevnet arbitrum-sepolia core/subgraph.yaml",

web/src/components/EvidenceCard.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ const AttachedFileText: React.FC = () => (
140140
interface IEvidenceCard extends Pick<Evidence, "evidence" | "timestamp" | "name" | "description" | "fileURI"> {
141141
sender: string;
142142
index: number;
143+
transactionHash: string;
143144
}
144145

145146
const EvidenceCard: React.FC<IEvidenceCard> = ({

0 commit comments

Comments
 (0)