async function getUserVerificationLevel(address) {
const score = await zkScore.getScore(address);
const attestations = await trustRegistry.getReceivedAttestationUIDs(address);
if (score.total >= 500 && attestations.length >= 3) return 'verified';
if (score.total >= 300) return 'trusted';
return 'new';
}