Signed Reads
Authenticated read calls that prove caller identity
Why Signed Reads Matter
// Signed read -- msg.sender = your address
const myBalance = await contract.read.balanceOf(["0x1234..."]);
// Transparent read -- msg.sender = zero address
const totalSupply = await contract.tread.totalSupply();Standalone: signedReadContract
signedReadContractimport { signedReadContract } from "seismic-viem";Parameters
Parameter
Type
Required
Description
Returns
Example
Low-level: signedCall
signedCallHow It Works
Signed Read vs Transparent Read
See Also
Last updated

