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

Input
{
    "walletAddress": "0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990"
}
Output
{
    "data": {
        "walletScores": {
            "web3ReputationScore": 70.0,
            "authenticityScore": 50.0
        }
    }
}

Last updated