-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement bondescalationmodule rpc calls (#43)
# 🤖 Linear Closes GRT-142 ## Description - Implements pledgeForDispute, pledgeAgainstDispute, settleDispute (settleBondEscalation) - Adds the custom contract errors in code comments (to be refactored into a map in an error handling PR) --------- Signed-off-by: jahabeebs <[email protected]>
- Loading branch information
Showing
7 changed files
with
2,031 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,710 changes: 1,710 additions & 0 deletions
1,710
packages/automated-dispute/src/abis/bondEscalationModule.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export * from "./oracle.js"; | ||
export * from "./epochManager.js"; | ||
export * from "./eboRequestCreator.js"; | ||
export * from "./bondEscalationModule.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
export const ProtocolContractsNames = ["oracle", "epochManager", "eboRequestCreator"] as const; | ||
export const ProtocolContractsNames = [ | ||
"oracle", | ||
"epochManager", | ||
"eboRequestCreator", | ||
"bondEscalationModule", | ||
] as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.