checkAptosStealthAddress()
SIP Protocol API Reference v0.7.0
SIP Protocol API Reference / checkAptosStealthAddress
Function: checkAptosStealthAddress()
Section titled “Function: checkAptosStealthAddress()”checkAptosStealthAddress(
stealthAddress,spendingPrivateKey,viewingPrivateKey):boolean
Defined in: @sip-protocol/sdk/dist/index-BYZbDjal.d.ts:2581
Check if a stealth address belongs to this recipient
Uses view tag for efficient filtering before full computation. This is the same as the standard ed25519 check since Aptos stealth addresses use ed25519 stealth public keys.
Parameters
Section titled “Parameters”stealthAddress
Section titled “stealthAddress”Stealth address to check
spendingPrivateKey
Section titled “spendingPrivateKey”`0x${string}`
Recipient’s spending private key
viewingPrivateKey
Section titled “viewingPrivateKey”`0x${string}`
Recipient’s viewing private key
Returns
Section titled “Returns”boolean
true if this address belongs to the recipient
Throws
Section titled “Throws”If any input is invalid
Example
Section titled “Example”const isMine = checkAptosStealthAddress( stealthAddress, mySpendingPrivKey, myViewingPrivKey)