├── .editorconfig ├── .gitignore ├── LICENSE ├── NBitpayClient.Tests ├── Assert.cs ├── CustomServer.cs ├── Logging │ ├── ConsoleLogger.cs │ └── Logs.cs ├── NBitpayClient.Tests.csproj └── Program.cs ├── NBitpayClient.sln ├── NBitpayClient ├── BitPay.cs ├── BitPayException.cs ├── Buyer.cs ├── Extensions │ └── AuthExtensions.cs ├── Invoice.cs ├── InvoiceData.cs ├── InvoicePaymentNotification.cs ├── InvoicePaymentUrls.cs ├── InvoiceSupportedTransactionCurrency.cs ├── InvoiceTransaction.cs ├── JsonConverters │ ├── DateTimeJsonConverter.cs │ └── MoneyJsonConverter.cs ├── Ledger.cs ├── LedgerEntry.cs ├── NBitpayClient.csproj ├── PayoutInfo.cs ├── Policy.cs ├── PushNuget.ps1 ├── Rate.cs ├── Rates.cs ├── RefundAddress.cs ├── RefundAmount.cs ├── RefundInfo.cs ├── Settlement.cs ├── SettlementLedgerEntry.cs ├── SettlementReconciliationReport.cs ├── SettlementSummary.cs ├── Token.cs └── Withholdings.cs └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/LICENSE -------------------------------------------------------------------------------- /NBitpayClient.Tests/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/Assert.cs -------------------------------------------------------------------------------- /NBitpayClient.Tests/CustomServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/CustomServer.cs -------------------------------------------------------------------------------- /NBitpayClient.Tests/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /NBitpayClient.Tests/Logging/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/Logging/Logs.cs -------------------------------------------------------------------------------- /NBitpayClient.Tests/NBitpayClient.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/NBitpayClient.Tests.csproj -------------------------------------------------------------------------------- /NBitpayClient.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.Tests/Program.cs -------------------------------------------------------------------------------- /NBitpayClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient.sln -------------------------------------------------------------------------------- /NBitpayClient/BitPay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/BitPay.cs -------------------------------------------------------------------------------- /NBitpayClient/BitPayException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/BitPayException.cs -------------------------------------------------------------------------------- /NBitpayClient/Buyer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Buyer.cs -------------------------------------------------------------------------------- /NBitpayClient/Extensions/AuthExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Extensions/AuthExtensions.cs -------------------------------------------------------------------------------- /NBitpayClient/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Invoice.cs -------------------------------------------------------------------------------- /NBitpayClient/InvoiceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/InvoiceData.cs -------------------------------------------------------------------------------- /NBitpayClient/InvoicePaymentNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/InvoicePaymentNotification.cs -------------------------------------------------------------------------------- /NBitpayClient/InvoicePaymentUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/InvoicePaymentUrls.cs -------------------------------------------------------------------------------- /NBitpayClient/InvoiceSupportedTransactionCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/InvoiceSupportedTransactionCurrency.cs -------------------------------------------------------------------------------- /NBitpayClient/InvoiceTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/InvoiceTransaction.cs -------------------------------------------------------------------------------- /NBitpayClient/JsonConverters/DateTimeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/JsonConverters/DateTimeJsonConverter.cs -------------------------------------------------------------------------------- /NBitpayClient/JsonConverters/MoneyJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/JsonConverters/MoneyJsonConverter.cs -------------------------------------------------------------------------------- /NBitpayClient/Ledger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Ledger.cs -------------------------------------------------------------------------------- /NBitpayClient/LedgerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/LedgerEntry.cs -------------------------------------------------------------------------------- /NBitpayClient/NBitpayClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/NBitpayClient.csproj -------------------------------------------------------------------------------- /NBitpayClient/PayoutInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/PayoutInfo.cs -------------------------------------------------------------------------------- /NBitpayClient/Policy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Policy.cs -------------------------------------------------------------------------------- /NBitpayClient/PushNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/PushNuget.ps1 -------------------------------------------------------------------------------- /NBitpayClient/Rate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Rate.cs -------------------------------------------------------------------------------- /NBitpayClient/Rates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Rates.cs -------------------------------------------------------------------------------- /NBitpayClient/RefundAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/RefundAddress.cs -------------------------------------------------------------------------------- /NBitpayClient/RefundAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/RefundAmount.cs -------------------------------------------------------------------------------- /NBitpayClient/RefundInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/RefundInfo.cs -------------------------------------------------------------------------------- /NBitpayClient/Settlement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Settlement.cs -------------------------------------------------------------------------------- /NBitpayClient/SettlementLedgerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/SettlementLedgerEntry.cs -------------------------------------------------------------------------------- /NBitpayClient/SettlementReconciliationReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/SettlementReconciliationReport.cs -------------------------------------------------------------------------------- /NBitpayClient/SettlementSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/SettlementSummary.cs -------------------------------------------------------------------------------- /NBitpayClient/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Token.cs -------------------------------------------------------------------------------- /NBitpayClient/Withholdings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/NBitpayClient/Withholdings.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetacoSA/NBitpayClient/HEAD/README.md --------------------------------------------------------------------------------