Wallet Scores
Returns the web3 reputation and authenticity score based on Blaze defined metrics for a wallet.
GraphQL Query
query WalletScores($walletAddress: String!){
walletScores(walletAddress: $walletAddress){
web3ReputationScore
authenticityScore
}
}
Variables
{
"walletAddress": String // Wallet Address
}
Response
{
"data": {
"walletScores": {
"web3ReputationScore": Float, // Web3 reputation score in percentage
"authenticityScore": Float // Authenticity score in percentage
}
}
}
Example
Last updated
Was this helpful?