fromCurve static method

List<SubstrateCoins> fromCurve(
  1. EllipticCurveTypes type
)
override

Implementation

static List<SubstrateCoins> fromCurve(EllipticCurveTypes type) {
  return _coinToConf.entries
      .where((element) => element.value.type == type)
      .map((e) => e.key)
      .toList();
}