Exemplo n.º 1
0
 public TezosSwap(
     TezosAccount account,
     ICurrencies currencies)
     : base(account.Currency, currencies)
 {
     _account = account ?? throw new ArgumentNullException(nameof(account));
 }
Exemplo n.º 2
0
 public FA12Swap(
     FA12Account account,
     TezosAccount tezosAccount,
     ISwapClient swapClient,
     ICurrencies currencies)
     : base(account, swapClient, currencies)
 {
     TezosAccount = tezosAccount ?? throw new ArgumentNullException(nameof(account));
 }
Exemplo n.º 3
0
 public Fa12Swap(
     Fa12Account account,
     TezosAccount tezosAccount,
     ICurrencies currencies)
     : base(account.Currency, currencies)
 {
     Fa12Account  = account ?? throw new ArgumentNullException(nameof(account));
     TezosAccount = tezosAccount ?? throw new ArgumentNullException(nameof(account));
 }