All Projects → bitlum → payserver

bitlum / payserver

Licence: other
Blockchain micro-service which is working on zigzag.io. It served as unified API for other micro-services to receive and send cryptocurrency assets.

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
Dockerfile
14818 projects
perl
6916 projects
Makefile
30231 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to payserver

adequate crypto address
A Ruby Library for dealing with validation cryptocurrency addresses
Stars: ✭ 18 (-25%)
Mutual labels:  dash, bitcoincash
Cryptocurrency Dashboard
Crypto Currency Dashboard Using Twitter 🐦 And Coinmarketcap 🚀 API
Stars: ✭ 54 (+125%)
Mutual labels:  dash, litecoin
Edge React Gui
Edge Wallet React Native GUI for iOS and Android
Stars: ✭ 303 (+1162.5%)
Mutual labels:  dash, litecoin
wallet-address-validator
Useful library for validation of Bitcoin, Litecoin, Ethereum and other cryptocoin addresses
Stars: ✭ 240 (+900%)
Mutual labels:  dash, litecoin
Antminer Monitor
Cryptocurrency ASIC mining hardware monitor using a simple web interface
Stars: ✭ 176 (+633.33%)
Mutual labels:  dash, litecoin
Essentia-iOS
All in One Blockchain solution
Stars: ✭ 50 (+108.33%)
Mutual labels:  dash, litecoin
Crypto Whale Watching App
Python Dash app that tracks whale activity in cryptocurrency markets.
Stars: ✭ 389 (+1520.83%)
Mutual labels:  dash, litecoin
gdax bot
gdax_bot - Micro dollar cost averaging for crypto
Stars: ✭ 57 (+137.5%)
Mutual labels:  litecoin, bitcoincash
Bitcoin Etl
ETL scripts for Bitcoin, Litecoin, Dash, Zcash, Doge, Bitcoin Cash. Available in Google BigQuery https://goo.gl/oY5BCQ
Stars: ✭ 174 (+625%)
Mutual labels:  dash, litecoin
Moneda Cli
Command line to track cryptocurrency prices
Stars: ✭ 114 (+375%)
Mutual labels:  dash, litecoin
cashuwallet
Cashu is a cryptocurrency wallet for smartphones. Be your own bank. Accept payments or spend crypto directly from your phone.
Stars: ✭ 35 (+45.83%)
Mutual labels:  dash, bitcoincash
Joule Extension
Lightning payments extension for Chrome
Stars: ✭ 303 (+1162.5%)
Mutual labels:  lightning, litecoin
MoneroMixer
The easiest way to use Monero to anonymously exchange and properly mix XMR, BTC, LTC, ETH, BCH, & 100+ other coins on Tails OS or Whonix.
Stars: ✭ 57 (+137.5%)
Mutual labels:  dash, litecoin
bitcoin-kit-android
Comprehensive Bitcoin development library for iOS, implemented on Swift. SPV wallet implementation for Bitcoin, Bitcoin Cash, Litecoin and Dash blockchains. Fully compliant with existing standards and BIPs.
Stars: ✭ 102 (+325%)
Mutual labels:  dash, litecoin
crypto-trader
Cryptocurrency investing using Dollar Cost Averaging (not limited to dollar)
Stars: ✭ 47 (+95.83%)
Mutual labels:  dash, litecoin
Bitcoinlib
Bitcoin Core RPC compatible, battle-tested .NET library and RPC wrapper for Bitcoin and Altcoins
Stars: ✭ 350 (+1358.33%)
Mutual labels:  dash, litecoin
Cryptocurrency Cli
💰 Cryptocurrency Portfolio On The Command Line 💰
Stars: ✭ 99 (+312.5%)
Mutual labels:  dash, litecoin
Bitcoinlib
Bitcoin and other Cryptocurrencies Library for Python. Includes a fully functional wallet, Mnemonic key generation and management and connection with various service providers to receive and send blockchain and transaction information.
Stars: ✭ 247 (+929.17%)
Mutual labels:  dash, litecoin
scpx-wallet
Scoop Wallet: Core open-source, multi-asset & cross-platform CLI
Stars: ✭ 18 (-25%)
Mutual labels:  dash, litecoin
datacash
The simplest way to write data to Bitcoin Cash blockchain
Stars: ✭ 60 (+150%)
Mutual labels:  bitcoincash

Pay server - is the blockchain microservice which is working on zigzag.io. It is used as unified API for other microservices to receive and send cryptocurrency.

State Feature
implemented Unify payment API for BTC, LTC, DASH, ETH, BCH, and Lightning Network
implemented Report health statistics about internal state of synchronisation, fees, request delays, sent and received volume, amount of fees spent on payments
not implemented Payment re-try in case of failure
not implemented UTXO re-orginisation
not implemented Lightning Network channel re-balancing
not implemented Support of payments on HTLC addresses
GRPC API:

    // CreateReceipt is used to create blockchain deposit address in
    // case of blockchain media, and lightning network invoice in
    // case of the lightning media, which will be used to receive money from
    // external entity.
    rpc CreateReceipt (CreateReceiptRequest) returns (CreateReceiptResponse);

    // ValidateReceipt is used to validate receipt for given asset and media.
    rpc ValidateReceipt (ValidateReceiptRequest) returns (EmptyResponse);

    // Balance is used to determine balance.
    rpc Balance (BalanceRequest) returns (BalanceResponse);

    // EstimateFee estimates the fee of the payment.
    rpc EstimateFee (EstimateFeeRequest) returns (EstimateFeeResponse);

    // SendPayment sends payment to the given recipient,
    // ensures in the validity of the receipt as well as the
    // account has enough money for doing that.
    rpc SendPayment (SendPaymentRequest) returns (Payment);

    // PaymentByID is used to fetch the information about payment, by the
    // given system payment id.
    rpc PaymentByID (PaymentByIDRequest) returns (Payment);

    // PaymentsByReceipt is used to fetch the information about payment, by the
    // given receipt.
    rpc PaymentsByReceipt (PaymentsByReceiptRequest) returns (PaymentsByReceiptResponse);

    // ListPayments returnes list of payment which were registered by the
    // system.
    rpc ListPayments (ListPaymentsRequest) returns (ListPaymentsResponse);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].