Interface ITestnetClient
Testnet API client interface
Inherited Members
Namespace: VEDriversLite.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public interface ITestnetClient : IClient
Methods
| Improve this Doc View SourceGetFaucetAsync(String, Nullable<Double>)
Withdraws testnet NEBL to the specified address
Declaration
Task<GetFaucetResponse> GetFaucetAsync(string address, double? amount)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Your Neblio Testnet Address |
System.Nullable<System.Double> | amount | Amount of NEBL to withdrawal in satoshis |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetFaucetResponse> | Object containing the transaction ID of the withdrawal. |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetFaucetAsync(String, Nullable<Double>, CancellationToken)
Withdraws testnet NEBL to the specified address
Declaration
Task<GetFaucetResponse> GetFaucetAsync(string address, double? amount, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Your Neblio Testnet Address |
System.Nullable<System.Double> | amount | Amount of NEBL to withdrawal in satoshis |
System.Threading.CancellationToken | cancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetFaucetResponse> | Object containing the transaction ID of the withdrawal. |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |