Skip to content

Commit 848cc0e

Browse files
authoredAug 4, 2023
Merge pull request #1057 from kleros/fix(web)/staking-refetch-and-improving-fetching-timing
Feat(web, subgraph): Performance improvements, code refactor, subgraph add FeeToken
2 parents 058069e + 18c56fe commit 848cc0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1060
-275
lines changed
 

‎bot-pinner/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ $ docker-compose up -d
1717
2. Evidence container that awaits new events and then scrapes the latest hashes and submits it to IPFS.
1818
3. `src/peers.txt` contains a list of peers, by default it will add connects to Estuary & Kleros IPFS nodes. This should make it easier to find content by creating a data network around Kleros Court V2.
1919
1. Adding these peers will make it easier to find and replicate content.
20+
2021
## DappNode
2122

2223
:warning: For the following steps, you need access to [a DappNode](https://dappnode.io) system with the IPFS service running.

‎contracts/scripts/simulations/tasks.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ task("simulate:cast-commit", "Casts a commit for a drawn juror")
268268
const tx = await disputeKitClassic.connect(wallet).castCommit(...castCommitFunctionArgs);
269269
await tx.wait();
270270

271-
console.log("juror %s casted a commit on txID: %s", wallet.address, tx?.hash);
271+
console.log("juror %s cast a commit on txID: %s", wallet.address, tx?.hash);
272272
});
273273

274274
task("simulate:cast-vote", "Casts a vote for a drawn juror")
@@ -295,7 +295,7 @@ task("simulate:cast-vote", "Casts a vote for a drawn juror")
295295
const tx = await disputeKitClassic.connect(wallet).castVote(...castVoteFunctionArgs);
296296
await tx.wait();
297297

298-
console.log("juror %s casted a vote on txID: %s", wallet.address, tx?.hash);
298+
console.log("juror %s cast a vote on txID: %s", wallet.address, tx?.hash);
299299
});
300300

301301
task("simulate:fund-appeal", "Funds an appeal on a dispute")

0 commit comments

Comments
 (0)
Please sign in to comment.