The Address Book is a contract that stores verified World ID addresses. You can check if a user’s address and associated ENS name (if available) is Orb verified using the getIsUserVerified helper function.
import { getIsUserVerified } from "@worldcoin/minikit-js"const userWalletAddress = "0x000000000000000000000000000000000000dEaD"const isUserVerified = await getIsUserVerified(userWalletAddress) // optionally you can provide your rpc url as a second argument to the function