Found 12 packages
BitMEX ve BitMEX Testnet üzerinde kripto para ticareti yapmak isteyenler için basit ve kullanışlı bir kütüphane.
Web3 geliştirmeyi en az Web2 kadar kolay hale getiren platformlardan biri olan Moralis'in .NET geliştiricileri için hazırlanmış kütüphanesidir.
A .NET client library for interacting with the CSPR Cloud API, providing access to Casper blockchain data for both Mainnet and Testnet environments.
Binance Futures ve Binance Futures Testnet üzerinde işlem yapmak isteyenler için basit ve kullanışlı bir kütüphane.
TestNetStandardClassLibrary
Binance Futures Websocket ve Binance Futures Testnet Websocket üzerinde işlem yapmak isteyenler için basit ve kullanışlı bir kütüphane.
Package Description
ali
Sample library showing how to create a .NET library.
R3E Smart Contract Deploy v1.0.2 - Simplified deployment toolkit for Neo smart contracts. Features environment management, multi-contract deployment, verification tools, and deployment automation. Perfect for mainnet and testnet deployments
Cardano Blockchain Explorer REST API wrapper. Aimed to ease the development of Cardano Blockchain Explorer related apps. Simplified REST API connection to Cardano Testnet or Mainnet Blockchain Explorer. API url: https://input-output-hk.github.io/cardano-rest/explorer-api/ Github: https://github.com/input-output-hk/cardano-rest Wiki: https://github.com/input-output-hk/cardano-rest/wiki
Build applications on-top of the Xend Finance Smart Contract Protocols. # xend_finance_sdk_dotnet Build applications on-top of the Xend Finance Smart Contract Protocols. #Installation 1. In Solution Explorer, right-click References and choose Manage NuGet Packages. 2. Choose "nuget.org" as the Package source, select the Browse tab, search for XendFinanceSDK, select that package in the list, and select Install. If you want more information on the NuGet Package Manager, see Install and manage packages using Visual Studio. 3. Accept any license prompts. 4. (Visual Studio 2017 only) If prompted to select a package management format, select PackageReference in project file 5. If prompted to review changes, select OK. #How to run the test 1. Open XendFinanceSdkTest class Library 2. Open the XAutoServiceTest and on setup function add your private key 3. Open the XValtServiceTest and on setup function add your private key 4. Run your test #How to use the sdk On your Startup.cs class, you have to add the sdk as a service by either doing this ``` ... services.AddXendFinanceSdk("your_privateKey"); ... ``` Or ``` ... // Environment in this case is an Enum BlockchainEnvironment which has values Mainnet = 1 and Testnet=2 // GasPriceLevel is an optional field services.AddXendFinanceSdk("your_privateKey", environment, GasPriceLevel); ... ``` Or ``` ... // Environment in this case is an Enum BlockchainEnvironment which has values Mainnet = 1 and Testnet=2 // GasPriceLevel is an optional field services.AddXendFinanceSdk("your_privateKey", bscNodeUrl, polygonNodeUrl,bscGasEstimateUrl, polygonGasEstimateUrl,environment,GasPriceLevel ); ... ``` Then after registring the sdk in your Startup.cs class, Then you can go ahead to use the sdk in you controllers or services. you can inject `IXvaltService` and `IXAutoService` in your costructor. and then call the function you want to call. e.g ``` ... class YourClass{ private xautoServer; private xvaltService; YourClass(IXAutoService _xautoServer, IXvaltService _xvaltService){ xautoServer = _xautoServer; xvaltService = _xvaltService; } ... public void YourFunction(){ string transactionHash = xautoServer.DepositAsync((int)ChainIds.BSCMainnet, 0.01m, "BUSD", cancellationToken).Result; TransactionResponse transactionResponse = xvaltService.GetAPYAsync("BUSD", (int)ChainIds.BSCMainnet).Result; } ... } ```