CryptoAPIs 1.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package CryptoAPIs --version 1.5.1
NuGet\Install-Package CryptoAPIs -Version 1.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CryptoAPIs" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CryptoAPIs --version 1.5.1
#r "nuget: CryptoAPIs, 1.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CryptoAPIs as a Cake Addin
#addin nuget:?package=CryptoAPIs&version=1.5.1

// Install CryptoAPIs as a Cake Tool
#tool nuget:?package=CryptoAPIs&version=1.5.1

CryptoAPIs - the C# library for the CryptoAPIs

Crypto APIs 2.0 is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs 2.0 can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain applications. Crypto APIs 2.0 provides unified endpoints and data, raw data, automatic tokens and coins forwardings, callback functionalities, and much more.

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.0.0
  • SDK version: 1.5.1
  • Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen For more information, please visit https://cryptoapis.io

<a name="frameworks-supported"></a>

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext

<a name="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742. NOTE: RestSharp for .Net Core creates a new socket for each api call, which can lead to a socket exhaustion problem. See RestSharp#1406.

<a name="installation"></a>

Installation

Generate the DLL using your preferred tool (e.g. dotnet build)

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using CryptoAPIs.Api;
using CryptoAPIs.Client;
using CryptoAPIs.Model;

<a name="usage"></a>

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

<a name="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using CryptoAPIs.Api;
using CryptoAPIs.Client;
using CryptoAPIs.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "https://rest.cryptoapis.io/v2";
            // Configure API key authorization: ApiKey
            config.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new AssetsApi(config);
            var assetId = 5b1ea92e584bf50020130612;  // string | Defines the unique ID of the specific asset.
            var context = yourExampleString;  // string | In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. `context` is specified by the user. (optional) 

            try
            {
                // Get Asset Details By Asset ID
                GetAssetDetailsByAssetIDR result = apiInstance.GetAssetDetailsByAssetID(assetId, context);
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling AssetsApi.GetAssetDetailsByAssetID: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

<a name="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to https://rest.cryptoapis.io/v2

Class Method HTTP request Description
AssetsApi GetAssetDetailsByAssetID GET /market-data/assets/assetId/{assetId} Get Asset Details By Asset ID
AssetsApi GetAssetDetailsByAssetSymbol GET /market-data/assets/{assetSymbol} Get Asset Details By Asset Symbol
AssetsApi ListAssetsDetails GET /market-data/assets/details List Assets Details
AutomaticCoinsForwardingApi CreateAutomaticCoinsForwarding POST /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations Create Automatic Coins Forwarding
AutomaticCoinsForwardingApi DeleteAutomaticCoinsForwarding DELETE /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations/{referenceId} Delete Automatic Coins Forwarding
AutomaticCoinsForwardingApi ListCoinsForwardingAutomations GET /blockchain-automations/{blockchain}/{network}/coins-forwarding/automations List Coins Forwarding Automations
AutomaticTokensForwardingApi AddTokensToExistingFromAddress POST /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/add-token Add Tokens To Existing fromAddress
AutomaticTokensForwardingApi CreateAutomaticTokensForwarding POST /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations Create Automatic Tokens Forwarding
AutomaticTokensForwardingApi DeleteAutomaticTokensForwarding DELETE /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations/{referenceId} Delete Automatic Tokens Forwarding
AutomaticTokensForwardingApi GetFeeAddressDetails GET /blockchain-automations/{blockchain}/{network}/tokens-forwarding/fee-addresses Get Fee Address Details
AutomaticTokensForwardingApi ListTokensForwardingAutomations GET /blockchain-automations/{blockchain}/{network}/tokens-forwarding/automations List Tokens Forwarding Automations
CallbackDataApi GetAddressDetailsFromCallback GET /blockchain-events/{blockchain}/{network}/addresses/{address} Get Address Details From Callback
CallbackDataApi GetBlockDetailsByBlockHashFromCallback GET /blockcain-events/{blockchain}/{network}/blocks/hash/{blockHash} Get Block Details By Block Hash From Callback
CallbackDataApi GetBlockDetailsByBlockHeightFromCallback GET /blockcain-events/{blockchain}/{network}/blocks/height/{blockHeight} Get Block Details By Block Height From Callback
CallbackDataApi GetTransactionDetailsByTransactionIDFromCallback GET /blockchain-events/{blockchain}/{network}/transactions/{transactionId} Get Transaction Details By Transaction ID From Callback
CreateSubscriptionsForApi MinedTransaction POST /blockchain-events/{blockchain}/{network}/subscriptions/transaction-mined Mined transaction
CreateSubscriptionsForApi NewBlock POST /blockchain-events/{blockchain}/{network}/subscriptions/block-mined New Block
CreateSubscriptionsForApi NewConfirmedCoinsTransactions POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmed New confirmed coins transactions
CreateSubscriptionsForApi NewConfirmedCoinsTransactionsAndEachConfirmation POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-confirmed-each-confirmation New confirmed coins transactions and each confirmation
CreateSubscriptionsForApi NewConfirmedInternalTransactions POST /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmed New confirmed internal transactions
CreateSubscriptionsForApi NewConfirmedInternalTransactionsAndEachConfirmation POST /blockchain-events/{blockchain}/{network}/subscriptions/address-internal-transactions-confirmed-each-confirmation New confirmed internal transactions and each confirmation
CreateSubscriptionsForApi NewConfirmedTokensTransactions POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmed New confirmed tokens transactions
CreateSubscriptionsForApi NewConfirmedTokensTransactionsAndEachConfirmation POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-confirmed-each-confirmation New confirmed tokens transactions and each confirmation
CreateSubscriptionsForApi NewUnconfirmedCoinsTransactions POST /blockchain-events/{blockchain}/{network}/subscriptions/address-coins-transactions-unconfirmed New unconfirmed coins transactions
CreateSubscriptionsForApi NewUnconfirmedTokensTransactions POST /blockchain-events/{blockchain}/{network}/subscriptions/address-tokens-transactions-unconfirmed New unconfirmed tokens transactions
ExchangeRatesApi GetExchangeRateByAssetSymbols GET /market-data/exchange-rates/by-symbols/{fromAssetSymbol}/{toAssetSymbol} Get Exchange Rate By Asset Symbols
ExchangeRatesApi GetExchangeRateByAssetsIDs GET /market-data/exchange-rates/by-asset-ids/{fromAssetId}/{toAssetId} Get Exchange Rate By Assets IDs
FeaturesApi BroadcastLocallySignedTransaction POST /blockchain-tools/{blockchain}/{network}/transactions/broadcast Broadcast Locally Signed Transaction
FeaturesApi DecodeRawTransactionHex POST /blockchain-tools/{blockchain}/{network}/decode-raw-transaction Decode Raw Transaction Hex
FeaturesApi DecodeXAddress GET /blockchain-tools/{blockchain}/{network}/decode-x-address/{xAddress} Decode X-Address
FeaturesApi DeriveHDWalletXPubYPubZPubChangeOrReceivingAddresses GET /blockchain-tools/{blockchain}/{network}/hd/{extendedPublicKey}/addresses/derive-address Derive HD Wallet (xPub, yPub, zPub) Change Or Receiving Addresses
FeaturesApi EncodeXAddress GET /blockchain-tools/{blockchain}/{network}/encode-x-address/{classicAddress}/{addressTag} Encode X-Address
FeaturesApi EstimateGasLimit POST /blockchain-tools/{blockchain}/{network}/gas-limit Estimate Gas Limit
FeaturesApi EstimateTokenGasLimit POST /blockchain-tools/{blockchain}/{network}/gas-limit/contract Estimate Token Gas Limit
FeaturesApi GetEIP1559FeeRecommendations GET /blockchain-tools/{blockchain}/{network}/fees/eip1559 Get EIP 1559 Fee Recommendations
FeaturesApi ValidateAddress POST /blockchain-tools/{blockchain}/{network}/addresses/validate Validate Address
GeneratingApi GenerateDepositAddress POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses Generate Deposit Address
HDWalletsApi GetHDWalletXPubYPubZPubAssets GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/assets Get HD Wallet (xPub, yPub, zPub) Assets
HDWalletsApi GetHDWalletXPubYPubZPubDetails GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/details Get HD Wallet (xPub, yPub, zPub) Details
HDWalletsApi ListHDWalletXPubYPubZPubTransactions GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/transactions List HD Wallet (xPub, yPub, zPub) Transactions
HDWalletsApi ListHDWalletXPubYPubZPubUTXOs GET /blockchain-data/{blockchain}/{network}/hd/{extendedPublicKey}/utxos List HD Wallet (xPub, yPub, zPub) UTXOs
HDWalletsApi SyncHDWalletXPubYPubZPub POST /blockchain-data/{blockchain}/{network}/hd/sync Sync HD Wallet (xPub, yPub, zPub)
InformativeApi GetTransactionRequestDetails GET /wallet-as-a-service/transactionRequests/{transactionRequestId} Get Transaction Request Details
InformativeApi GetWalletAssetDetails GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network} Get Wallet Asset Details
InformativeApi GetWalletTransactionDetailsByTransactionID GET /wallet-as-a-service/wallets/{blockchain}/{network}/transactions/{transactionId} Get Wallet Transaction Details By Transaction ID
InformativeApi ListAllAssetsByWalletID GET /wallet-as-a-service/wallets/{walletId}/assets List All Assets By Wallet ID
InformativeApi ListAllAssetsFromAllWallets GET /wallet-as-a-service/wallets/all-assets List All Assets From All Wallets
InformativeApi ListDepositAddresses GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses List Deposit Addresses
InformativeApi ListSupportedTokens GET /wallet-as-a-service/info/{blockchain}/{network}/supported-tokens List Supported Tokens
InformativeApi ListWalletTransactions GET /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transactions List Wallet Transactions
InternalApi GetInternalTransactionByTransactionHashAndOperationId GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internal/{operationId} Get Internal Transaction by Transaction Hash and Operation Id
InternalApi ListInternalTransactionDetailsByTransactionHash GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internal List Internal Transaction Details by Transaction Hash
InternalApi ListInternalTransactionsByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/internal List Internal Transactions By Address
ManageSubscriptionsApi ActivateBlockchainEventSubscription POST /blockchain-events/subscriptions/{referenceId}/activate Activate Blockchain Event Subscription
ManageSubscriptionsApi DeleteBlockchainEventSubscription DELETE /blockchain-events/{blockchain}/{network}/subscriptions/{referenceId} Delete Blockchain Event Subscription
ManageSubscriptionsApi GetBlockchainEventSubscriptionDetailsByReferenceID GET /blockchain-events/subscriptions/{referenceId} Get Blockchain Event Subscription Details By Reference ID
ManageSubscriptionsApi ListBlockchainEventsSubscriptions GET /blockchain-events/{blockchain}/{network}/subscriptions List Blockchain Events Subscriptions
MetadataApi ListSupportedAssets GET /market-data/assets/supported List Supported Assets
OmniLayerApi GetOmniTransactionDetailsByTransactionIDTxid GET /blockchain-data/{blockchain}/{network}/omni/transactions/{transactionId} Get Omni Transaction Details By Transaction ID (Txid)
OmniLayerApi GetUnconfirmedOmniTransactionByTransactionIDTxid GET /blockchain-data/{blockchain}/{network}/omni/transactions-unconfirmed/{transactionId} Get Unconfirmed Omni Transaction By Transaction ID (Txid)
OmniLayerApi ListOmniTokensByAddress GET /blockchain-data/{blockchain}/{network}/omni/addresses/{address} List Omni Tokens By Address
OmniLayerApi ListOmniTransactionsByAddress GET /blockchain-data/{blockchain}/{network}/omni/addresses/{address}/transactions List Omni Transactions By Address
OmniLayerApi ListOmniTransactionsByBlockHash GET /blockchain-data/{blockchain}/{network}/omni/blocks/hash/{blockHash}/transactions List Omni Transactions By Block Hash
OmniLayerApi ListOmniTransactionsByBlockHeight GET /blockchain-data/{blockchain}/{network}/omni/blocks/height/{blockHeight}/transactions List Omni Transactions By Block Height
OmniLayerApi ListUnconfirmedOmniTransactionsByAddress GET /blockchain-data/{blockchain}/{network}/omni/address-transactions-unconfirmed/{address} List Unconfirmed Omni Transactions By Address
OmniLayerApi ListUnconfirmedOmniTransactionsByPropertyID GET /blockchain-data/{blockchain}/{network}/omni/properties/{propertyId}/transactions List Unconfirmed Omni Transactions By Property ID
TokensApi GetTokenDetailsByContractAddress GET /blockchain-data/{blockchain}/{network}/addresses/{contractAddress}/contract Get Token Details by Contract Address
TokensApi ListConfirmedTokensTransfersByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers List Confirmed Tokens Transfers By Address
TokensApi ListTokensByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens List Tokens By Address
TokensApi ListTokensTransfersByTransactionHash GET /blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/tokens-transfers List Tokens Transfers By Transaction Hash
TokensApi ListUnconfirmedTokensTransfersByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-unconfirmed List Unconfirmed Tokens Transfers By Address
TransactionsApi CreateCoinsTransactionFromAddressForWholeAmount POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/all-transaction-requests Create Coins Transaction From Address For Whole Amount
TransactionsApi CreateCoinsTransactionRequestFromAddress POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{address}/transaction-requests Create Coins Transaction Request from Address
TransactionsApi CreateCoinsTransactionRequestFromWallet POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/transaction-requests Create Coins Transaction Request from Wallet
TransactionsApi CreateFungibleTokensTransactionRequestFromAddress POST /wallet-as-a-service/wallets/{walletId}/{blockchain}/{network}/addresses/{senderAddress}/token-transaction-requests Create Fungible Tokens Transaction Request from Address
UnifiedEndpointsApi EstimateTransactionSmartFee GET /blockchain-data/{blockchain}/{network}/estimate-transaction-smart-fee Estimate Transaction Smart Fee
UnifiedEndpointsApi GetAddressDetails GET /blockchain-data/{blockchain}/{network}/addresses/{address} Get Address Details
UnifiedEndpointsApi GetBlockDetailsByBlockHash GET /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash} Get Block Details By Block Hash
UnifiedEndpointsApi GetBlockDetailsByBlockHeight GET /blockchain-data/{blockchain}/{network}/blocks/height/{height} Get Block Details By Block Height
UnifiedEndpointsApi GetFeeRecommendations GET /blockchain-data/{blockchain}/{network}/mempool/fees Get Fee Recommendations
UnifiedEndpointsApi GetLastMinedBlock GET /blockchain-data/{blockchain}/{network}/blocks/last Get Last Mined Block
UnifiedEndpointsApi GetNextAvailableNonce GET /blockchain-data/{blockchain}/{network}/addresses/{address}/next-available-nonce Get Next Available Nonce
UnifiedEndpointsApi GetRawTransactionData GET /blockchain-data/{blockchain}/{network}/transactions/{transactionId}/raw-data Get Raw Transaction Data
UnifiedEndpointsApi GetTransactionDetailsByTransactionID GET /blockchain-data/{blockchain}/{network}/transactions/{transactionId} Get Transaction Details By Transaction ID
UnifiedEndpointsApi ListAllUnconfirmedTransactions GET /blockchain-data/{blockchain}/{network}/address-transactions-unconfirmed List All Unconfirmed Transactions
UnifiedEndpointsApi ListConfirmedTokensTransfersByAddressAndTimeRange GET /blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-by-time-range List Confirmed Tokens Transfers By Address And Time Range
UnifiedEndpointsApi ListConfirmedTransactionsByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/transactions List Confirmed Transactions By Address
UnifiedEndpointsApi ListConfirmedTransactionsByAddressAndTimeRange GET /blockchain-data/{blockchain}/{network}/addresses/{address}/transactions-by-time-range List Confirmed Transactions By Address And Time Range
UnifiedEndpointsApi ListInternalTransactionsByAddressAndTimeRange GET /blockchain-data/{blockchain}/{network}/addresses/{address}/internal-by-time-range List Internal Transactions By Address And Time Range
UnifiedEndpointsApi ListLatestMinedBlocks GET /blockchain-data/{blockchain}/{network}/blocks/last/{count} List Latest Mined Blocks
UnifiedEndpointsApi ListTransactionsByBlockHash GET /blockchain-data/{blockchain}/{network}/blocks/hash/{blockHash}/transactions List Transactions by Block Hash
UnifiedEndpointsApi ListTransactionsByBlockHeight GET /blockchain-data/{blockchain}/{network}/blocks/height/{height}/transactions List Transactions by Block Height
UnifiedEndpointsApi ListUnconfirmedTransactionsByAddress GET /blockchain-data/{blockchain}/{network}/address-transactions-unconfirmed/{address} List Unconfirmed Transactions by Address
UnifiedEndpointsApi ListUnspentTransactionOutputsByAddress GET /blockchain-data/{blockchain}/{network}/addresses/{address}/unspent-outputs List Unspent Transaction Outputs By Address
XRPRippleApi GetLatestMinedXRPRippleBlock GET /blockchain-data/xrp-specific/{network}/blocks/last Get Latest Mined XRP (Ripple) Block
XRPRippleApi GetXRPRippleAddressDetails GET /blockchain-data/xrp-specific/{network}/addresses/{address} Get XRP (Ripple) Address Details
XRPRippleApi GetXRPRippleBlockDetailsByBlockHash GET /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash} Get XRP (Ripple) Block Details By Block Hash
XRPRippleApi GetXRPRippleBlockDetailsByBlockHeight GET /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight} Get XRP (Ripple) Block Details By Block Height
XRPRippleApi GetXRPRippleTransactionDetailsByTransactionID GET /blockchain-data/xrp-specific/{network}/transactions/{transactionHash} Get XRP (Ripple) Transaction Details By Transaction ID
XRPRippleApi ListXRPRippleTransactionsByAddress GET /blockchain-data/xrp-specific/{network}/addresses/{address}/transactions List XRP (Ripple) Transactions by Address
XRPRippleApi ListXRPRippleTransactionsByAddressAndTimeRange GET /blockchain-data/xrp-specific/{network}/addresses/{address}/transactions-by-time-range List XRP (Ripple) Transactions By Address And Time Range
XRPRippleApi ListXRPRippleTransactionsByBlockHash GET /blockchain-data/xrp-specific/{network}/blocks/hash/{blockHash}/transactions List XRP (Ripple) Transactions By Block Hash
XRPRippleApi ListXRPRippleTransactionsByBlockHeight GET /blockchain-data/xrp-specific/{network}/blocks/height/{blockHeight}/transactions List XRP (Ripple) Transactions By Block Height
ZilliqaApi GetLatestMinedZilliqaBlock GET /blockchain-data/zilliqa-specific/{network}/blocks/last Get Latest Mined Zilliqa Block
ZilliqaApi GetZilliqaAddressDetails GET /blockchain-data/zilliqa-specific/{network}/addresses/{address} Get Zilliqa Address Details
ZilliqaApi GetZilliqaBlockDetailsByBlockHash GET /blockchain-data/zilliqa-specific/{network}/blocks/hash/{blockHash} Get Zilliqa Block Details By Block Hash
ZilliqaApi GetZilliqaBlockDetailsByBlockHeight GET /blockchain-data/zilliqa-specific/{network}/blocks/height/{blockHeight} Get Zilliqa Block Details By Block Height
ZilliqaApi GetZilliqaTransactionDetailsByTransactionID GET /blockchain-data/zilliqa-specific/{network}/transactions/{transactionHash} Get Zilliqa Transaction Details by Transaction ID
ZilliqaApi ListZilliqaTransactionsByAddress GET /blockchain-data/zilliqa-specific/{network}/addresses/{address}/transactions List Zilliqa Transactions by Address
ZilliqaApi ListZilliqaTransactionsByBlockHash GET /blockchain-data/zilliqa-specific/{network}/blocks/hash/{blockHash}/transactions List Zilliqa Transactions By Block Hash
ZilliqaApi ListZilliqaTransactionsByBlockHeight GET /blockchain-data/zilliqa-specific/{network}/blocks/height/{blockHeight}/transactions List Zilliqa Transactions By Block Height

<a name="documentation-for-models"></a>

Documentation for Models

<a name="documentation-for-authorization"></a>

Documentation for Authorization

<a name="ApiKey"></a>

ApiKey

  • Type: API key
  • API key parameter name: x-api-key
  • Location: HTTP header
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.0 945 9/12/2022
1.6.0 562 7/1/2022
1.5.1 27,028 4/27/2022
1.5.0 452 4/27/2022
1.4.0 635 12/23/2021
1.3.0 411 10/25/2021
1.2.0 388 7/30/2021
1.1.0 372 7/21/2021
1.0.1 464 5/13/2021
1.0.0 295 5/5/2021

New Endpoints:

       Estimate Gas Limit
       Estimate Token Gas Limit
       List Unconfirmed Tokens Transfers By Address
       List HD Wallet (xPub, yPub, zPub) UTXOs
       List Unspent Transaction Outputs By Address
       List All Assets From All Wallets
       List All Assets By Wallet ID
       List XRP (Ripple) Transactions by Address And Time Range
       Get Raw Transaction Data
       List Internal Transactions By Address And Time Range
       List Confirmed Tokens Transfers By Address And Time Range
       List Confirmed Transactions By Address And Time Range
       Get Next Available Nonce
       Decode raw transaction
       Get Blockchain Event Subscription Details By Reference ID
       Get HD Wallet (xPub, yPub, zPub) Assets
       Derive HD (xPub, yPub, zPub) Change Or Receiving Addresses
       Estimate Transaction Smart Fee
       Encode X-Address
       Decode X-Address


       Endpoint Updates:

       Total Supply has been updated in the Get Token Details by Contract Address endpoint.
       List Unspent Transaction Outputs endpoint has been hidden from documentation because it is being modified.
       Improvements done to Tech Doc texts regarding Callbacks, Pagination and Credits.
       Estimate Gas Limit - propper error messages were added.
       Example": "2.0" was changed to 2.0.0  at the example responses.
       BSC has been added to New unconfirmed tokens transactions and Validate Address endponts.
       Add missing blockchains to xPub Endpoints.
       New Unconfirmed Coins Transactions -  missing "address"  response atribute has been added.
       New Confirmed Tokens Transactions And Each Confirmation missing "callbackSecretKey" and "isActive" response attributes have been added.
       XRP has been added to Sync HD Wallet (xPub, yPub, zPub), Get HD Wallet (xPub, yPub, zPub) Details and List HD Wallet (xPub, yPub, zPub) Transactions.
       Get Transaction Request Details - transactionId has been added as an optional response attribute.
       X address support for XRP has been added to the following endpoints:
        - Create Coins Transaction Request from Address
        - Get Transaction Request Details
       The "receiveCallbackOn" attribute for specification of the exact confirmation on which will be recieved a callback has been added for the following endpoints:
        - New confirmed coins transactions
        - New confirmed tokens transactions
        - New confirmed internal transactions
       Token Ballance Decimals have been restricted to 8 decimals.
       XRP has been added to:
        - Generate Deposit Address
        - List Deposit Addresses
        - Create Coins Transaction Request from Address
        - Get Wallet Asset Details
        - List Wallet Transactions
        - Get HD Wallet (xPub, yPub, zPub) Assets
       List Blockchain Events Subscriptions updates:
        - "deactivationReasons" attribute has been added
        - "callbackSecretKey" and "transactionId" were removed from required response attributes
       New possible values have been added to the endpoints Sync HD Wallet (xPub, yPub, zPub), Get HD Wallet (xPub, yPub, zPub) Details and List HD Wallet (xPub, yPub, zPub) Transactions:
        - "ethereum-classic",
        - "binance-smart-chain"
        - "ethereum"
        - "ropsten"
        - "mordor"