Пример #1
0
 /// <summary>
 /// Looks up transactions.
 /// </summary>
 /// <param name="limit">limit</param>
 /// <param name="keyLevel">keyLevel</param>
 /// <param name="offset">offset</param>
 /// <param name="startDate">inclusive lower bound of transaction booking date</param>
 /// <param name="endDate">inclusive upper bound of transaction booking date</param>
 /// <returns>paged list of transactions</returns>
 public Task <PagedList <Transaction> > GetTransactions(
     string accountId,
     int limit,
     Key.Types.Level keyLevel,
     string offset    = null,
     string startDate = null,
     string endDate   = null)
 {
     return(client.GetTransactions(accountId, limit, keyLevel, offset, startDate, endDate));
 }
Пример #2
0
 public static KeyPair GenerateKeyPair(Key.Types.Level level)
 {
     return(ed255519KeyGen.GenerateKeyPair().ParseEd25519KeyPair(level));
 }