Skip to content

Commit

Permalink
Bump versions and add solana network on sdks (#274)
Browse files Browse the repository at this point in the history
* Bump versions and add solana network on sdks
  • Loading branch information
m30m authored Dec 2, 2024
1 parent 6924712 commit fe51752
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion auction-server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auction-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auction-server"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
license-file = "license.txt"

Expand Down
2 changes: 1 addition & 1 deletion sdk/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pythnetwork/express-relay-js",
"version": "0.15.2",
"version": "0.15.3",
"description": "Utilities for interacting with the express relay protocol",
"homepage": "https://github.com/pyth-network/per/tree/main/sdk/js",
"author": "Douro Labs",
Expand Down
5 changes: 5 additions & 0 deletions sdk/js/src/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,9 @@ export const SVM_CONSTANTS: Record<string, SvmConstantsConfig> = {
"PytERJFhAKuNNuaiXkApLfWzwNwSNDACpigT3LwQfou"
),
},
solana: {
expressRelayProgram: new PublicKey(
"PytERJFhAKuNNuaiXkApLfWzwNwSNDACpigT3LwQfou"
),
},
};
5 changes: 5 additions & 0 deletions sdk/python/express_relay/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,10 @@ class SvmProgramConfig(TypedDict):
"express_relay_program": Pubkey.from_string(
"PytERJFhAKuNNuaiXkApLfWzwNwSNDACpigT3LwQfou"
),
},
"solana": {
"express_relay_program": Pubkey.from_string(
"PytERJFhAKuNNuaiXkApLfWzwNwSNDACpigT3LwQfou"
),
}
}
2 changes: 1 addition & 1 deletion sdk/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "express-relay"
version = "0.15.0"
version = "0.15.1"
description = "Utilities for searchers and protocols to interact with the Express Relay protocol."
authors = ["dourolabs"]
license = "Apache-2.0"
Expand Down

0 comments on commit fe51752

Please sign in to comment.