Skip to content

Commit

Permalink
Merge pull request #239 from kleros/sepolia-reality-kleros
Browse files Browse the repository at this point in the history
Add support for Reality and Kleros on Sepolia
  • Loading branch information
jfschwarz authored May 30, 2024
2 parents be9fb49 + fc858fa commit cbb72a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/app/src/components/input/ArbitratorSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export const klerosAvailability: number[] = [
NETWORK.GOERLI,
NETWORK.GNOSIS_CHAIN,
NETWORK.POLYGON,
NETWORK.SEPOLIA,
]

type Option = keyof typeof arbitratorOptions
Expand Down
4 changes: 3 additions & 1 deletion packages/app/src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export function getDefaultOracle(chainId: number): string {
case NETWORK.AVALANCHE:
return "0xD88cd78631Ea0D068cedB0d1357a6eabe59D7502"
case NETWORK.SEPOLIA:
return "" // TODO
return "0xaf33DcB6E8c5c4D9dDF579f53031b514d19449CA"
case NETWORK.BASE:
return "" // TODO
}
Expand Down Expand Up @@ -205,6 +205,8 @@ export function getKlerosAddress(chainId: number): string {
return "0x29f39de98d750eb77b5fafb31b2837f079fce222"
case NETWORK.POLYGON:
return "0x5AFa42b30955f137e10f89dfb5EF1542a186F90e"
case NETWORK.SEPOLIA:
return "0x05b942faecfb3924970e3a28e0f230910cedff45"
}
return ""
}
Expand Down

0 comments on commit cbb72a2

Please sign in to comment.