├── .config └── dotnet-tools.json ├── .dotnetexec.json ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── Assemblies ├── BitPay.Net Setup utility │ ├── BitPay.dll │ ├── BitPaySetup.exe │ ├── BitPaySetup.exe.config │ ├── BouncyCastle.Crypto.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ ├── Microsoft.Extensions.Configuration.FileExtensions.xml │ ├── Microsoft.Extensions.Configuration.Json.dll │ ├── Microsoft.Extensions.Configuration.Json.xml │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.Configuration.xml │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ ├── Microsoft.Extensions.FileProviders.Physical.xml │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ ├── Microsoft.Extensions.FileSystemGlobbing.xml │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Extensions.Primitives.xml │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── System.Buffers.dll │ ├── System.Buffers.xml │ ├── System.Memory.dll │ ├── System.Memory.xml │ ├── System.Numerics.Vectors.dll │ ├── System.Numerics.Vectors.xml │ ├── System.Runtime.CompilerServices.Unsafe.dll │ └── System.Runtime.CompilerServices.Unsafe.xml ├── BitPay.Net.Lib │ ├── net452 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.InteropServices.RuntimeInformation.dll │ ├── net46 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.AppContext.dll │ │ ├── System.Console.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ └── System.Xml.ReaderWriter.dll │ ├── net461 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Console.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ └── netstandard.dll │ ├── net462 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Console.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ └── netstandard.dll │ ├── net47 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Console.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ └── netstandard.dll │ ├── net471 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Buffers.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Threading.Overlapped.dll │ │ └── System.Xml.XPath.XDocument.dll │ ├── net472 │ │ ├── BitPay.dll │ │ ├── BouncyCastle.Crypto.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Buffers.dll │ │ ├── System.IO.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netcoreapp2.0 │ │ ├── BitPay.deps.json │ │ └── BitPay.dll │ ├── netcoreapp2.1 │ │ ├── BitPay.deps.json │ │ └── BitPay.dll │ ├── netcoreapp2.2 │ │ ├── BitPay.deps.json │ │ └── BitPay.dll │ └── netstandard2.0 │ │ ├── BitPay.deps.json │ │ └── BitPay.dll ├── BitPay.Net.Lib_3.0.1907.zip ├── BitPay.Net.Lib_3.1.1912.zip ├── BitPay.Net.Lib_3.2.2001.zip ├── BitPay.Net.Lib_3.3.2003.zip ├── BitPay.Net.Lib_4.0.2104.zip ├── BitPay.Net.Lib_4.1.2111.zip ├── BitPay.Net.Lib_4.2.2111.zip ├── BitPay.Net.Lib_4.3.2202.zip ├── BitPay.Net.Lib_4.3.2203.zip ├── BitPay.Net.Lib_4.4.2203.zip ├── BitPay.Net_Setup_utility_3.1.1912.zip ├── BitPay.Net_Setup_utility_4.3.2203.zip └── BitPay.config.json.dist ├── BitPay.sln ├── BitPay ├── AccessTokens.cs ├── BitPay.csproj ├── Client.cs ├── Clients │ ├── AuthorizationClient.cs │ ├── BillClient.cs │ ├── BitPayClient.cs │ ├── CurrencyClient.cs │ ├── HttpResponseParser.cs │ ├── IBitPayClient.cs │ ├── InvoiceClient.cs │ ├── LedgerClient.cs │ ├── PayoutClient.cs │ ├── PayoutGroupClient.cs │ ├── PayoutRecipientsClient.cs │ ├── RateClient.cs │ ├── RefundClient.cs │ ├── ResourceClientUtil.cs │ ├── SettlementClient.cs │ └── WalletClient.cs ├── Config.cs ├── ConfigFilePath.cs ├── Converters │ ├── BtcValueConverter.cs │ ├── DateStringConverter.cs │ └── SupportedTransactionCurrenciesConverter.cs ├── EcKey.cs ├── Environment.cs ├── Exceptions │ ├── BitPayApiException.cs │ ├── BitPayException.cs │ ├── BitPayExceptionProvider.cs │ ├── BitPayGenericException.cs │ └── BitPayValidationException.cs ├── Facade.cs ├── KeyUtils.cs ├── Logger │ ├── EmptyLogger.cs │ ├── ExampleLogger.cs │ ├── IBitPayLogger.cs │ └── LoggerProvider.cs ├── Models │ ├── Bill │ │ ├── Bill.cs │ │ ├── Item.cs │ │ └── Status.cs │ ├── Currency.cs │ ├── Invoice │ │ ├── Buyer.cs │ │ ├── BuyerFields.cs │ │ ├── Invoice.cs │ │ ├── InvoiceBuyerProvidedInfo.cs │ │ ├── InvoiceEventToken.cs │ │ ├── InvoiceRefundAddress.cs │ │ ├── InvoiceTransaction.cs │ │ ├── InvoiceWebhook.cs │ │ ├── ItemizedDetails.cs │ │ ├── MinerFees.cs │ │ ├── MinerFeesItem.cs │ │ ├── RecipientStatus.cs │ │ ├── Refund.cs │ │ ├── RefundInfo.cs │ │ ├── RefundStatus.cs │ │ ├── RefundWebhook.cs │ │ ├── Shopper.cs │ │ ├── Status.cs │ │ ├── SupportedTransactionCurrencies.cs │ │ ├── SupportedTransactionCurrency.cs │ │ └── UniversalCodes.cs │ ├── Ledger │ │ ├── Buyer.cs │ │ ├── Ledger.cs │ │ └── LedgerEntry.cs │ ├── Payout │ │ ├── Payout.cs │ │ ├── PayoutGroup.cs │ │ ├── PayoutGroupFailed.cs │ │ ├── PayoutRecipient.cs │ │ ├── PayoutRecipients.cs │ │ ├── PayoutTransaction.cs │ │ ├── PayoutWebhook.cs │ │ ├── RecipientReferenceMethod.cs │ │ ├── RecipientStatus.cs │ │ ├── RecipientWebhook.cs │ │ └── Status.cs │ ├── Policy.cs │ ├── Rate │ │ ├── Rate.cs │ │ └── Rates.cs │ ├── Settlement │ │ ├── InvoiceData.cs │ │ ├── PayoutInfo.cs │ │ ├── RefundInfo.cs │ │ ├── Settlement.cs │ │ ├── SettlementLedgerEntry.cs │ │ └── WithHoldings.cs │ ├── Token.cs │ └── Wallet │ │ ├── Currencies.cs │ │ ├── Qr.cs │ │ └── Wallet.cs ├── PosToken.cs ├── PrivateKey.cs └── Utils │ ├── GuidGenerator.cs │ ├── IGuidGenerator.cs │ └── UuidGenerator.cs ├── BitPayFunctionalTest ├── .gitignore ├── BitPayFunctionalTest.cs ├── BitPayFunctionalTest.csproj └── Usings.cs ├── BitPaySetup ├── BitPaySetup.csproj ├── GUIDE.md ├── Models │ └── BitPayConfigurationModel.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── README.md ├── BitPayUnitTest ├── BitPay.config.json ├── BitPayUnitTest.csproj ├── ClientTest.cs ├── Clients │ └── HttpResponseParserTest.cs ├── Logger │ └── LoggerProviderTest.cs ├── Usings.cs └── json │ ├── authorizeClientByFacadeResponse.json │ ├── cancelInvoiceSuccessResponse.json │ ├── cancelPayoutGroupResponse.json │ ├── cancelRefundResponse.json │ ├── createBillRequest.json │ ├── createBillResponse.json │ ├── createInvoiceRequest.json │ ├── createInvoiceResponse.json │ ├── createPayoutGroupRequest.json │ ├── createPayoutGroupResponse.json │ ├── createPayoutRequest.json │ ├── createPayoutResponse.json │ ├── createRefundResponse.json │ ├── getBillsResponse.json │ ├── getCurrenciesResponse.json │ ├── getInvoiceEventToken.json │ ├── getInvoiceResponse.json │ ├── getInvoicesResponse.json │ ├── getLedgerEntriesResponse.json │ ├── getLedgersResponse.json │ ├── getPayoutRecipientResponse.json │ ├── getPayoutRecipientsResponse.json │ ├── getPayoutResponse.json │ ├── getPayoutsResponse.json │ ├── getRateResponse.json │ ├── getRatesResponse.json │ ├── getRefundResponse.json │ ├── getRefundsByInvoiceId.json │ ├── getSettlementReconciliationReportResponse.json │ ├── getSettlementResponse.json │ ├── getSettlementsResponse.json │ ├── getSupportedWallets.json │ ├── invoiceWebhookResponse.json │ ├── sendPayoutNotificationResponse.json │ ├── sendRefundNotificationResponse.json │ ├── submitPayoutRecipientsRequest.json │ ├── submitPayoutRecipientsResponse.json │ ├── updateBillRequest.json │ ├── updateBillResponse.json │ ├── updateInvoiceResponse.json │ ├── updatePayoutRecipientResponse.json │ └── updateRefundResponse.json ├── Directory.Build.props ├── LICENSE ├── README.md ├── examples ├── General │ └── UseLogger.md ├── Merchant │ ├── BillRequests.md │ ├── InvoiceRequests.md │ ├── LedgerRequests.md │ ├── RefundRequests.md │ └── SettlementRequests.md ├── Payout │ ├── PayoutRequests.md │ └── RecipientRequests.md ├── Pos │ ├── BillRequests.md │ └── InvoiceRequests.md ├── Public │ ├── RateRequests.md │ └── WalletRequests.md └── Requests.md ├── global.json └── screenshots ├── logo.png ├── utility-setup-env.png ├── utility-setup-facade.png ├── utility-setup-init.png ├── utility-setup-menu.png └── utility-setup-pair.png /.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-tool-exec": { 6 | "version": "3.1.1", 7 | "commands": [ 8 | "execute" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /.dotnetexec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BitPay", 3 | "entrypoint": "/bin/bash", 4 | "commands": { 5 | "setup": [ 6 | "dotnet run --project BitPaySetup --framework net8.0" 7 | ], 8 | "setup-9": [ 9 | "dotnet run --project BitPaySetup --framework net9.0" 10 | ], 11 | "setup-48": [ 12 | "dotnet run --project BitPaySetup --framework net48" 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "nuget" 9 | directory: "/" 10 | schedule: 11 | interval: "daily" 12 | -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/BitPaySetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/BitPaySetup.exe -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net Setup utility/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net Setup utility/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net452/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net452/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.AppContext.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Console.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.IO.Compression.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Net.Sockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net46/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net46/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.AppContext.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Collections.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ComponentModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Console.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Data.Common.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Globalization.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.Compression.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.Pipes.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.IO.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Linq.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Ping.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Requests.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Security.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.Sockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ObjectModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Reflection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Resources.Reader.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Resources.Writer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Claims.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.Principal.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Security.SecureString.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Text.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.Thread.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.Timer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Threading.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.XPath.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net461/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net461/netstandard.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.AppContext.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Collections.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ComponentModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Console.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Data.Common.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Globalization.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.Compression.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.Pipes.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.IO.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Linq.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Ping.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Requests.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Security.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.Sockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ObjectModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Reflection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Resources.Reader.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Resources.Writer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Claims.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.Principal.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Security.SecureString.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Text.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.Thread.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.Timer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Threading.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.ValueTuple.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.XPath.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net462/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net462/netstandard.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.AppContext.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Collections.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ComponentModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Console.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Data.Common.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Globalization.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.Compression.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.Pipes.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.IO.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Linq.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Ping.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Requests.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Security.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.Sockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ObjectModel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Reflection.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Resources.Reader.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Resources.Writer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Claims.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.Principal.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Security.SecureString.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Text.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.Thread.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.Timer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Threading.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.XPath.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net47/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net47/netstandard.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Data.Common.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.IO.Compression.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Net.Sockets.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Security.SecureString.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net471/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net471/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Buffers.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.IO.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Memory.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Net.Http.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Runtime.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/net472/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/netcoreapp2.0/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/netcoreapp2.0/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/netcoreapp2.1/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/netcoreapp2.1/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/netcoreapp2.2/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/netcoreapp2.2/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib/netstandard2.0/BitPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib/netstandard2.0/BitPay.dll -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_3.0.1907.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_3.0.1907.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_3.1.1912.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_3.1.1912.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_3.2.2001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_3.2.2001.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_3.3.2003.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_3.3.2003.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.0.2104.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.0.2104.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.1.2111.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.1.2111.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.2.2111.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.2.2111.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.3.2202.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.3.2202.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.3.2203.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.3.2203.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net.Lib_4.4.2203.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net.Lib_4.4.2203.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net_Setup_utility_3.1.1912.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net_Setup_utility_3.1.1912.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.Net_Setup_utility_4.3.2203.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/Assemblies/BitPay.Net_Setup_utility_4.3.2203.zip -------------------------------------------------------------------------------- /Assemblies/BitPay.config.json.dist: -------------------------------------------------------------------------------- 1 | { 2 | "BitPayConfiguration": { 3 | "Environment": "", 4 | "EnvConfig": { 5 | "Test": { 6 | "PrivateKeyPath": "", 7 | "ApiTokens": { 8 | "merchant": "", 9 | "payout": "" 10 | } 11 | }, 12 | "Prod": { 13 | "PrivateKeyPath": "", 14 | "ApiTokens": { 15 | "merchant": "", 16 | "payout": "" 17 | } 18 | } 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /BitPay/Clients/ResourceClientUtil.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | namespace BitPay.Clients 7 | { 8 | public static class ResourceClientUtil 9 | { 10 | public static Dictionary InitParams() 11 | { 12 | return new Dictionary(); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /BitPay/Config.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public static class Config 7 | { 8 | public const string TestUrl = "https://test.bitpay.com/"; 9 | public const string ProdUrl = "https://bitpay.com/"; 10 | public const string BitPayApiVersion = "2.0.0"; 11 | public const string BitPayPluginInfo = "BitPay_DotNet_Client_v6.0.0"; 12 | public const string BitPayApiFrame = "std"; 13 | public const string BitPayApiFrameVersion = "1.0.0"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /BitPay/ConfigFilePath.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public class ConfigFilePath 7 | { 8 | private readonly string _value; 9 | 10 | public ConfigFilePath(string value) 11 | { 12 | _value = value; 13 | } 14 | 15 | public string Value() 16 | { 17 | return _value; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BitPay/Environment.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public enum Environment 7 | { 8 | Test, 9 | Prod 10 | } 11 | } -------------------------------------------------------------------------------- /BitPay/Exceptions/BitPayApiException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | using System.Runtime.Serialization; 6 | 7 | namespace BitPay.Exceptions 8 | { 9 | /// 10 | /// Provides an API specific exception handler. 11 | /// 12 | [Serializable] 13 | public class BitPayApiException : BitPayException 14 | { 15 | private readonly string? _code; 16 | 17 | public BitPayApiException(string message) : base(message) 18 | { 19 | } 20 | 21 | public BitPayApiException(string message, string code) : base(message) 22 | { 23 | this._code = code; 24 | } 25 | 26 | public string? Code 27 | { 28 | get 29 | { 30 | return _code; 31 | } 32 | } 33 | 34 | protected BitPayApiException(SerializationInfo info, StreamingContext context) : base(info, context) 35 | { 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /BitPay/Exceptions/BitPayException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | using System.Runtime.Serialization; 6 | 7 | namespace BitPay.Exceptions 8 | { 9 | /// 10 | /// Provides an common BitPay exception. 11 | /// 12 | [Serializable] 13 | public class BitPayException : Exception 14 | { 15 | public BitPayException(string message) : base(message) 16 | { 17 | } 18 | 19 | protected BitPayException(SerializationInfo info, StreamingContext context) : base(info, context) 20 | { 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /BitPay/Exceptions/BitPayGenericException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | using System.Runtime.Serialization; 6 | 7 | namespace BitPay.Exceptions 8 | { 9 | /// 10 | /// Provides generic exception. 11 | /// 12 | [Serializable] 13 | public class BitPayGenericException : BitPayException 14 | { 15 | public BitPayGenericException(string message) : base(message) 16 | { 17 | } 18 | 19 | protected BitPayGenericException(SerializationInfo info, StreamingContext context) : base(info, context) 20 | { 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /BitPay/Exceptions/BitPayValidationException.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | using System.Runtime.Serialization; 6 | 7 | namespace BitPay.Exceptions 8 | { 9 | /// 10 | /// Provides validation exception. 11 | /// 12 | [Serializable] 13 | public class BitPayValidationException : BitPayGenericException 14 | { 15 | public BitPayValidationException(string message) : base(message) 16 | { 17 | } 18 | 19 | protected BitPayValidationException(SerializationInfo info, StreamingContext context) : base(info, context) 20 | { 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /BitPay/Facade.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public static class Facade 7 | { 8 | public const string Merchant = "merchant"; 9 | public const string Payout = "payout"; 10 | public const string Pos = "pos"; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /BitPay/Logger/EmptyLogger.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Logger 5 | { 6 | public class EmptyLogger : IBitPayLogger 7 | { 8 | public void LogRequest(string method, string endpoint, string? json) 9 | { 10 | } 11 | 12 | public void LogResponse(string method, string endpoint, string? json) 13 | { 14 | } 15 | 16 | public void LogError(string message) 17 | { 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BitPay/Logger/IBitPayLogger.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Logger 5 | { 6 | public interface IBitPayLogger 7 | { 8 | void LogRequest( 9 | string method, 10 | string endpoint, 11 | string? json 12 | ); 13 | 14 | void LogResponse( 15 | string method, 16 | string endpoint, 17 | string? json 18 | ); 19 | 20 | void LogError(string message); 21 | } 22 | } -------------------------------------------------------------------------------- /BitPay/Logger/LoggerProvider.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | 6 | namespace BitPay.Logger 7 | { 8 | public static class LoggerProvider 9 | { 10 | private static IBitPayLogger? s_logger; 11 | 12 | public static IBitPayLogger GetLogger() 13 | { 14 | if (s_logger == null) 15 | { 16 | s_logger = new EmptyLogger(); 17 | } 18 | 19 | return s_logger; 20 | } 21 | 22 | public static void SetLogger(IBitPayLogger logger) 23 | { 24 | s_logger = logger; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /BitPay/Models/Bill/Item.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Bill 7 | { 8 | public class Item 9 | { 10 | [JsonProperty(PropertyName = "price")] 11 | public decimal Price { get; set; } 12 | 13 | [JsonProperty(PropertyName = "quantity")] 14 | public int Quantity { get; set; } 15 | 16 | [JsonProperty(PropertyName = "id")] 17 | public string? Id { get; set; } 18 | 19 | [JsonProperty(PropertyName = "description")] 20 | public string? Description { get; set; } 21 | 22 | public Item(decimal price, int quantity) 23 | { 24 | Price = price; 25 | Quantity = quantity; 26 | } 27 | 28 | public bool ShouldSerializeId() 29 | { 30 | return false; 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /BitPay/Models/Bill/Status.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Bill 5 | { 6 | public static class Status 7 | { 8 | public const string Draft = "draft"; 9 | public const string Sent = "sent"; 10 | public const string New = "new"; 11 | public const string Paid = "paid"; 12 | public const string Complete = "complete"; 13 | } 14 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/InvoiceEventToken.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Invoice 9 | { 10 | public class InvoiceEventToken 11 | { 12 | [JsonProperty(PropertyName = "token")] 13 | public string? Token { get; set; } 14 | 15 | [JsonProperty(PropertyName = "events")] 16 | public List? Events { get; set; } 17 | 18 | [JsonProperty(PropertyName = "actions")] 19 | public List? Actions { get; set; } 20 | 21 | public bool ShouldSerializeToken() 22 | { 23 | return !string.IsNullOrEmpty(Token); 24 | } 25 | 26 | public bool ShouldSerializeEvents() 27 | { 28 | return true; 29 | } 30 | 31 | public bool ShouldSerializeActions() 32 | { 33 | return true; 34 | } 35 | 36 | } 37 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/InvoiceRefundAddress.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Invoice 9 | { 10 | public class InvoiceRefundAddress 11 | { 12 | public InvoiceRefundAddress(string type, DateTime date) 13 | { 14 | Type = type; 15 | Date = date; 16 | } 17 | 18 | [JsonProperty(PropertyName = "type")] 19 | public string Type { get; set; } 20 | 21 | [JsonProperty(PropertyName = "date")] 22 | public DateTime Date { get; set; } 23 | 24 | [JsonProperty(PropertyName = "tag")] 25 | public int? Tag { get; set; } 26 | 27 | [JsonProperty(PropertyName = "email")] 28 | public string? Email { get; set; } 29 | } 30 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/ItemizedDetails.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Invoice 7 | { 8 | public class ItemizedDetails 9 | { 10 | [JsonProperty(PropertyName = "amount")] 11 | public decimal? Amount { get; set; } 12 | 13 | [JsonProperty(PropertyName = "description")] 14 | public string? Description { get; set; } 15 | 16 | [JsonProperty(PropertyName = "isFee")] 17 | public bool? IsFee { get; set; } 18 | 19 | public bool ShouldSerializeAmount() 20 | { 21 | return false; 22 | } 23 | 24 | public bool ShouldSerializeDescription() 25 | { 26 | return !string.IsNullOrEmpty(Description); 27 | } 28 | 29 | public bool ShouldSerializeIsFee() 30 | { 31 | return false; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /BitPay/Models/Invoice/MinerFeesItem.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Invoice 7 | { 8 | public class MinerFeesItem 9 | { 10 | [JsonProperty(PropertyName = "satoshisPerByte")] 11 | public int? SatoshisPerByte { get; set; } 12 | 13 | [JsonProperty(PropertyName = "totalFee")] 14 | public int? TotalFee { get; set; } 15 | 16 | [JsonProperty(PropertyName = "fiatAmount")] 17 | public decimal? FiatAmount { get; set; } 18 | 19 | public bool ShouldSerializeFiatAmount() 20 | { 21 | return FiatAmount.HasValue; 22 | } 23 | 24 | public bool ShouldSerializeSatoshisPerByte() 25 | { 26 | return FiatAmount.HasValue; 27 | } 28 | 29 | public bool ShouldSerializeTotalFee() 30 | { 31 | return FiatAmount.HasValue; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /BitPay/Models/Invoice/RecipientStatus.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Invoice 5 | { 6 | public static class RecipientStatus 7 | { 8 | public const string Active = "active"; 9 | public const string Invited = "invited"; 10 | public const string Paused = "paused"; 11 | public const string Removed = "removed"; 12 | public const string Unverified = "unverified"; 13 | public const string Verified = "verified"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /BitPay/Models/Invoice/RefundInfo.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Invoice 9 | { 10 | public class RefundInfo 11 | { 12 | [JsonProperty(PropertyName = "supportRequest")] 13 | public string? SupportRequest { get; set; } 14 | 15 | [JsonProperty(PropertyName = "currency")] 16 | public string? Currency { get; set; } 17 | 18 | [JsonProperty(PropertyName = "amounts")] 19 | public Dictionary? Amounts { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /BitPay/Models/Invoice/RefundStatus.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Invoice 5 | { 6 | public static class RefundStatus 7 | { 8 | public const string Preview = "preview"; 9 | public const string Created = "created"; 10 | public const string Pending = "pending"; 11 | public const string Canceled = "canceled"; 12 | public const string Success = "success"; 13 | public const string Failure = "failure"; 14 | } 15 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/Shopper.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Invoice 7 | { 8 | public class Shopper 9 | { 10 | [JsonProperty(PropertyName = "user")] 11 | public string? User { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /BitPay/Models/Invoice/Status.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Invoice 5 | { 6 | public static class Status 7 | { 8 | public const string New = "new"; 9 | public const string Paid = "paid"; 10 | public const string Confirmed = "confirmed"; 11 | public const string Complete = "complete"; 12 | public const string Expired = "expired"; 13 | public const string Invalid = "invalid"; 14 | public const string Declined = "declined"; 15 | } 16 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/SupportedTransactionCurrencies.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | 7 | namespace BitPay.Models.Invoice 8 | { 9 | public class SupportedTransactionCurrencies 10 | { 11 | public Dictionary SupportedCurrencies { get; set; } 12 | 13 | public SupportedTransactionCurrencies(Dictionary supportedCurrencies) 14 | { 15 | SupportedCurrencies = supportedCurrencies; 16 | } 17 | 18 | public SupportedTransactionCurrency? GetSupportedCurrency(string currency) 19 | { 20 | if (SupportedCurrencies.TryGetValue(currency, out SupportedTransactionCurrency? value)) 21 | { 22 | return value; 23 | } 24 | 25 | return null; 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/SupportedTransactionCurrency.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Invoice 7 | { 8 | public class SupportedTransactionCurrency 9 | { 10 | [JsonProperty(PropertyName = "enabled")] 11 | public bool Enabled { get; set; } 12 | 13 | [JsonProperty(PropertyName = "reason")] 14 | public string? Reason { get; set; } 15 | 16 | public SupportedTransactionCurrency(bool enabled) 17 | { 18 | Enabled = enabled; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /BitPay/Models/Invoice/UniversalCodes.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Invoice 7 | { 8 | public class UniversalCodes 9 | { 10 | [JsonProperty(PropertyName = "paymentString")] public string? PaymentString { get; set; } 11 | 12 | [JsonProperty(PropertyName = "verificationLink")] public string? VerificationLink { get; set; } 13 | 14 | public bool ShouldSerializePaymentString() 15 | { 16 | return !string.IsNullOrEmpty(PaymentString); 17 | } 18 | 19 | public bool ShouldSerializeVerificationLink() 20 | { 21 | return !string.IsNullOrEmpty(VerificationLink); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /BitPay/Models/Ledger/Ledger.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Ledger 7 | { 8 | public class Ledger 9 | { 10 | [JsonProperty(PropertyName = "currency")] public string Currency { get; set; } 11 | 12 | [JsonProperty(PropertyName = "balance")] public decimal Balance { get; set; } 13 | 14 | public Ledger(string currency, decimal balance) 15 | { 16 | Currency = currency; 17 | Balance = balance; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/PayoutGroup.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Payout 9 | { 10 | public class PayoutGroup 11 | { 12 | [JsonProperty(PropertyName = "created")] 13 | public List Payouts { get; private set; } = new(); 14 | 15 | [JsonProperty(PropertyName = "failed")] 16 | public List Failed { get; } = new(); 17 | 18 | [JsonProperty(PropertyName = "cancelled")] 19 | private List Cancelled { set { Payouts = value; } } 20 | } 21 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/PayoutGroupFailed.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Payout 7 | { 8 | public class PayoutGroupFailed 9 | { 10 | [JsonProperty(PropertyName = "errMessage")] 11 | public string ErrMessage { get; set; } 12 | 13 | [JsonProperty(PropertyName = "payoutId")] 14 | public string? PayoutId { get; set; } 15 | 16 | [JsonProperty(PropertyName = "payee")] 17 | public string? Payee { get; set; } 18 | 19 | public PayoutGroupFailed(string errMessage, string? payoutId = null, string? payee = null) 20 | { 21 | ErrMessage = errMessage; 22 | PayoutId = payoutId; 23 | Payee = payee; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/PayoutTransaction.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Payout 9 | { 10 | public class PayoutInstructionTransaction 11 | { 12 | [JsonProperty(PropertyName = "amount")] 13 | public decimal Amount { get; set; } 14 | 15 | [JsonProperty(PropertyName = "txid")] 16 | public string? Txid { get; set; } 17 | 18 | [JsonProperty(PropertyName = "date")] 19 | public DateTime? Date { get; set; } 20 | 21 | [JsonProperty(PropertyName = "confirmations")] 22 | public int? Confirmations { get; set; } 23 | 24 | public PayoutInstructionTransaction(decimal amount) 25 | { 26 | Amount = amount; 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/RecipientReferenceMethod.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Payout 5 | { 6 | public static class RecipientReferenceMethod 7 | { 8 | public const int Email = 1; 9 | public const int RecipientId = 2; 10 | public const int ShopperId = 3; 11 | } 12 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/RecipientStatus.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Payout 5 | { 6 | public static class RecipientStatus 7 | { 8 | public const string Invited = "invited"; 9 | public const string Unverified = "unverified"; 10 | public const string Verified = "verified"; 11 | public const string Active = "active"; 12 | public const string Paused = "paused"; 13 | public const string Removed = "removed"; 14 | } 15 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/RecipientWebhook.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Payout 7 | { 8 | public class RecipientWebhook 9 | { 10 | [JsonProperty(PropertyName = "email")] 11 | public string? Email { get; set; } 12 | 13 | [JsonProperty(PropertyName = "id")] 14 | public string? Id { get; set; } 15 | 16 | [JsonProperty(PropertyName = "label")] 17 | public string? Label { get; set; } 18 | 19 | [JsonProperty(PropertyName = "shopperId")] 20 | public string? ShopperId { get; set; } 21 | 22 | [JsonProperty(PropertyName = "status")] 23 | public string? Status { get; set; } 24 | } 25 | } -------------------------------------------------------------------------------- /BitPay/Models/Payout/Status.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Models.Payout 5 | { 6 | public static class Status 7 | { 8 | public const string New = "new"; 9 | public const string Funded = "funded"; 10 | public const string Processing = "processing"; 11 | public const string Complete = "complete"; 12 | public const string Failed = "failed"; 13 | public const string Cancelled = "cancelled"; 14 | public const string Paid = "paid"; 15 | public const string Unpaid = "unpaid"; 16 | } 17 | } -------------------------------------------------------------------------------- /BitPay/Models/Policy.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models 9 | { 10 | /// 11 | /// Provides BitPay token policy information. 12 | /// 13 | public class Policy 14 | { 15 | [JsonProperty(PropertyName = "policy")] 16 | public string Value { get; set; } 17 | 18 | [JsonProperty(PropertyName = "method")] 19 | public string Method { get; set; } 20 | 21 | [JsonProperty(PropertyName = "params")] 22 | public List? Params { get; set; } 23 | 24 | public Policy(string value, string method) 25 | { 26 | Value = value; 27 | Method = method; 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /BitPay/Models/Rate/Rate.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Rate 7 | { 8 | /// 9 | /// Provides an interface to a single exchange rate. 10 | /// 11 | public class Rate 12 | { 13 | [JsonProperty(PropertyName = "name")] public string Name { get; set; } 14 | 15 | [JsonProperty(PropertyName = "code")] public string Code { get; set; } 16 | 17 | [JsonProperty(PropertyName = "rate")] public decimal Value { get; set; } 18 | 19 | public Rate(string name, string code, decimal value) 20 | { 21 | Name = name; 22 | Code = code; 23 | Value = value; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /BitPay/Models/Settlement/RefundInfo.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System.Collections.Generic; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Settlement 9 | { 10 | public class RefundInfo 11 | { 12 | [JsonProperty(PropertyName = "supportRequest")] 13 | public string? SupportRequest { get; set; } 14 | 15 | [JsonProperty(PropertyName = "currency")] 16 | public string? Currency { get; set; } 17 | 18 | [JsonProperty(PropertyName = "amounts")] 19 | public Dictionary? Amounts { get; set; } 20 | 21 | [JsonProperty(PropertyName = "refundRequestEid")] 22 | public string? RefundRequestEid { get; set; } 23 | } 24 | } -------------------------------------------------------------------------------- /BitPay/Models/Settlement/SettlementLedgerEntry.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | 6 | using Newtonsoft.Json; 7 | 8 | namespace BitPay.Models.Settlement 9 | { 10 | public class SettlementLedgerEntry 11 | { 12 | [JsonProperty(PropertyName = "code")] 13 | public int Code { get; set; } 14 | 15 | [JsonProperty(PropertyName = "amount")] 16 | public decimal Amount { get; set; } 17 | 18 | [JsonProperty(PropertyName = "timestamp")] 19 | public DateTime? Timestamp { get; set; } 20 | 21 | [JsonProperty(PropertyName = "invoiceId")] 22 | public string? InvoiceId { get; set; } 23 | 24 | [JsonProperty(PropertyName = "description")] 25 | public string? Description { get; set; } 26 | 27 | [JsonProperty(PropertyName = "reference")] 28 | public string? Reference { get; set; } 29 | 30 | [JsonProperty(PropertyName = "invoiceData")] 31 | public InvoiceData? InvoiceData { get; set; } 32 | } 33 | } -------------------------------------------------------------------------------- /BitPay/Models/Settlement/WithHoldings.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Settlement 7 | { 8 | public class WithHoldings 9 | { 10 | [JsonProperty(PropertyName = "amount")] 11 | public decimal? Amount { get; set; } 12 | 13 | [JsonProperty(PropertyName = "code")] 14 | public string? Code { get; set; } 15 | 16 | [JsonProperty(PropertyName = "description")] 17 | public string? Description { get; set; } 18 | 19 | [JsonProperty(PropertyName = "notes")] 20 | public string? Notes { get; set; } 21 | 22 | [JsonProperty(PropertyName = "label")] 23 | public string? Label { get; set; } 24 | 25 | [JsonProperty(PropertyName = "bankCountry")] 26 | public string? BankCountry { get; set; } 27 | } 28 | } -------------------------------------------------------------------------------- /BitPay/Models/Wallet/Qr.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using Newtonsoft.Json; 5 | 6 | namespace BitPay.Models.Wallet 7 | { 8 | public class Qr 9 | { 10 | [JsonProperty(PropertyName = "type")] 11 | public string? Type { get; set; } 12 | 13 | [JsonProperty(PropertyName = "collapsed")] 14 | public bool? Collapsed { get; set; } 15 | 16 | public bool ShouldSerializeType() 17 | { 18 | return !string.IsNullOrEmpty(Type); 19 | } 20 | 21 | public bool ShouldSerializeCollapsed() 22 | { 23 | return false; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /BitPay/PosToken.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public class PosToken 7 | { 8 | private readonly string _value; 9 | 10 | public PosToken(string value) 11 | { 12 | _value = value; 13 | } 14 | 15 | public string Value() 16 | { 17 | return _value; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BitPay/PrivateKey.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay 5 | { 6 | public class PrivateKey 7 | { 8 | private readonly string _value; 9 | 10 | public PrivateKey(string value) 11 | { 12 | _value = value; 13 | } 14 | 15 | public string Value() 16 | { 17 | return _value; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BitPay/Utils/GuidGenerator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace BitPay.Utils 4 | { 5 | public class GuidGenerator 6 | { 7 | public string Execute() { 8 | Guid guid = Guid.NewGuid(); 9 | 10 | return guid.ToString(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /BitPay/Utils/IGuidGenerator.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | namespace BitPay.Utils 5 | { 6 | public interface IGuidGenerator 7 | { 8 | string Execute(); 9 | } 10 | } -------------------------------------------------------------------------------- /BitPay/Utils/UuidGenerator.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using System; 5 | 6 | namespace BitPay.Utils 7 | { 8 | public class UuidGenerator : IGuidGenerator 9 | { 10 | public string Execute() 11 | { 12 | Guid guid = Guid.NewGuid(); 13 | 14 | return guid.ToString(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /BitPayFunctionalTest/.gitignore: -------------------------------------------------------------------------------- 1 | BitPay.config.json 2 | email.txt -------------------------------------------------------------------------------- /BitPayFunctionalTest/BitPayFunctionalTest.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | enable 5 | false 6 | BitPayFunctionalTest 7 | 8 | 9 | 10 | 11 | 12 | 13 | runtime; build; native; contentfiles; analyzers; buildtransitive 14 | all 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /BitPayFunctionalTest/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /BitPaySetup/BitPaySetup.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | enable 5 | false 6 | false 7 | false 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /BitPayUnitTest/BitPay.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "BitPayConfiguration": { 3 | "Environment": "Test", 4 | "EnvConfig": { 5 | "Test": { 6 | "PrivateKeyPath": "", 7 | "PrivateKey": "75371435315047800683080420474719166774492308988314944856528163960396135344086", 8 | "ApiTokens": { 9 | "merchant": "merchantToken", 10 | "payout": "payoutToken" 11 | } 12 | }, 13 | "Prod": { 14 | "PrivateKeyPath": "", 15 | "PrivateKey": "", 16 | "ApiTokens": { 17 | "merchant": "", 18 | "payout": "" 19 | } 20 | } 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /BitPayUnitTest/Logger/LoggerProviderTest.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | using BitPay.Logger; 5 | 6 | namespace BitPayUnitTest.Logger 7 | { 8 | public class LoggerProviderTest 9 | { 10 | [Fact] 11 | public void it_should_get_default_logger() 12 | { 13 | Assert.IsType(LoggerProvider.GetLogger()); 14 | } 15 | 16 | [Fact] 17 | public void it_should_set_logger() 18 | { 19 | var testLogger = new TestLogger(); 20 | LoggerProvider.SetLogger(testLogger); 21 | 22 | Assert.Same(testLogger, LoggerProvider.GetLogger()); 23 | } 24 | } 25 | 26 | class TestLogger : IBitPayLogger 27 | { 28 | public void LogRequest(string method, string endpoint, string? json) 29 | { 30 | } 31 | 32 | public void LogResponse(string method, string endpoint, string? json) 33 | { 34 | } 35 | 36 | public void LogError(string message) 37 | { 38 | } 39 | } 40 | } -------------------------------------------------------------------------------- /BitPayUnitTest/Usings.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 BitPay. 2 | // All rights reserved. 3 | 4 | global using Xunit; -------------------------------------------------------------------------------- /BitPayUnitTest/json/authorizeClientByFacadeResponse.json: -------------------------------------------------------------------------------- 1 | {"data":[{"policies":[{"policy":"id","method":"inactive","params":["Tf2yXsY49iFyDfxt3b2kf9VPRMwPxxAyCRW"]}],"token":"G7XM9fcM1gtCN7DUr8ZWtPGVFLTKiYWanHR4kvqsnjP3","facade":"merchant","label":"merchantwebsite.com","dateCreated":1621340364865,"pairingExpiration":1621426764865,"pairingCode":"C4Lg7oW"}]} -------------------------------------------------------------------------------- /BitPayUnitTest/json/cancelRefundResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "id": "WoE46gSLkJQS48RJEiNw3L", 4 | "invoice": "Hpqc63wvE1ZjzeeH4kEycF", 5 | "reference": "Test refund", 6 | "status": "cancelled", 7 | "amount": 10, 8 | "transactionCurrency": "BTC", 9 | "transactionAmount": 0.000594, 10 | "transactionRefundFee": 0.000002, 11 | "currency": "USD", 12 | "lastRefundNotification": "2021-08-29T20:45:35.368Z", 13 | "refundFee": 0.04, 14 | "immediate": false, 15 | "buyerPaysRefundFee": false, 16 | "requestDate": "2021-08-29T20:45:34.000Z" 17 | } 18 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/createBillRequest.json: -------------------------------------------------------------------------------- 1 | {"token":"merchantToken","currency":"USD","email":"23242","items":[{"price":6.00,"quantity":1,"description":null},{"price":4.00,"quantity":1,"description":"Test Item 2"}],"number":"bill1234-ABCD","name":"John Doe","address1":"2630 Hegal Place","address2":"Apt 42","city":"Alexandria","state":"VA","zip":"23242","country":"US","cc":["jane@doe.com"],"phone":"555-123-456","dueDate":"2021-5-31","passProcessingFee":true} -------------------------------------------------------------------------------- /BitPayUnitTest/json/createInvoiceRequest.json: -------------------------------------------------------------------------------- 1 | {"guid":"37bd36bd-6fcb-409c-a907-47f9244302aa","token":"merchantToken","price":10.0,"currency":"USD","orderId":"37bd36bd-6fcb-409c-a907-47f9244302aa","itemDesc":"Example","notificationURL":"https://notification.url/aaa","transactionSpeed":"medium","fullNotifications":true,"autoRedirect":true,"extendedNotifications":true,"notificationEmail":"m.warzybok@sumoheavy.com","forcedBuyerSelectedWallet":"bitpay","buyer":{"name":"Marcin","address1":"SomeStreet","address2":"911","locality":"Washington","region":"District of Columbia","postalCode":"20000","country":"USA","email":"buyer@buyeremaildomain.com","notify":true}} -------------------------------------------------------------------------------- /BitPayUnitTest/json/createPayoutGroupRequest.json: -------------------------------------------------------------------------------- 1 | {"instructions":[{"amount":10.00,"currency":"USD","ledgerCurrency":"GBP","reference":"payout_20210527","notificationEmail":"merchant@email.com","notificationURL":"https://yournotiticationURL.com/wed3sa0wx1rz5bg0bv97851eqx","email":"john@doe.com","label":"John Doe"},{"amount":10.00,"currency":"USD","ledgerCurrency":"GBP","reference":"payout_20210527","notificationEmail":"merchant@email.com","notificationURL":"https://yournotiticationURL.com/wed3sa0wx1rz5bg0bv97851eqx","email":"john@doe.com","label":"John Doe"}],"token":"payoutToken"} -------------------------------------------------------------------------------- /BitPayUnitTest/json/createPayoutRequest.json: -------------------------------------------------------------------------------- 1 | {"token":"payoutToken","amount":10.00,"currency":"USD","ledgerCurrency":"GBP","reference":"payout_20210527","notificationEmail":"merchant@email.com","notificationURL":"https://yournotiticationURL.com/wed3sa0wx1rz5bg0bv97851eqx","email":"john@doe.com","label":"John Doe"} -------------------------------------------------------------------------------- /BitPayUnitTest/json/createPayoutResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "payout/payout", 3 | "data": { 4 | "id": "JMwv8wQCXANoU2ZZQ9a9GH", 5 | "recipientId": "LDxRZCGq174SF8AnQpdBPB", 6 | "accountId": "SJcWZCFq344DL8QnXpdBNM", 7 | "shopperId": "7qohDf2zZnQK5Qanj8oyC2", 8 | "amount": 10, 9 | "currency": "USD", 10 | "ledgerCurrency": "GBP", 11 | "email": "john@doe.com", 12 | "reference": "payout_20210527", 13 | "label": "John Doe", 14 | "notificationURL": "https://yournotiticationURL.com/wed3sa0wx1rz5bg0bv97851eqx", 15 | "notificationEmail": "merchant@email.com", 16 | "effectiveDate": "2021-05-27T09:00:00.000Z", 17 | "requestDate": "2021-05-27T10:47:37.834Z", 18 | "status": "new", 19 | "transactions": [], 20 | "token": "6RZSTPtnzEaroAe2X4YijenRiqteRDNvzbT8NjtcHjUVd9FUFwa7dsX8RFgRDDC5SL" 21 | }, 22 | "status": "success", 23 | "message": null 24 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/createRefundResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "guid": "ee26b5e0-9185-493e-bc12-e846d5fcf07c", 4 | "id": "WoE46gSLkJQS48RJEiNw3L", 5 | "invoice": "Hpqc63wvE1ZjzeeH4kEycF", 6 | "reference": "Test refund", 7 | "status": "created", 8 | "amount": 10, 9 | "transactionCurrency": "BTC", 10 | "transactionAmount": 0.000594, 11 | "transactionRefundFee": 0.000002, 12 | "currency": "USD", 13 | "lastRefundNotification": "2021-08-29T20:45:35.368Z", 14 | "refundFee": 0.04, 15 | "immediate": false, 16 | "buyerPaysRefundFee": false, 17 | "requestDate": "2021-08-29T20:45:34.000Z" 18 | } 19 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getInvoiceEventToken.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "merchant/invoice", 3 | "data": { 4 | "url": "https://bitpay.com/events", 5 | "token": "4MuqDPt93i9Xbf8SnAPniwbGeNLW8A3ScgAmukFMgFUFRqTLuuhVdAFfePPysVqL2P", 6 | "events": [ 7 | "payment", 8 | "confirmation" 9 | ], 10 | "actions": [ 11 | "subscribe", 12 | "unsubscribe" 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getLedgersResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "currency": "EUR", 5 | "balance": 0 6 | }, 7 | { 8 | "currency": "USD", 9 | "balance": 2389.82 10 | }, 11 | { 12 | "currency": "BTC", 13 | "balance": 0.000287 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getPayoutRecipientResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "payout/recipient", 3 | "data": { 4 | "email": "john.smith@email.com", 5 | "label": "John Smith", 6 | "status": "invited", 7 | "id": "JA4cEtmBxCp5cybtnh1rds", 8 | "shopperId": null, 9 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXcejgPXVmZ4Ae3oGaCGBFKQf" 10 | } 11 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getPayoutRecipientsResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "payout/recipient", 3 | "data": [ 4 | { 5 | "email": "alice@email.com", 6 | "label": "Alice", 7 | "status": "invited", 8 | "id": "JA4cEtmBxCp5cybtnh1rds", 9 | "shopperId": null, 10 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXcejgPXVmZ4Ae3oGaCGBFKQf" 11 | }, 12 | { 13 | "email": "bob@email.com", 14 | "label": "Bob", 15 | "status": "invited", 16 | "id": "X3icwc4tE8KJ5hEPNPpDXW", 17 | "shopperId": null, 18 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXrrBAB9vRY3BVxGLbAa6uEx7" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getRateResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "code": "USD", 4 | "name": "US Dollar", 5 | "rate": 100.99 6 | } 7 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getRefundResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "guid": "ee26b5e0-9185-493e-bc12-e846d5fcf07c", 4 | "id": "WoE46gSLkJQS48RJEiNw3L", 5 | "invoice": "Hpqc63wvE1ZjzeeH4kEycF", 6 | "reference": "Test refund", 7 | "status": "created", 8 | "amount": 10, 9 | "transactionCurrency": "BTC", 10 | "transactionAmount": 0.000594, 11 | "transactionRefundFee": 0.000002, 12 | "currency": "USD", 13 | "lastRefundNotification": "2021-08-29T20:45:35.368Z", 14 | "refundFee": 0.04, 15 | "immediate": false, 16 | "buyerPaysRefundFee": false, 17 | "requestDate": "2021-08-29T20:45:34.000Z" 18 | } 19 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/getSettlementResponse.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "facade": "merchant/settlement", 4 | "data": { 5 | "id": "RPWTabW8urd3xWv2To989v", 6 | "accountId": "YJCgTf3jrXHkUVzLQ7y4eg", 7 | "status": "processing", 8 | "currency": "EUR", 9 | "payoutInfo": { 10 | "label": "Corporate account", 11 | "bankCountry": "Netherlands", 12 | "name": "Test Organization", 13 | "bank": "Test", 14 | "swift": "RABONL2U", 15 | "account": "NL85ABNA0000000000" 16 | }, 17 | "dateCreated": "2021-05-11T09:05:00.176Z", 18 | "dateExecuted": "2021-05-11T11:52:29.681Z", 19 | "openingDate": "2021-05-10T09:00:00.000Z", 20 | "closingDate": "2021-05-11T09:00:00.000Z", 21 | "openingBalance": 23.27, 22 | "ledgerEntriesSum": 20.82, 23 | "withholdings": [ 24 | { 25 | "amount": 8.21, 26 | "code": "W005", 27 | "description": "Pending Refunds" 28 | } 29 | ], 30 | "withholdingsSum": 8.21, 31 | "totalAmount": 35.88, 32 | "token": "2GrR6GDeYxUFYM9sDKViy6nFFTy4Rjvm1SYdLBjK46jkeJdgUTRccRfhtwkhNcuZky" 33 | } 34 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/invoiceWebhookResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "Success" 3 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/sendPayoutNotificationResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "success", 3 | "data": {}, 4 | "message": null 5 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/sendRefundNotificationResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "success", 3 | "data": {}, 4 | "message": null 5 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/submitPayoutRecipientsRequest.json: -------------------------------------------------------------------------------- 1 | {"guid":"37bd36bd-6fcb-409c-a907-47f9244302aa","token":"payoutToken","recipients":[{"email":"alice@email.com","label":"Alice","token":null},{"email":"bob@email.com","label":"Bob","token":null}]} -------------------------------------------------------------------------------- /BitPayUnitTest/json/submitPayoutRecipientsResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "payout/recipient", 3 | "data": [ 4 | { 5 | "email": "alice@email.com", 6 | "label": "Alice", 7 | "status": "invited", 8 | "id": "JA4cEtmBxCp5cybtnh1rds", 9 | "shopperId": null, 10 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXcejgPXVmZ4Ae3oGaCGBFKQf" 11 | }, 12 | { 13 | "email": "bob@email.com", 14 | "label": "Bob", 15 | "status": "invited", 16 | "id": "X3icwc4tE8KJ5hEPNPpDXW", 17 | "shopperId": null, 18 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXrrBAB9vRY3BVxGLbAa6uEx7" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/updateBillRequest.json: -------------------------------------------------------------------------------- 1 | {"token":null,"currency":"USD","email":"23242","items":[{"price":6.00,"quantity":1,"description":null},{"price":4.00,"quantity":1,"description":"Test Item 2"},{"price":5.00,"quantity":1,"description":"Test Item 3"}],"number":"bill1234-ABCD","name":"John Doe","address1":"2630 Hegal Place","address2":"Apt 42","city":"Alexandria","state":"VA","zip":"23242","country":"US","cc":["jane@doe.com"],"phone":"555-123-456","dueDate":"2021-5-31","passProcessingFee":true} -------------------------------------------------------------------------------- /BitPayUnitTest/json/updatePayoutRecipientResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "facade": "payout/recipient", 3 | "data": { 4 | "email": "bob@email.com", 5 | "label": "Bob123", 6 | "status": "invited", 7 | "id": "X3icwc4tE8KJ5hEPNPpDXW", 8 | "shopperId": null, 9 | "token": "2LVBntm7z92rnuVjVX5ZVaDoUEaoY4LxhZMMzPAMGyXrrBAB9vRY3BVxGLbAa6uEx7" 10 | } 11 | } -------------------------------------------------------------------------------- /BitPayUnitTest/json/updateRefundResponse.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "guid": "ee26b5e0-9185-493e-bc12-e846d5fcf07c", 4 | "id": "WoE46gSLkJQS48RJEiNw3L", 5 | "invoice": "Hpqc63wvE1ZjzeeH4kEycF", 6 | "reference": "Test refund", 7 | "status": "created", 8 | "amount": 10, 9 | "transactionCurrency": "BTC", 10 | "transactionAmount": 0.000594, 11 | "transactionRefundFee": 0.000002, 12 | "currency": "USD", 13 | "lastRefundNotification": "2021-08-29T20:45:35.368Z", 14 | "refundFee": 0.04, 15 | "immediate": false, 16 | "buyerPaysRefundFee": false, 17 | "requestDate": "2021-08-29T20:45:34.000Z" 18 | } 19 | } -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | enable 4 | latest 5 | net48;net8.0;net9.0 6 | 7 | -------------------------------------------------------------------------------- /examples/General/UseLogger.md: -------------------------------------------------------------------------------- 1 | ``` 2 | using BitPay; 3 | using BitPay.Logger; 4 | using BitPay.Models.Invoice; 5 | 6 | namespace Examples 7 | { 8 | public class UseLogger 9 | { 10 | public void execute() 11 | { 12 | IBitPayLogger logger = new SomeLogger(); 13 | LoggerProvider.SetLogger(logger); 14 | 15 | Client client = new Client(new PosToken("someToken")); 16 | Invoice invoice = client.GetInvoice("someInvoiceId").Result; 17 | } 18 | } 19 | 20 | public class SomeLogger : IBitPayLogger 21 | { 22 | public void LogRequest(string method, string endpoint, string? json) 23 | { 24 | // some implementation 25 | } 26 | 27 | public void LogResponse(string method, string endpoint, string? json) 28 | { 29 | // some implementation 30 | } 31 | 32 | public void LogError(string message) 33 | { 34 | // some implementation 35 | } 36 | } 37 | } 38 | ``` -------------------------------------------------------------------------------- /examples/Merchant/LedgerRequests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | using System; 3 | using System.Buffers.Text; 4 | 5 | namespace Examples.Merchant 6 | { 7 | public class LedgerRequests : Requests 8 | { 9 | public void GetLedgers() 10 | { 11 | var client = base.CreateClient(); 12 | 13 | var result = client.GetLedgers(); 14 | } 15 | 16 | public void GetLedgerEntries() 17 | { 18 | var client = base.CreateClient(); 19 | 20 | var today = DateTime.Now; 21 | 22 | var result = client.GetLedgerEntries("USD", today.AddDays(-1), today); 23 | } 24 | } 25 | } 26 | ``` -------------------------------------------------------------------------------- /examples/Merchant/SettlementRequests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | using System.Collections.Generic; 3 | 4 | using BitPay.Models.Settlement; 5 | 6 | namespace Examples.Merchant 7 | { 8 | public class SettlementRequests : Requests 9 | { 10 | public void GetSettlement() 11 | { 12 | var client = base.CreateClient(); 13 | 14 | var settlement = client.GetSettlement("someSettlementId"); 15 | 16 | var parameters = new Dictionary 17 | { 18 | {"currency", "USD"}, 19 | {"dateStart", "2023-08-14"}, 20 | {"dateEnd", "2023-08-17"} 21 | }; 22 | var settlements = client.GetSettlements(parameters); 23 | } 24 | 25 | public void FetchReconciliationReport() 26 | { 27 | var client = base.CreateClient(); 28 | 29 | var settlement = new Settlement(); 30 | 31 | var result = client.GetSettlementReconciliationReport("settlementId", "settlementToken"); 32 | } 33 | } 34 | } 35 | ``` -------------------------------------------------------------------------------- /examples/Pos/BillRequests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | using System.Collections.Generic; 3 | 4 | using BitPay.Models.Bill; 5 | 6 | namespace Examples.Pos 7 | { 8 | public class BillRequests 9 | { 10 | public void CreateBill() 11 | { 12 | var client = GetClient(); 13 | 14 | var bill = new Bill("USD", "someEmail@email.com", new List(), null) 15 | {Name = "SomeName", Address1 = "SomeAddress", City = "SomeCity"}; 16 | 17 | var createdBill = client.CreateBill(bill); 18 | } 19 | 20 | public void GetBill() 21 | { 22 | var client = GetClient(); 23 | 24 | var bill = client.GetBill("someBillId"); 25 | } 26 | 27 | public void DeliverBillViaEmail() 28 | { 29 | var client = GetClient(); 30 | 31 | var result = client.DeliverBill("someBillId", "myBillToken"); 32 | } 33 | 34 | private static Client GetClient() 35 | { 36 | return new(new PosToken("someToken")); 37 | } 38 | } 39 | } 40 | ``` -------------------------------------------------------------------------------- /examples/Public/RateRequests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | namespace Examples.Public 3 | { 4 | public class RateRequests 5 | { 6 | public void GetRate() 7 | { 8 | var client = new Client(new PosToken("anyToken")); 9 | 10 | var allRates = client.GetRates(); 11 | 12 | var currencyRates = client.GetRates("BTC"); 13 | 14 | var currencyPairRate = client.GetRate("BTC", "USD"); 15 | } 16 | } 17 | } 18 | ``` -------------------------------------------------------------------------------- /examples/Public/WalletRequests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | namespace Examples.Public 3 | { 4 | public class WalletRequests 5 | { 6 | public void GetSupportedWallets() 7 | { 8 | var client = new Client(new PosToken("anyToken")); 9 | 10 | var result = client.GetSupportedWallets(); 11 | } 12 | } 13 | } 14 | ``` -------------------------------------------------------------------------------- /examples/Requests.md: -------------------------------------------------------------------------------- 1 | ``` 2 | using System; 3 | 4 | namespace Examples 5 | { 6 | public class Requests 7 | { 8 | protected Client CreateClient() 9 | { 10 | String privateKey = 11 | "75371435315047800683080420474719166774492308988314944856528163960396135344086"; 12 | String merchantToken = "merchantToken"; 13 | String payoutToken = "payoutToken"; 14 | AccessTokens tokens = new AccessTokens(); 15 | tokens.AddMerchant(merchantToken); 16 | tokens.AddPayout(payoutToken); 17 | 18 | return new Client(new PrivateKey(privateKey), tokens, Environment.Test); 19 | } 20 | } 21 | } 22 | ``` -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "8.0.410", 4 | "rollForward": "latestMajor", 5 | "allowPrerelease": true 6 | } 7 | } -------------------------------------------------------------------------------- /screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/logo.png -------------------------------------------------------------------------------- /screenshots/utility-setup-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/utility-setup-env.png -------------------------------------------------------------------------------- /screenshots/utility-setup-facade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/utility-setup-facade.png -------------------------------------------------------------------------------- /screenshots/utility-setup-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/utility-setup-init.png -------------------------------------------------------------------------------- /screenshots/utility-setup-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/utility-setup-menu.png -------------------------------------------------------------------------------- /screenshots/utility-setup-pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/csharp-bitpay-client/f3d4a5202469a22997dccea986c438d409050491/screenshots/utility-setup-pair.png --------------------------------------------------------------------------------