listCoins method

Future<Page<CoinData>> listCoins(
  1. String owner, {
  2. String coinType = '0x2::sui::SUI',
  3. String? cursor,
  4. int? limit,
})

Implementation

Future<Page<CoinData>> listCoins(
  String owner, {
  String coinType = '0x2::sui::SUI',
  String? cursor,
  int? limit,
}) {
  return core.listCoins(
    owner,
    coinType: coinType,
    cursor: cursor,
    limit: limit,
  );
}