mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Removing Kukks changelly credential from the source code
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<Version>1.0.3.0</Version>
|
<Version>1.0.3.1</Version>
|
||||||
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
|
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|||||||
@@ -8,14 +8,14 @@ namespace BTCPayServer.Models.StoreViewModels
|
|||||||
{
|
{
|
||||||
public class UpdateChangellySettingsViewModel
|
public class UpdateChangellySettingsViewModel
|
||||||
{
|
{
|
||||||
[Required] public string ApiKey { get; set; } = "6ed02cdf1b614d89a8c0ceb170eebb61";
|
[Required] public string ApiKey { get; set; }
|
||||||
|
|
||||||
[Required] public string ApiSecret { get; set; } = "8fbd66a2af5fd15a6b5f8ed0159c5842e32a18538521ffa145bd6c9e124d3483";
|
[Required] public string ApiSecret { get; set; }
|
||||||
|
|
||||||
[Required] public string ApiUrl { get; set; } = "https://api.changelly.com";
|
[Required] public string ApiUrl { get; set; } = "https://api.changelly.com";
|
||||||
|
|
||||||
[Display(Name = "Optional, Changelly Merchant Id")]
|
[Display(Name = "Optional, Changelly Merchant Id")]
|
||||||
public string ChangellyMerchantId { get; set; } = "804298eb5753";
|
public string ChangellyMerchantId { get; set; }
|
||||||
|
|
||||||
[Display(Name = "Show Fiat Currencies as option in conversion")]
|
[Display(Name = "Show Fiat Currencies as option in conversion")]
|
||||||
public bool ShowFiat { get; set; } = true;
|
public bool ShowFiat { get; set; } = true;
|
||||||
@@ -26,7 +26,7 @@ namespace BTCPayServer.Models.StoreViewModels
|
|||||||
"Percentage to multiply amount requested at Changelly to avoid underpaid situations due to Changelly not guaranteeing rates. ")]
|
"Percentage to multiply amount requested at Changelly to avoid underpaid situations due to Changelly not guaranteeing rates. ")]
|
||||||
public decimal AmountMarkupPercentage { get; set; } = new decimal(2);
|
public decimal AmountMarkupPercentage { get; set; } = new decimal(2);
|
||||||
|
|
||||||
public bool Enabled { get; set; } = true;
|
public bool Enabled { get; set; }
|
||||||
|
|
||||||
public string StatusMessage { get; set; }
|
public string StatusMessage { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user