Returns the web3 reputation and authenticity score based on Blaze defined metrics for a wallet.
Last updated 7 months ago
query WalletScores($walletAddress: String!){ walletScores(walletAddress: $walletAddress){ web3ReputationScore authenticityScore } }
{ "walletAddress": String // Wallet Address }
{ "data": { "walletScores": { "web3ReputationScore": Float, // Web3 reputation score in percentage "authenticityScore": Float // Authenticity score in percentage } } }
{ "walletAddress": "0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990" }
{ "data": { "walletScores": { "web3ReputationScore": 70.0, "authenticityScore": 50.0 } } }