Exemple #1
0
 public static CurrencyWallet Create(CurrencyType currencyType, string address = "")
 {
     address ??= Rand.RandomString();
     return(CurrencyWalletRepository.Create(address, currencyType));
 }