![]() |
VOOZH | about |
dotnet add package TronSharp --version 1.0.5
NuGet\Install-Package TronSharp -Version 1.0.5
<PackageReference Include="TronSharp" Version="1.0.5" />
<PackageVersion Include="TronSharp" Version="1.0.5" />Directory.Packages.props
<PackageReference Include="TronSharp" />Project file
paket add TronSharp --version 1.0.5
#r "nuget: TronSharp, 1.0.5"
#:package TronSharp@1.0.5
#addin nuget:?package=TronSharp&version=1.0.5Install as a Cake Addin
#tool nuget:?package=TronSharp&version=1.0.5Install as a Cake Tool
TronSharp is a powerful C# library that facilitates seamless interaction with the Tron network (TRX), its protocol, wallet, and smart contracts. Whether you are building decentralized applications (DApps) or integrating Tron functionalities into your existing projects, TronSharp simplifies the process, enabling you to focus on your application logic.
Blockchain Interaction: TronSharp enables you to interact with the Tron blockchain effortlessly. You can query account information, transaction details, block data, broadcast transactions and more.
Wallet Management: With TronSharp, managing TRX wallets becomes a breeze. It supports various cryptographic algorithms.
Smart Contract Integration: TronSharp provides a comprehensive set of functions to deploy, invoke, and interact with smart contracts on the Tron network. It streamlines the process of integrating DApps with smart contracts.
To start using TronSharp in your C# project, you can either:
TronSharpPM> Install-Package TronSharp
or
dotnet add package TronSharp
First, you need to config TronSharp in your Startup.cs You can specify your TronGrid API key, but it works without an API key too with less accuracy:
......
using TronSharp;
......
public void ConfigureServices(IServiceCollection services)
{
......
services.AddTronSharp(x =>
{
x.Network = TronNetwork.MainNet;
x.Channel = new GrpcChannelOption { Host = "grpc.shasta.trongrid.io", Port = 50051 };
x.SolidityChannel = new GrpcChannelOption { Host = "grpc.shasta.trongrid.io", Port = 50052 };
x.FreeApiKey = "input your free api key";
x.ProApiKey = "input your pro api key";
});
......
}
Please refer to the for more detailed examples and explanations.
If you find TronSharp useful and would like to support its development, you can make a donation to the following TRX wallet address:
Your contributions are greatly appreciated and will motivate us to continue improving TronSharp.
Contributions to TronSharp are welcomed and encouraged. If you encounter any issues, have suggestions, or want to add new features, feel free to open a GitHub issue or submit a pull request.
Before submitting a pull request, make sure to read our Contribution Guidelines.
TronSharp is released under the MIT License.
We would like to express our gratitude to all the developers and contributors who made this library possible.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.