IPohVerifier

Git Source

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

NameTypeDescription
signaturebytesThe signature to check
humanaddressthe address for which the signature has been crafted

Returns

NameTypeDescription
<none>boolTrue if the signature was made by signer, false otherwise

getSigner

Returns the signer's address

function getSigner() external view returns (address);