Etherscan.Net 1.5.0

dotnet add package Etherscan.Net --version 1.5.0
NuGet\Install-Package Etherscan.Net -Version 1.5.0
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="Etherscan.Net" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Etherscan.Net --version 1.5.0
#r "nuget: Etherscan.Net, 1.5.0"
#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 Etherscan.Net as a Cake Addin
#addin nuget:?package=Etherscan.Net&version=1.5.0

// Install Etherscan.Net as a Cake Tool
#tool nuget:?package=Etherscan.Net&version=1.5.0

ko-fi

Etherscan.Net

I originally wrapped this for use in another project, I figured that if I was doing this, I may as well open source it to the community and see if I can help out anyone working with .NET5/.NETCore. I needed something that supported all the Etherscan networks, not just the Ethereum chain.

Packages

Current Nuget packages are available here: https://www.nuget.org/packages/Etherscan.net/

Demo

For people who learn by example, there is a demo project called EthScanNet.Test which shows how the API works. For people who prefer guides:

Usage

Network Creation

Firstly choose the Etherscan network you'd like to join

public static readonly EScanNetwork EScanMainNet = new("https://api.etherscan.io/api");
public static readonly EScanNetwork RopstenNet = new("https://api-ropsten.etherscan.io/api");
public static readonly EScanNetwork KovanNet = new("https://api-kovan.etherscan.io/api");
public static readonly EScanNetwork RinkebyNet = new("https://api-rinkeby.etherscan.io/api");
public static readonly EScanNetwork GoerliNet = new("https://api-goerli.etherscan.io/api");
public static readonly EScanNetwork BscTestNet = new("https://api-testnet.bscscan.com/api");
public static readonly EScanNetwork BscMainNet = new("https://api.bscscan.com/api");

or, create a network, the "isBsc" flag needs to be set as the APIs are slightly different between networks.

 EScanNetwork eScanNetwork = new("https://api.etherscan.io/api", false /* defaults to false */);

API Client Instantiation

Instantiate a new EScanClient with the relevant network you wish to connect to (from Etherscan).

EScanClient client = new(EScanNetwork.BscTestNet, "YourApiKeyToken");

If you're on the free API tier, the throttle is set to 200ms (5 actions per second maximum), to turn this off, set the throttle to null

EScanClient client = new(EScanNetwork.BscTestNet, "YourApiKeyToken", null);

Call one of the API end points to get your result, I would suggest wrapping in a try/catch block to catch errors:

try 
{
    EScanBalance apiBalance = await client.Accounts.GetBalanceAsync(new("0x0000000000000000000000000000000000001004"));
}
catch (Exception e)
{
    Console.WriteLine(e);
    throw;
}

Tip!

Always happy to receive donations to help me support my work or buy pizza.

ko-fi

BSC: 0x44ed8E0c45b82d12cAF02f73294fa9AfED48eD80

ETH: 0x44ed8E0c45b82d12cAF02f73294fa9AfED48eD80

BTC: 1Jwk86Rx42aJqKymBaCwtM8nqBinxGqMpX

License

MIT: Copyright (c) 2021 Hoss

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in 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.5.0 82,649 8/7/2022
1.4.0 4,076 1/16/2022
1.3.1 974 12/5/2021
1.3.0 1,221 7/31/2021
1.2.4 1,018 7/31/2021
1.2.3 1,030 7/31/2021
1.2.2 1,002 6/23/2021
1.2.1 1,009 6/20/2021