Skip to content

Shutterized Dispute Kit #1965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 33 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2bffa61
chore: shutter script experiment
jaybuidl Mar 15, 2025
3570b46
feat(shutter): added decryption logic
jaybuidl Mar 19, 2025
ddae29a
fix: better error handling
jaybuidl Mar 19, 2025
04e3f5c
feat: naive shutterized dispute kit and auto-voting bot
jaybuidl Apr 24, 2025
be6e1ce
feat: commitment hashing and verification onchain
jaybuidl Apr 29, 2025
020dbab
chore: cleanup
jaybuidl Apr 29, 2025
30804a8
feat: support for multiple voteIDs at once, fixed salt handling by bot
jaybuidl Apr 30, 2025
1a9b72d
chore: cleanup before integration into a fully fletched dispute kit
jaybuidl Apr 30, 2025
b580556
feat: fully fletched DisputeKitShutter
jaybuidl Apr 30, 2025
8819241
chore: removed redundant node-fetch
jaybuidl Apr 30, 2025
cd016b3
chore: cleanup
jaybuidl Apr 30, 2025
8e46e05
feat: fully fletched DisputeKitShutter
jaybuidl Apr 30, 2025
98ec3ba
chore: deployment of DisputeKitShutter in devnet
jaybuidl Apr 30, 2025
74d1506
fix: missing parameter, upgraded DisputeKitShutter
jaybuidl Apr 30, 2025
b40abc2
chore: upgraded DisputeKitClassic
jaybuidl Apr 30, 2025
cb7997f
fix: external call to castCommit() changes msg.sender, fixed by extra…
jaybuidl May 1, 2025
ee2ceb6
chore: enable shutter DK on the devnet general court
jaybuidl May 2, 2025
317aed6
feat: support for shutter disputekit in devnet
kemuru May 6, 2025
05dcdb0
fix: create new classic dispute entity correctly with correct round i…
kemuru May 8, 2025
44ea55e
fix: correct round check
kemuru May 8, 2025
a995e1e
chore: subgraph update scripts now relies on a template and removes d…
jaybuidl May 8, 2025
ca14ada
Merge branch 'dev' into feat/shutter-dispute-kit
jaybuidl May 8, 2025
f3f235c
Merge branch 'feat/shutter-dispute-kit' into feat(subgraph)/support-f…
kemuru May 9, 2025
4b85135
Merge branch 'dev' into feat/shutter-dispute-kit
jaybuidl May 9, 2025
edc4a7d
Merge branch 'dev' into feat/shutter-dispute-kit
jaybuidl May 12, 2025
78b2951
chore: fix to support deployment to Alchemy
jaybuidl May 13, 2025
6b32fc3
chore: lock file
jaybuidl May 13, 2025
74625e1
Merge pull request #1966 from kleros/feat(subgraph)/support-for-multi…
jaybuidl May 14, 2025
0dad7c4
Merge branch 'dev' into feat/shutter-dispute-kit
kemuru May 15, 2025
6cd4369
Merge branch 'dev' into feat/shutter-dispute-kit
kemuru May 15, 2025
14994db
fix: bug fix in subgraph
kemuru May 15, 2025
142273c
Merge pull request #1995 from kleros/fix(subgraph)/localrounds-fix
kemuru May 15, 2025
5989928
chore: subgraphs version bump
jaybuidl May 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Refresh the list of deployed contracts by running `./scripts/generateDeployments
- [DAIFaucet](https://sepolia.arbiscan.io/address/0xB5b39A1bcD2D7097A8824B3cC18Ebd2dFb0D9B5E)
- [DisputeKitClassic: proxy](https://sepolia.arbiscan.io/address/0x2246821E1313A93e2F8CdF7a3422d078f560b457), [implementation](https://sepolia.arbiscan.io/address/0x8Db69EE93365190FE9CA4d59Ae4Cdd4f3688f1Af)
- [DisputeKitClassicUniversity: proxy](https://sepolia.arbiscan.io/address/0xd6E96b7c993763B5CDDa1139C7387B82A7c8B8B5), [implementation](https://sepolia.arbiscan.io/address/0x87e863b94d2CB79A8aB53bD87Dc4A10E11C0918B)
- [DisputeKitShutter: proxy](https://sepolia.arbiscan.io/address/0x09F3d00B995186D76Af9AA8627D06351d0d9f950), [implementation](https://sepolia.arbiscan.io/address/0xFbEeF40E23C6B39e5d1190A43d6712B2643fa0dD)
- [DisputeResolver](https://sepolia.arbiscan.io/address/0x524C5541f440204E0B4577334c439277018F971f)
- [DisputeResolverRuler](https://sepolia.arbiscan.io/address/0x199893232ECC74cC7898B24b5Ff58d613029f6B7)
- [DisputeResolverUniversity](https://sepolia.arbiscan.io/address/0x2Aa1a94307E772BeE42E9EfbD137b1053F1fCfd4)
Expand Down
9 changes: 9 additions & 0 deletions contracts/deploy/00-home-chain-arbitration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@ const deployArbitration: DeployFunction = async (hre: HardhatRuntimeEnvironment)
console.error("failed to change currency rates:", e);
}

// Extra dispute kits
const disputeKitShutter = await deployUpgradable(deployments, "DisputeKitShutter", {
from: deployer,
args: [deployer, core.target],
log: true,
});
await core.addNewDisputeKit(disputeKitShutter.address);
await core.enableDisputeKits(1, [2], true); // enable disputeKitShutter on the General Court

await deploy("KlerosCoreSnapshotProxy", {
from: deployer,
args: [deployer, core.target],
Expand Down
Loading
Loading