getAccountInfoRaw method
Future<JsonRpcContextResponse<AccountInfo?> >
getAccountInfoRaw(
- Pubkey pubkey, {
- GetAccountInfoConfig? config,
Returns all information associated with the account of the provided pubkey
.
Implementation
Future<JsonRpcContextResponse<AccountInfo?>> getAccountInfoRaw(
final Pubkey pubkey, {
final GetAccountInfoConfig? config,
}) =>
send(GetAccountInfo(pubkey, config: config));