Open teddyjfpender opened 11 months ago
Some of the GraphQL provider queries have deprecated fields. We must remove them and use the proper fields.
For example in AccountInfoProvider's query:
AccountInfoProvider
export const getAccountBalance = ` query accountBalance($publicKey: PublicKey!) { account(publicKey: $publicKey) { balance { total }, nonce inferredNonce delegate publicKey } } `
The delegate field is deprecated & should be replaced with delegateAccount.
delegate
delegateAccount
so we basically have to replace delegate with delegateAccount? correct me if wrong
Some of the GraphQL provider queries have deprecated fields. We must remove them and use the proper fields.
For example in
AccountInfoProvider
's query:The
delegate
field is deprecated & should be replaced withdelegateAccount
.