@dapperlabs/dappauth
Version:
A util to prove actionable control ('ownership') over a public Ethereum address using eth_sign
28 lines (26 loc) • 418 B
JavaScript
/* eslint-disable */
module.exports = [
{
constant: true,
inputs: [
{
name: 'hash',
type: 'bytes32',
},
{
name: '_signature',
type: 'bytes',
},
],
name: 'isValidSignature',
outputs: [
{
name: 'magicValue',
type: 'bytes4',
},
],
payable: false,
stateMutability: 'view',
type: 'function',
},
];