Skip to content

A .NET library to connect to fragment.com website and read the auction information.

License

Notifications You must be signed in to change notification settings

tonradar/fragment-sdk-dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TON Fragment .NET SDK

Build and Deploy Build and Deploy NuGet version (TonRadar.Fragment) NuGet downloads

A C# library to read auctions in fragment.com

How To Use

// A unified client to work with fragment.com different auctions.
var client = new FragmentClient();

// Reading all auctions with EndingSoon filter.
var auctionItems = await client.Numbers.GetAuctionsItemsAsync(SortType.EndingSoon);
// Reading all for-sale items.
var saleItems = await client.Numbers.GetSaleItemsAsync(FilterType.ForSale);

// Reading all sold items.
var soldItems = await client.Numbers.GetSoldItemsAuctionsAsync(FilterType.Sold);

How To Install

Install the package using:

dotnet add package TonRadar.Fragment