TronAksaSharp 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TronAksaSharp --version 2.0.0
                    
NuGet\Install-Package TronAksaSharp -Version 2.0.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="TronAksaSharp" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TronAksaSharp" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="TronAksaSharp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TronAksaSharp --version 2.0.0
                    
#r "nuget: TronAksaSharp, 2.0.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.
#:package TronAksaSharp@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TronAksaSharp&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=TronAksaSharp&version=2.0.0
                    
Install as a Cake Tool

TronAksaSharp

TronAksaSharp: C# ile yazılmış, Tron ağı için yerli ve açık kaynaklı bir cüzdan & adres üretme kütüphanesidir.
Bu kütüphane ile kolayca private key → public key → Tron adresi dönüşümü yapabilirsiniz.


Özellikler:

  • Public Key’den Tron Adresi Oluşturma
  • Base58Check formatında okunabilir adres üretimi (bağımsız Base58 implementasyonu)
  • Adres byte uzunluğu kontrolü
  • Cüzdanın TRX ve TRC-20 token kontrolü (MainNet,Nile,Shasta) Dahil
  • TRX ve TRC20 Transferi (MainNet,Nile,Shasta) Dahil
  • Cüzdanın stake edilen varlıkların kontrolu (Energy,Bandwidth)

Yakında Gelecek Özellikler :

  • Akıllı Kontrat Etkileşimi - Tron smart contract'ları ile çalışma
  • İşlemlerin Detaylarını görme
  • Cüzdan Dinleme

Kurulum :

  1. Projenize TronAksaSharp kütüphanesini ekleyin. NuGet : https://www.nuget.org/packages/TronAksaSharp

  1. Gerekli bağımlılıkları yükleyin:

    Bu paketleri NuGet Paket Yöneticisi ile yükleyebilirsiniz:

    Install-Package BouncyCastle
    

NOT: Base58 işlemleri artık kütüphane içinde, SimpleBase bağımlılığı kaldırıldı.

Yeni Cüzdan Oluşturma :

string ToHex(byte[] data) => BitConverter.ToString(data).Replace("-", "");
var createWallet = TronClient.CreateTronWallet();

Console.WriteLine($"Cüzdan Adresi :\n {createWallet.Address}");
Console.WriteLine($"Private Key :\n {ToHex(createWallet.PrivateKey)}");
Console.WriteLine($"Public Key  :\n {ToHex(createWallet.PublicKey)}");

Örnek Çıktı :
Private Key (hex): 03FFEB1D127C5BEF8377F32092F3AD4FEEC93D337553CF5DC8120EC9838147DC
Public Key (hex) : 046AF87108AD9870550EF651B18D24A551391D66E73BA44DCB45AE7232955FC19D6F6190B58BD3B5D1D96CD127D423B72D70900A972ACD48BD42C35C30098416E8
Address          : TUqSfg8fT6t4R5zn2Lhe1RtQ6vHmJLeyJt

Adres Uzunluk Hesaplama :


byte[] addrBytes = Base58.Decode($"{createWallet.Address}");
Console.WriteLine("Adres byte uzunluğu = " + addrBytes.Length);


TRX BAKİYE-STAKE(ENERGY,BANDWİTH) SORGULAMA :


string walletAddress = "TEWJWLwFL3dbMjXtj2smNfto9sXdWquF4N"; // Örnek TRON adresi

var balances = await TronClient.GetBalancesAsync(walletAddress, TronNetwork.NileTestNet);

Console.WriteLine($"TRX       : {balances.TrxBalance}");
Console.WriteLine($"Bandwidth : {balances.BandwidthStake}");
Console.WriteLine($"Energy    : {balances.EnergyStake}");

Örnek Çıktı :

TRX Balance (Nile): 45575,325323
TRX Balance (Shasta): 9957,8
TRX Balance (MainNet): 0
Stake Edilmiş Bandwith TRX: 24938
Stake Edilmiş Energy TRX: 526780

TRC20 TOKEN BAKİYE SORGULAMA :

string trc20Contract = "TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf"; // USDT TRC20 Contract Address
int decimals = 6; // USDT TRC20 token ondalık basamak sayısı
decimal tokenBalance = await BalanceService.GetTRC20BalanceAsync(walletAddress, trc20Contract, decimals, TronNetwork.NileTestNet); // Nile TestNet
Console.WriteLine($"TRC20 Token Balance: {tokenBalance}");

Örnek Çıktı :

TRC20 Token Balance: 110430

TRX TRANSFER :


var trx = await TronClient.SendTRXAsync(
    senderAddress,
    senderPrivateKey,
    receiverAddress,
    1,
    TronNetwork.NileTestNet
);

Console.WriteLine(trx.Success ? "TRX Transferi Başarılı" : $"TRX HATA → {trx.Error}");

TRC20 TRANSFER :


string usdtContract = "TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf"; // USDT (Nile)
int decimals = 6; // USDT için ondalık basamak sayısı

var trc20 = await TronClient.SendTRC20Async(
    senderAddress,
    senderPrivateKey,
    receiverAddress,
    usdtContract,
    1,
    6,
    TronNetwork.NileTestNet
);

Console.WriteLine(trc20.Success ? "TRC20 Transferi Başarılı" : $"TRC20 HATA → {trc20.Error}");


MIT License :

Copyright (c) 2025 Kubilay13

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 net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 TronAksaSharp:

Package Downloads
UnifiedChainWallet

Kendi Yazdığım Tron Kütüphanesini Ekledim

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.1 89 2/19/2026
2.1.0 102 2/16/2026
2.0.0 104 1/26/2026
1.0.3 193 11/26/2025
1.0.2 383 11/23/2025
1.0.1 374 11/23/2025
1.0.0 595 11/18/2025

TRX ve TRC20 transfer metodları eklenip kullanıcıların kullanımı kolaylaştırmak için kolaylaştırıldı , Tron Cüzdanlara TRC-20 Token bakiye sorgulama eklendi ve permission_id + expectedAddress mantığı eklendi , ToHex32Parameter + contract call düzenlenerek çözüldü ,  bütün testnet stabil halde mainnet için hazır.