2Initialize the Client Copyimport { Web3IdentityClient } from '@atv-eth/x402-sdk';const identity = new Web3IdentityClient();
3Use It Copy// Who is this wallet?const profile = await identity.getProfile('vitalik.eth');// Is this wallet safe?const risk = await identity.checkRisk('0x123...');// What's their reputation?const passport = await identity.getPassport('0x123...');