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

View File

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

View File

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

View File

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