getMultipleAccountsRaw method

Future<JsonRpcContextResponse<List<AccountInfo?>>> getMultipleAccountsRaw(
  1. List<Pubkey> pubkeys, {
  2. GetMultipleAccountsConfig? config,
})
inherited

Returns the account information for a list of Pubkeys.

Implementation

Future<JsonRpcContextResponse<List<AccountInfo?>>> getMultipleAccountsRaw(
  final List<Pubkey> pubkeys, {
  final GetMultipleAccountsConfig? config,
}) => send(GetMultipleAccounts.map(pubkeys, config: config));