SigManager
SigManager
Abstract contract for verifying signatures against operator keys
Provides signature verification functionality for operator keys
Methods
_verifyKeySignature
function _verifyKeySignature(
address operator,
bytes memory key_,
bytes memory signature
) internal virtual returns (bool)
Verifies that a signature was created by the owner of a key
Parameters
Name | Type | Description |
---|---|---|
operator | address | The address of the operator that owns the key |
key_ | bytes memory | The public key to verify against |
signature | bytes memory | The signature to verify |
Returns
Name | Type | Description |
---|---|---|
bool | True if the signature was created by the key owner, false otherwise |