getTokenAccountsByDelegateRaw method

Future<JsonRpcContextResponse<List<TokenAccount>>> getTokenAccountsByDelegateRaw(
  1. Pubkey delegate, {
  2. required TokenAccountsFilter filter,
  3. GetTokenAccountsByDelegateConfig? config,
})

Returns all SPL Token accounts approved by delegate.

Implementation

Future<JsonRpcContextResponse<List<TokenAccount>>>
getTokenAccountsByDelegateRaw(
  final Pubkey delegate, {
  required final TokenAccountsFilter filter,
  final GetTokenAccountsByDelegateConfig? config,
}) => send(
  GetTokenAccountsByDelegate(delegate, filter: filter, config: config),
);