Add balances to squid accounts

Comment récupérer le solde total (incluant les DU non réclamés) ?

query MyQuery {
  account(where: {id: {_eq: "g1QEs1J7Z6wpXZUe3t3KxYmhbXUeUJx283YJpu9uZrWEcZzJP"}}) {
    balance
    totalBalance
    id
    identity {
      name
    }
  }
}

J’obtiens deux zéros :frowning:

{
  "data": {
    "account": [
      {
        "balance": 0,
        "totalBalance": 0,
        "id": "g1QEs1J7Z6wpXZUe3t3KxYmhbXUeUJx283YJpu9uZrWEcZzJP",
        "identity": {
          "name": "moul"
        }
      }
    ]
  }
}
2 Likes