0% found this document useful (0 votes)
77 views3 pages

BTCPay Server: Open-Source Payment Processor

BTCPay Server is an open-source cryptocurrency payment processor that allows merchants to receive payments directly in Bitcoin and altcoins with no fees. It is non-custodial, so payments go directly to the merchant's wallet, increasing privacy and security. Merchants can run BTCPay Server themselves or use a third-party host. Key features include direct P2P payments, Lightning Network support, altcoin support, and no transaction or processing fees. The software supports Bitcoin and other cryptocurrencies like Litecoin and Dash.

Uploaded by

Cristian Tompea
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views3 pages

BTCPay Server: Open-Source Payment Processor

BTCPay Server is an open-source cryptocurrency payment processor that allows merchants to receive payments directly in Bitcoin and altcoins with no fees. It is non-custodial, so payments go directly to the merchant's wallet, increasing privacy and security. Merchants can run BTCPay Server themselves or use a third-party host. Key features include direct P2P payments, Lightning Network support, altcoin support, and no transaction or processing fees. The software supports Bitcoin and other cryptocurrencies like Litecoin and Dash.

Uploaded by

Cristian Tompea
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

![BTCPay Server](BTCPayServer/wwwroot/img/btc_pay_BG_twitter.

png)

[![Docker Automated build]


([Link]
([Link]
[![Deploy to Azure]([Link]
([Link]
%[Link]%2Fbtcpayserver%2Fbtcpayserver-azure%2Fmaster
%[Link])
[![CircleCI]([Link]
([Link]

# BTCPay Server

## Introduction

BTCPay Server is a free and open-source cryptocurrency payment processor which


allows you to receive payments in Bitcoin and altcoins directly, with no fees,
transaction cost or a middleman.

BTCPay is a non-custodial invoicing system which eliminates the involvement of a


third-party. Payments with BTCPay go directly to your wallet, which increases the
privacy and security. Your private keys are never uploaded to the server. There is
no address re-use since each invoice generates a new address deriving from your
xpubkey.

The software is built in C# and conforms to the invoice [API of BitPay]


([Link] It allows for your website to be easily migrated from
BitPay and configured as a self-hosted payment processor.

You can run BTCPay as a self-hosted solution on your own server, or use a [third-
party host]([Link]
doc/blob/master/[Link]).

The self-hosted solution allows you not only to attach an unlimited number of
stores and use the Lightning Network but also become the payment processor for
others.

Thanks to the apps built on top of it, you can use BTCPay to receive donations or
have an in-store POS system.

## Features

* Direct, P2P Bitcoin payments


* Lightning Network support (LND and c-lightning)
* Altcoin support
* Complete control over private keys
* Full compatibility with BitPay API (easy migration)
* Enhanced privacy
* SegWit support
* Process payments for others
* Payment buttons
* Point of sale
* No transaction fees (other than those for the crypto networks)
* No processing fees
* No middleman
* No KYC
## Supported Altcoins

In addition to Bitcoin, BTCPay supports the following cryptocurrencies:

* BGold
* Bitcore
* Dash
* Dogecoin
* Feathercoin
* Groestlcoin
* Litecoin
* Monacoin
* Polis
* UFO
* Viacoin

## Documentation

Please check out our [complete documentation]


([Link] for more details.

You can also read the [BTCPay Merchants Guide]


([Link]
free_and/).

## How to build

While the documentation advises to use docker-compose, you may want to build BTCPay
yourself.

First install .NET Core SDK v2.1.4 (with patch version >= 403) as specified by
[Microsoft website]([Link]

On Powershell:
```
.\build.ps1
```

On linux:
```
./[Link]
```

## How to run

Use the `run` scripts to run BTCPayServer, this example shows how to print the
available command line arguments of BTCPayServer.

On Powershell:
```
.\run.ps1 --help
```

On linux:
```
./[Link] --help
```

## How to debug
If you want to debug, use Visual Studio Code or Visual studio 2017.

You need to run the development time docker-compose as described [in the test
guide]([Link]/[Link]).

You can then run the debugger by using the Launch Profile `Docker-Regtest` on
either Visual Studio Code or Visual studio 2017.

If you need to debug ledger wallet interaction, install the development time
certificate with:

```bash
# Install development time certificate in the trust store
dotnet dev-certs https --trust
```

Then use the `Docker-Regtest-https` debug profile.

## Other dependencies

For more information, see the documentation: [How to deploy a BTCPay server
instance]([Link]

You might also like