Authenticates SDK users from their EOAs.
message
(required): raw message that signature is generated from (it does not have to be hashing) / シグネチャが生成される元になるメッセージ(ハッシュ値である必要はない)signature
(required): 0x prefixed signature that is generated by secp256k1 algorithm such as eth_sign function / 0xでprefixされeth_signといった関数に代表されるsecp256k1のアルゴリズムを使って生成されるシグネチャaddress
(required): Ethreum Address(EOA) of the signer(Both lowercase and mixed case which is compatible with EIP55 are accepted) / Ethereumアドレスですが、小文字でもEIP55に準拠した大文字・小文字混合の場合でもどちらでもよいsignMethod
(optional): A specific sign method with which signature is generated. If not specified, both eth_sign
and personal_sign
method is used to validate EOA / シグネチャ生成に使われた署名ロジック名を検証ロジックに指定できます。指定がない場合は、両方のメソッドが検証されます。# Status Code: 200
{ isValid: true, invalidReason: null, triedSignMethods: ['eth_sign'] }