Пример #1
0
 /// <summary>
 ///     Register an address for the token specified by TokenUID. Registered addresses, like
 ///     created addresses, are monitored for incoming transfers of the token specified via TokenUID.
 ///     When new tokens are transferred into the address, you are alerted via the token/transfer webhook
 ///     callback.
 /// </summary>
 /// <param name="request">The request.</param>
 /// <returns>The response that was returned by the API.</returns>
 public Task <RegisterAddressResponse> RegisterAddressAsync(RegisterAddressRequest request)
 {
     return(PostAsync <RegisterAddressRequest, RegisterAddressResponse>(@"register_address", request));
 }
Пример #2
0
 /// <summary>
 ///     Register an address for the token specified by TokenUID. Registered addresses, like
 ///     created addresses, are monitored for incoming transfers of the token specified via TokenUID.
 ///     When new tokens are transferred into the address, you are alerted via the token/transfer webhook
 ///     callback.
 /// </summary>
 /// <param name="request">The request.</param>
 /// <returns>The response that was returned by the API.</returns>
 public RegisterAddressResponse RegisterAddress(RegisterAddressRequest request)
 {
     return(Post <RegisterAddressRequest, RegisterAddressResponse>(@"register_address", request));
 }