TronSdk.Protocol 1.2.3

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

// Install TronSdk.Protocol as a Cake Tool
#tool nuget:?package=TronSdk.Protocol&version=1.2.3

TronSdk

The dotnet C# SDK to manipulate your tron wallet for usdt/trx on trc20 chain.

Get Started

You will need at least .net 6.0 to use this package

Installation via Nuget

You can install it via the nuget management GUI by searching for TronSdk or through command line.

Install-Package TronSdk

Create TronGrid API key

If you don't have a TronGrid account yet, please register one here https://www.trongrid.io

Once registered, you can create a key here https://www.trongrid.io/dashboard/keys

Configuration for IOC

Create a file TronServiceExtension.cs with the content below

public static class TronServiceExtension
{
  public static IServiceCollection AddTronService(this IServiceCollection services) {
    services.AddTronNet(x => {
      x.Network = TronNetwork.MainNet;
      x.Channel = new GrpcChannelOption { Host = "grpc.trongrid.io", Port = 50051 };
      x.SolidityChannel = new GrpcChannelOption { Host = "grpc.trongrid.io", Port = 50052 };
      x.ApiKey = "Your TronGrid API key";
    });
    return services;
  }
}

In program.cs register the Tron services

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddTronServices();

Transfer usdt

public class MyController {
  private readonly IServiceProvider _serviceProvider;
  public MyController(IServiceProvider serviceProvider){
    _serviceProvider = serviceProvider;
  }

  /// <summary>
  /// Transfer usdt to an address
  /// </summary>
  /// <param name="privateKey">private key of your wallet</param>
  /// <param name="toAddress">address to transfer to</param>
  /// <param name="amount">the amount of usdt to transfer</param>
  /// <param name="memo">usually don't have to set</param>
  /// <returns>null if failed, and the error will be logged</returns>
  private async Task<string> UsdtTransferAsync(string privateKey,
    string toAddress, decimal amount, string? memo = null) {
    const string contractAddress = "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t";

    var contractClientFactory = _serviceProvider.GetService<IContractClientFactory>();
    var contractClient = contractClientFactory?.CreateClient(ContractProtocol.TRC20)!;

    var account = new TronAccount(privateKey, TronNetwork.MainNet);

    const long feeAmount = 65L * 1000000L; // should be enough for gas fee

    return await contractClient.TransferAsync(contractAddress, account, toAddress, amount,
      memo?? "", feeAmount);
  }

  /// <summary>
  /// Transfer trx to an address
  /// </summary>
  /// <param name="privateKey">private key of your wallet</param>
  /// <param name="to">address to transfer to</param>
  /// <param name="amount">the amount of trx to transfer</param>
  private static async Task<dynamic> TrxTransferAsync(string privateKey, string to, long amount) {
    var transactionClient = _serviceProvider.GetService<ITronClient>();

    var account = new TronAccount(privateKey, TronNetwork.MainNet);

    var transactionExtension = await transactionClient?
      .CreateTransactionAsync(account.Address, to, amount)!;

    var transactionId = transactionExtension.Txid.ToStringUtf8();

    var transactionSigned = transactionClient
      .GetTransactionSign(transactionExtension.Transaction, privateKey);
    var returnObj = await transactionClient.BroadcastTransactionAsync(transactionSigned);

    return new { Result = returnObj.Result, Message = returnObj.Message,
       TransactionId = transactionId };
  }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on TronSdk.Protocol:

Package Downloads
TronSdk

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.3 267 3/10/2024
1.2.2 16,494 3/6/2024
1.2.1 323 2/29/2024