Integrations
Wallet Integration
Display ZKScore in crypto wallets
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Display ZKScore in crypto wallets
async function getWalletDisplay(address) {
const [balance, score, identity] = await Promise.all([
getBalance(address),
zkScore.getScore(address),
zkScore.getIdentity(address)
]);
return {
address,
zksId: identity?.name || null,
balance,
zkScore: score.total,
tier: getScoreTier(score.total)
};
}