parseFullAccountBoc function

Future<FullContractState?> parseFullAccountBoc(
  1. String account
)

account - base64-encoded boc after executeLocal

Implementation

Future<FullContractState?> parseFullAccountBoc(String account) async {
  final state = await createLib().parseFullAccountBoc(account: account);
  if (state == null) return null;

  return FullContractState.fromJson(jsonDecode(state));
}