SignatureChecker

Ethereum 浏览链

0x800c32eaa2a6c93cf4cb51794450ed77fbfbb172

Solidity v0.6.12+commit.27d51765

🤖
通过你的 AI 查询此合约
引用: 0x800c32eaa2a6c93cf4cb51794450ed77fbfbb172
示例提示词: "Tell me the current state of eth/0x800c32eaa2a6c93cf4cb51794450ed77fbfbb172"
还没有接入 AI?→ mcp.smarts.md · 浏览链

管理与风险

谁能修改规则?

No admin risk controls detected from the verified ABI.

概览

读取函数
1
写入函数
0
事件
0

读取函数

isValidSignatureNow(signer: address, digest: bytes32, signature: bytes) view

Checks whether a signature was produced by a given signer for a provided digest.✨ AI

开发者: Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECRecover.recover`.

参数

名称 类型 描述
signer address Address of the claimed signer
digest bytes32 Keccak-256 hash digest of the signed message
signature bytes Signature byte array associated with hash

返回值

名称 类型 描述
bool True if the signature is valid for the signer and digest, otherwise false.✨ AI