예제 #1
0
 /// <summary>
 ///     Get the status and transaction hash of a Mobius managed token transfer.
 /// </summary>
 /// <param name="requests">The request.</param>
 /// <returns>The response that was returned by the API.</returns>
 public Task <TransferInfoResponse> GetTransferInfoAsync(TransferInfoRequest request)
 {
     return(GetAsync <TransferInfoRequest, TransferInfoResponse>(@"transfer/info", request));
 }
예제 #2
0
 /// <summary>
 ///     Get the status and transaction hash of a Mobius managed token transfer.
 /// </summary>
 /// <param name="requests">The request.</param>
 /// <returns>The response that was returned by the API.</returns>
 public TransferInfoResponse GetTransferInfo(TransferInfoRequest request)
 {
     return(Get <TransferInfoRequest, TransferInfoResponse>(@"transfer/info", request));
 }