This commit is contained in:
Kukks
2024-05-15 12:34:34 +02:00
parent 7836504196
commit 4aebfa1eea
4 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@
<PropertyGroup>
<Product>Nostr</Product>
<Description>NIP5 addresses, Zap support, Nostr Wallet Connect Lightning support</Description>
<Version>1.1.7</Version>
<Version>1.1.8</Version>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<!-- Plugin development properties -->
@@ -36,7 +36,7 @@
<ProjectReference Include="..\..\submodules\btcpayserver\BTCPayServer\BTCPayServer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NNostr.Client" Version="0.0.47" />
<PackageReference Include="NNostr.Client" Version="0.0.48" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources" />

View File

@@ -13,7 +13,7 @@
<PropertyGroup>
<Product>Coinjoin</Product>
<Description>Allows you to integrate your btcpayserver store with coinjoins.</Description>
<Version>1.0.82</Version>
<Version>1.0.83</Version>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
@@ -44,7 +44,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NNostr.Client" Version="0.0.47"></PackageReference>
<PackageReference Include="NNostr.Client" Version="0.0.48"></PackageReference>
<PackageReference Include="WabiSabi" Version="1.0.1.2"/>
</ItemGroup>
<Target Name="DeleteExampleFile" AfterTargets="Publish">

View File

@@ -100,7 +100,7 @@ public class Nostr
ExtensionData = new Dictionary<string, JsonElement>()
{
["#type"] = JsonSerializer.SerializeToElement(new[] {TypeTagValue}),
["#network"] = JsonSerializer.SerializeToElement(new[] {network, currentNetwork.Name.ToLower()})
// ["#network"] = JsonSerializer.SerializeToElement(new[] {network, currentNetwork.Name.ToLower()})
},
Limit = 1000
}

View File

@@ -28,7 +28,7 @@ namespace BTCPayServer.Plugins.Wabisabi;
public class NostrWabisabiApiServer : IHostedService
{
public static int RoundStateKind = 15750;
public static int RoundStateKind = 15751;
public static int CommunicationKind = 25750;
private readonly Arena _arena;
private WabisabiCoordinatorSettings _coordinatorSettings;