IPohVerifier
Functions
verify
Check if the provided signature has been signed by signer
human is supposed to be a POH address, this is what is being signed by the POH API
function verify(bytes memory signature, address human) external view returns (bool);
Parameters
Name | Type | Description |
---|---|---|
signature | bytes | The signature to check |
human | address | the address for which the signature has been crafted |
Returns
Name | Type | Description |
---|---|---|
<none> | bool | True if the signature was made by signer, false otherwise |
getSigner
Returns the signer's address
function getSigner() external view returns (address);