Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changing mainnet program id to openbook-dex community fork #97

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
with:
script-path: build.cake
target: Report
cake-version: 1.1.0
cake-bootstrap: true
- name: Publish coverage report to coveralls.io
uses: coverallsapp/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ separate repository so it is contained, as the goal for [Solnet](https://github.
- net 6.0

## Dependencies
- Solnet.Rpc v6.0.13
- Solnet.Wallet v6.0.13
- Solnet.Programs v6.0.13
- Solnet.Rpc v6.0.14
- Solnet.Wallet v6.0.14
- Solnet.Programs v6.0.14

## Examples

Expand Down
2 changes: 1 addition & 1 deletion SharedBuildProperties.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product>Solnet.Serum</Product>
<Version>6.0.13</Version>
<Version>6.0.14</Version>
<Copyright>Copyright 2022 &#169; Solnet</Copyright>
<Authors>blockmountain</Authors>
<PublisherName>blockmountain</PublisherName>
Expand Down
6 changes: 3 additions & 3 deletions Solnet.Serum.Examples/Solnet.Serum.Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Solnet.Rpc" Version="6.0.13" />
<PackageReference Include="Solnet.Wallet" Version="6.0.13" />
<PackageReference Include="Solnet.KeyStore" Version="6.0.13" />
<PackageReference Include="Solnet.Rpc" Version="6.0.14" />
<PackageReference Include="Solnet.Wallet" Version="6.0.14" />
<PackageReference Include="Solnet.KeyStore" Version="6.0.14" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Solnet.Serum/SerumProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class SerumProgram : BaseProgram
/// <summary>
/// The Serum V3 Program key for <see cref="Cluster.MainNet"/>.
/// </summary>
public static readonly PublicKey MainNetProgramIdKeyV3 = new("9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin");
public static readonly PublicKey MainNetProgramIdKeyV3 = new("srmqPvymJeFKQ4zGQed1GFppgkRHL9kaELCbyksJtPX");

/// <summary>
/// The Serum V3 Program key for <see cref="Cluster.DevNet"/>.
Expand Down
6 changes: 3 additions & 3 deletions Solnet.Serum/Solnet.Serum.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Solnet.Programs" Version="6.0.13" />
<PackageReference Include="Solnet.Rpc" Version="6.0.13" />
<PackageReference Include="Solnet.Wallet" Version="6.0.13" />
<PackageReference Include="Solnet.Programs" Version="6.0.14" />
<PackageReference Include="Solnet.Rpc" Version="6.0.14" />
<PackageReference Include="Solnet.Wallet" Version="6.0.14" />
</ItemGroup>


Expand Down
2 changes: 1 addition & 1 deletion chver.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PREV="6.0.13"
PREV="6.0.14"

FILES="README.md
SharedBuildProperties.props
Expand Down