Polkadot.js api how to get the balance of an account at a particular nonce

1.1k Views Asked by At

I am trying to get the balance of a wallet account using the wallet address and it's nonce. For example I can get the latest balance and the total number of nonce of a wallet address with this.

const { nonce, data: balance } = await api.query.system.account(ADDR); console.log(balance of account is ${balance.free} and a nonce of ${nonce});

I'd like to get the balance of an address at a particular nonce like.

get the balance of account x at nonce number y

Thank you for reading.

0

There are 0 best solutions below