File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: MIT
22pragma solidity ^ 0.8.0 ;
33
4- // https://github.com/Lay3rLabs/WAVS/blob/f1e33d0efd347bea9d99a546cde774d4372a0bf3/sdk/contracts/solidity/interfaces/ILayerService.sol
5- interface IWavsService {
4+ interface ILayerServiceHandler {
65 /**
76 * @param data The arbitrary data that was signed.
87 * @param signature The signature of the data.
Original file line number Diff line number Diff line change 1+ // SPDX-License-Identifier: MIT
2+ pragma solidity ^ 0.8.0 ;
3+
4+ interface ILayerServiceManager {
5+ // ------------------------------------------------------------------------
6+ // Custom Errors
7+ // ------------------------------------------------------------------------
8+ error InvalidSignature ();
9+
10+ /**
11+ * @param data The arbitrary data that was signed.
12+ * @param signature The signature of the data.
13+ */
14+ function validate (bytes calldata data , bytes calldata signature ) external view ;
15+ }
You can’t perform that action at this time.
0 commit comments