Generated by DocFX

Interface ITestnetClient

Testnet API client interface

Inherited Members
IClient.GetTokenIdAsync(String)
IClient.GetTokenIdAsync(String, CancellationToken)
IClient.BroadcastTxAsync(BroadcastTxRequest)
IClient.BroadcastTxAsync(BroadcastTxRequest, CancellationToken)
IClient.GetAddressInfoAsync(String)
IClient.GetAddressInfoAsync(String, CancellationToken)
IClient.GetTransactionInfoAsync(String)
IClient.GetTransactionInfoAsync(String, CancellationToken)
IClient.GetTokenMetadataAsync(String, Nullable<Double>)
IClient.GetTokenMetadataAsync(String, Nullable<Double>, CancellationToken)
IClient.GetTokenMetadataOfUtxoAsync(String, String, Nullable<Double>)
IClient.GetTokenMetadataOfUtxoAsync(String, String, Nullable<Double>, CancellationToken)
IClient.GetTokenHoldersAsync(String)
IClient.GetTokenHoldersAsync(String, CancellationToken)
IClient.IssueTokenAsync(IssueTokenRequest)
IClient.IssueTokenAsync(IssueTokenRequest, CancellationToken)
IClient.SendTokenAsync(SendTokenRequest)
IClient.SendTokenAsync(SendTokenRequest, CancellationToken)
IClient.BurnTokenAsync(BurnTokenRequest)
IClient.BurnTokenAsync(BurnTokenRequest, CancellationToken)
IClient.SendTxAsync(BroadcastTxRequest)
IClient.SendTxAsync(BroadcastTxRequest, CancellationToken)
IClient.GetBlockAsync(String)
IClient.GetBlockAsync(String, CancellationToken)
IClient.GetBlockIndexAsync(Double)
IClient.GetBlockIndexAsync(Double, CancellationToken)
IClient.GetTxAsync(String)
IClient.GetTxAsync(String, CancellationToken)
IClient.GetRawTxAsync(String)
IClient.GetRawTxAsync(String, CancellationToken)
IClient.GetAddressAsync(String)
IClient.GetAddressAsync(String, CancellationToken)
IClient.GetAddressBalanceAsync(String)
IClient.GetAddressBalanceAsync(String, CancellationToken)
IClient.GetAddressUnconfirmedBalanceAsync(String)
IClient.GetAddressUnconfirmedBalanceAsync(String, CancellationToken)
IClient.GetAddressTotalReceivedAsync(String)
IClient.GetAddressTotalReceivedAsync(String, CancellationToken)
IClient.GetAddressUtxosAsync(String)
IClient.GetAddressUtxosAsync(String, CancellationToken)
IClient.GetAddressTotalSentAsync(String)
IClient.GetAddressTotalSentAsync(String, CancellationToken)
IClient.GetTxsAsync(String, String, Nullable<Double>)
IClient.GetTxsAsync(String, String, Nullable<Double>, CancellationToken)
IClient.GetSyncAsync()
IClient.GetSyncAsync(CancellationToken)
IClient.GetStatusAsync(String)
IClient.GetStatusAsync(String, CancellationToken)
Namespace: VEDriversLite.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public interface ITestnetClient : IClient

Methods

| Improve this Doc View Source

GetFaucetAsync(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.

| Improve this Doc View Source

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.