-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05a60a5
commit a5e0da3
Showing
3 changed files
with
14 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -12,9 +12,12 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol"; | |
|
||
/** | ||
* @title Scribe | ||
* @custom:version 2.0.0 | ||
* @custom:version 2.0.1 | ||
* | ||
* @notice Efficient Schnorr multi-signature based Oracle | ||
* | ||
* @author Chronicle Labs, Inc | ||
* @custom:security-contact [email protected] | ||
*/ | ||
contract Scribe is IScribe, Auth, Toll { | ||
using LibSchnorr for LibSecp256k1.Point; | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,9 @@ import {LibSecp256k1} from "./libs/LibSecp256k1.sol"; | |
* @title ScribeOptimistic | ||
* | ||
* @notice Scribe based optimistic Oracle with onchain fault resolution | ||
* | ||
* @author Chronicle Labs, Inc | ||
* @custom:security-contact [email protected] | ||
*/ | ||
contract ScribeOptimistic is IScribeOptimistic, Scribe { | ||
using LibSchnorr for LibSecp256k1.Point; | ||
|