Interface IClient
Neblio API client interface
Namespace: VEDriversLite.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public interface IClient
Methods
| Improve this Doc View SourceBroadcastTxAsync(BroadcastTxRequest)
Broadcasts a signed raw transaction to the network
Declaration
Task<BroadcastTxResponse> BroadcastTxAsync(BroadcastTxRequest body)
Parameters
Type | Name | Description |
---|---|---|
BroadcastTxRequest | body |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BroadcastTxResponse> | An object containing the TXID if the broadcast was successful |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
BroadcastTxAsync(BroadcastTxRequest, CancellationToken)
Broadcasts a signed raw transaction to the network
Declaration
Task<BroadcastTxResponse> BroadcastTxAsync(BroadcastTxRequest body, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
BroadcastTxRequest | body | |
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<BroadcastTxResponse> | An object containing the TXID if the broadcast was successful |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
BurnTokenAsync(BurnTokenRequest)
Builds a transaction that burns an NTP1 Token
Declaration
Task<BurnTokenResponse> BurnTokenAsync(BurnTokenRequest body)
Parameters
Type | Name | Description |
---|---|---|
BurnTokenRequest | body |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BurnTokenResponse> | An object representing the tx to burn the token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
BurnTokenAsync(BurnTokenRequest, CancellationToken)
Builds a transaction that burns an NTP1 Token
Declaration
Task<BurnTokenResponse> BurnTokenAsync(BurnTokenRequest body, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
BurnTokenRequest | body | |
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<BurnTokenResponse> | An object representing the tx to burn the token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressAsync(String)
Returns address object
Declaration
Task<GetAddressResponse> GetAddressAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetAddressResponse> | Object containing address info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressAsync(String, CancellationToken)
Returns address object
Declaration
Task<GetAddressResponse> GetAddressAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<GetAddressResponse> | Object containing address info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressBalanceAsync(String)
Returns address balance in sats
Declaration
Task<double> GetAddressBalanceAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Double> | Address balance |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressBalanceAsync(String, CancellationToken)
Returns address balance in sats
Declaration
Task<double> GetAddressBalanceAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<System.Double> | Address balance |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressInfoAsync(String)
Information On a Neblio Address
Declaration
Task<GetAddressInfoResponse> GetAddressInfoAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Neblio Address to get information on. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetAddressInfoResponse> | An object with an array of UTXOs for this address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressInfoAsync(String, CancellationToken)
Information On a Neblio Address
Declaration
Task<GetAddressInfoResponse> GetAddressInfoAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Neblio Address to get information on. |
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<GetAddressInfoResponse> | An object with an array of UTXOs for this address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressTotalReceivedAsync(String)
Returns total received by address in sats
Declaration
Task<double> GetAddressTotalReceivedAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Double> | Total received by address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressTotalReceivedAsync(String, CancellationToken)
Returns total received by address in sats
Declaration
Task<double> GetAddressTotalReceivedAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<System.Double> | Total received by address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressTotalSentAsync(String)
Returns total sent by address in sats
Declaration
Task<double> GetAddressTotalSentAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Double> | Total sent by address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressTotalSentAsync(String, CancellationToken)
Returns total sent by address in sats
Declaration
Task<double> GetAddressTotalSentAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<System.Double> | Total sent by address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressUnconfirmedBalanceAsync(String)
Returns address unconfirmed balance in sats
Declaration
Task<double> GetAddressUnconfirmedBalanceAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Double> | Address unconfirmed balance |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressUnconfirmedBalanceAsync(String, CancellationToken)
Returns address unconfirmed balance in sats
Declaration
Task<double> GetAddressUnconfirmedBalanceAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<System.Double> | Address unconfirmed balance |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressUtxosAsync(String)
Returns all UTXOs at a given address
Declaration
Task<ICollection<Anonymous>> GetAddressUtxosAsync(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.ICollection<Anonymous>> | UTXOs at an address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetAddressUtxosAsync(String, CancellationToken)
Returns all UTXOs at a given address
Declaration
Task<ICollection<Anonymous>> GetAddressUtxosAsync(string address, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
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<System.Collections.Generic.ICollection<Anonymous>> | UTXOs at an address |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetBlockAsync(String)
Returns information regarding a Neblio block
Declaration
Task<GetBlockResponse> GetBlockAsync(string blockhash)
Parameters
Type | Name | Description |
---|---|---|
System.String | blockhash | Block Hash |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetBlockResponse> | Object containing all information on a blockchain block |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetBlockAsync(String, CancellationToken)
Returns information regarding a Neblio block
Declaration
Task<GetBlockResponse> GetBlockAsync(string blockhash, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | blockhash | Block Hash |
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<GetBlockResponse> | Object containing all information on a blockchain block |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetBlockIndexAsync(Double)
Returns block hash of block
Declaration
Task<GetBlockIndexResponse> GetBlockIndexAsync(double blockindex)
Parameters
Type | Name | Description |
---|---|---|
System.Double | blockindex | Block Index |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetBlockIndexResponse> | Object containing block hash |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetBlockIndexAsync(Double, CancellationToken)
Returns block hash of block
Declaration
Task<GetBlockIndexResponse> GetBlockIndexAsync(double blockindex, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.Double | blockindex | Block Index |
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<GetBlockIndexResponse> | Object containing block hash |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetRawTxAsync(String)
Returns raw transaction hex
Declaration
Task<GetRawTxResponse> GetRawTxAsync(string txid)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Transaction ID |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetRawTxResponse> | Object containing raw hex of transaction |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetRawTxAsync(String, CancellationToken)
Returns raw transaction hex
Declaration
Task<GetRawTxResponse> GetRawTxAsync(string txid, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Transaction ID |
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<GetRawTxResponse> | Object containing raw hex of transaction |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetStatusAsync(String)
Utility API for calling several blockchain node functions
Declaration
Task<GetStatusResponse> GetStatusAsync(string q)
Parameters
Type | Name | Description |
---|---|---|
System.String | q | Function to call, getInfo, getDifficulty, getBestBlockHash, or getLastBlockHash |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetStatusResponse> | Function Response |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetStatusAsync(String, CancellationToken)
Utility API for calling several blockchain node functions
Declaration
Task<GetStatusResponse> GetStatusAsync(string q, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | q | Function to call, getInfo, getDifficulty, getBestBlockHash, or getLastBlockHash |
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<GetStatusResponse> | Function Response |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetSyncAsync()
Get node sync status
Declaration
Task<GetSyncResponse> GetSyncAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetSyncResponse> | Sync Info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetSyncAsync(CancellationToken)
Get node sync status
Declaration
Task<GetSyncResponse> GetSyncAsync(CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
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<GetSyncResponse> | Sync Info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenHoldersAsync(String)
Get Addresses Holding a Token
Declaration
Task<GetTokenHoldersResponse> GetTokenHoldersAsync(string tokenid)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTokenHoldersResponse> | An object containing all of the addresses holding a token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenHoldersAsync(String, CancellationToken)
Get Addresses Holding a Token
Declaration
Task<GetTokenHoldersResponse> GetTokenHoldersAsync(string tokenid, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
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<GetTokenHoldersResponse> | An object containing all of the addresses holding a token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenIdAsync(String)
Returns the tokenId representing a token
Declaration
Task<GetTokenIdResponse> GetTokenIdAsync(string tokensymbol)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokensymbol | Token symbol |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTokenIdResponse> | Object containing the token symbol and ID, if token symbol does not exist on network, empty object is returned. |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenIdAsync(String, CancellationToken)
Returns the tokenId representing a token
Declaration
Task<GetTokenIdResponse> GetTokenIdAsync(string tokensymbol, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokensymbol | Token symbol |
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<GetTokenIdResponse> | Object containing the token symbol and ID, if token symbol does not exist on network, empty object is returned. |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenMetadataAsync(String, Nullable<Double>)
Get Metadata of Token
Declaration
Task<GetTokenMetadataResponse> GetTokenMetadataAsync(string tokenid, double? verbosity)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
System.Nullable<System.Double> | verbosity | 0 (Default) is fastest, 1 contains token stats, 2 contains token holding addresses |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTokenMetadataResponse> | An object containing the metadata of a token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenMetadataAsync(String, Nullable<Double>, CancellationToken)
Get Metadata of Token
Declaration
Task<GetTokenMetadataResponse> GetTokenMetadataAsync(string tokenid, double? verbosity, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
System.Nullable<System.Double> | verbosity | 0 (Default) is fastest, 1 contains token stats, 2 contains token holding addresses |
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<GetTokenMetadataResponse> | An object containing the metadata of a token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenMetadataOfUtxoAsync(String, String, Nullable<Double>)
Get UTXO Metadata of Token
Declaration
Task<GetTokenMetadataResponse> GetTokenMetadataOfUtxoAsync(string tokenid, string utxo, double? verbosity)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
System.String | utxo | Specific UTXO to request metadata for |
System.Nullable<System.Double> | verbosity | 0 (Default) is fastest, 1 contains token stats, 2 contains token holding addresses |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTokenMetadataResponse> | An object containing the metadata of a token for a UTXO |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTokenMetadataOfUtxoAsync(String, String, Nullable<Double>, CancellationToken)
Get UTXO Metadata of Token
Declaration
Task<GetTokenMetadataResponse> GetTokenMetadataOfUtxoAsync(string tokenid, string utxo, double? verbosity, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | tokenid | TokenId to request metadata for |
System.String | utxo | Specific UTXO to request metadata for |
System.Nullable<System.Double> | verbosity | 0 (Default) is fastest, 1 contains token stats, 2 contains token holding addresses |
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<GetTokenMetadataResponse> | An object containing the metadata of a token for a UTXO |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTransactionInfoAsync(String)
Information On an NTP1 Transaction
Declaration
Task<GetTransactionInfoResponse> GetTransactionInfoAsync(string txid)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Neblio txid to get information on. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTransactionInfoResponse> | An object represending this transaction |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTransactionInfoAsync(String, CancellationToken)
Information On an NTP1 Transaction
Declaration
Task<GetTransactionInfoResponse> GetTransactionInfoAsync(string txid, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Neblio txid to get information on. |
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<GetTransactionInfoResponse> | An object represending this transaction |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTxAsync(String)
Returns transaction object
Declaration
Task<GetTxResponse> GetTxAsync(string txid)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Transaction ID |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTxResponse> | Object containing transaction info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTxAsync(String, CancellationToken)
Returns transaction object
Declaration
Task<GetTxResponse> GetTxAsync(string txid, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | txid | Transaction ID |
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<GetTxResponse> | Object containing transaction info |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTxsAsync(String, String, Nullable<Double>)
Get transactions by block or address
Declaration
Task<GetTxsResponse> GetTxsAsync(string address, string block, double? pageNum)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
System.String | block | Block Hash |
System.Nullable<System.Double> | pageNum | Page number to display |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GetTxsResponse> | List of transactions |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
GetTxsAsync(String, String, Nullable<Double>, CancellationToken)
Get transactions by block or address
Declaration
Task<GetTxsResponse> GetTxsAsync(string address, string block, double? pageNum, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | Address |
System.String | block | Block Hash |
System.Nullable<System.Double> | pageNum | Page number to display |
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<GetTxsResponse> | List of transactions |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
IssueTokenAsync(IssueTokenRequest)
Builds a transaction that issues a new NTP1 Token
Declaration
Task<IssueTokenResponse> IssueTokenAsync(IssueTokenRequest body)
Parameters
Type | Name | Description |
---|---|---|
IssueTokenRequest | body |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<IssueTokenResponse> | An object representing the token created |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
IssueTokenAsync(IssueTokenRequest, CancellationToken)
Builds a transaction that issues a new NTP1 Token
Declaration
Task<IssueTokenResponse> IssueTokenAsync(IssueTokenRequest body, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
IssueTokenRequest | body | |
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<IssueTokenResponse> | An object representing the token created |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
SendTokenAsync(SendTokenRequest)
Builds a transaction that sends an NTP1 Token
Declaration
Task<SendTokenResponse> SendTokenAsync(SendTokenRequest body)
Parameters
Type | Name | Description |
---|---|---|
SendTokenRequest | body |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<SendTokenResponse> | An object representing the tx to send the token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
SendTokenAsync(SendTokenRequest, CancellationToken)
Builds a transaction that sends an NTP1 Token
Declaration
Task<SendTokenResponse> SendTokenAsync(SendTokenRequest body, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
SendTokenRequest | body | |
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<SendTokenResponse> | An object representing the tx to send the token |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
SendTxAsync(BroadcastTxRequest)
Broadcasts a signed raw transaction to the network (not NTP1 specific)
Declaration
Task<BroadcastTxResponse> SendTxAsync(BroadcastTxRequest body)
Parameters
Type | Name | Description |
---|---|---|
BroadcastTxRequest | body |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BroadcastTxResponse> | An object containing the TXID if the broadcast was successful |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |
SendTxAsync(BroadcastTxRequest, CancellationToken)
Broadcasts a signed raw transaction to the network (not NTP1 specific)
Declaration
Task<BroadcastTxResponse> SendTxAsync(BroadcastTxRequest body, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
BroadcastTxRequest | body | |
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<BroadcastTxResponse> | An object containing the TXID if the broadcast was successful |
Exceptions
Type | Condition |
---|---|
ApiException | A server side error occurred. |