getOwnedObjectsShowAllOptions method

Future<PaginatedObjectsResponse> getOwnedObjectsShowAllOptions(
  1. String address, {
  2. Map<String, dynamic>? filter,
  3. int limit = 50,
  4. String? cursor,
})

Implementation

Future<PaginatedObjectsResponse> getOwnedObjectsShowAllOptions(String address, {
  Map<String,dynamic>? filter,
  int limit = 50,
  String? cursor,
}) async {
  final options = SuiObjectDataOptions(
    showBcs: true,
    showContent: true,
    showDisplay: true,
    showOwner: true,
    showPreviousTransaction: true,
    showStorageRebate: true,
    showType: true
  );
  return await getOwnedObjects(
    address,
    filter: filter,
    options: options,
    limit: limit,
    cursor: cursor);
}