🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

FaucetPayAPI

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

FaucetPayAPI

Features Make payments. See faucet lists. See your balance. Check if a wallet or user exists. Check payment HASH. Manage your cryptocurrencies Easy to Use

Source
nugetNuGet
Version
1.2.0
Version published
Maintainers
1
Created
Source

Logo FaucetPay (.Net and .NetCore)

NuGet version (FaucetPayAPI)

FAUCETPAY API UNOFFICIAL.

API for you to make a cryptocurrency management platform on FaucetPay. Through the API you can make payments.

  • Features
  • Make payments.
  • See faucet lists.
  • See your balance.
  • Check if a wallet or user exists.
  • Check payment HASH.
  • Manage your cryptocurrencies
  • Easy to Use

#ENJOY!

SOME EXAMPLES OF HOW TO USE.

Visual Basic

Using Client = FaucetPayClient.Create(New ApiConfig With {.ApiKey = "889bcd6696e47c9472e18bf986e8bb33448bfa9d"}) 
Dim BalanceAsync = Await Client.GetBalanceAsync(FaucetPayClient.Bitcoin) 
Console.WriteLine("Balance Satoshis: " & BalanceAsync.SatoshiBalance) 
Console.WriteLine("Actual Balance: " & BalanceAsync.ActualBalance) 
Console.WriteLine("Currency: " & BalanceAsync.Currency) 
End Using

C# CSharp

using (var Client = FaucetPayClient.FaucetPayClient.Create(new ApiConfig() { ApiKey = "889bcd6696e47c9472e18bf986e8bb33448bfa9d" })) 
{
var BalanceAsync = await Client.GetBalanceAsync(FaucetPayClient.FaucetPayClient.Bitcoin); 
Console.WriteLine("Balance Satoshis: " + BalanceAsync.SatoshiBalance); 
Console.WriteLine("Actual Balance: " + BalanceAsync.ActualBalance); 
Console.WriteLine("Currency: " + BalanceAsync.Currency); 
}

Keywords

FaucetPay

FAQs

Package last updated on 15 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts