Skip to content
Merged
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 2.2.0-beta.2 - 2026-01-12


### Documentation

- add jito bundle example code (#295)


### Features

- (PRO-638) Estimate fee for Jito bundle endpoint (#296)


### Hotfix

- (PRO-639) Fix big transaction causing error when using v0 transaction (#297)
Comment thread
dev-jodee marked this conversation as resolved.

## 2.2.0-beta.1 - 2026-01-09


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ all = { level = "deny", priority = -1 }
module_inception = { level = "allow", priority = 0 }

[workspace.package]
version = "2.2.0-beta.1"
version = "2.2.0-beta.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/solana-foundation/kora"

[workspace.dependencies]
kora-lib = { path = "crates/lib", version = "2.2.0-beta.1" }
kora-lib = { path = "crates/lib", version = "2.2.0-beta.2" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0.95"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kora-cli"
version = "2.2.0-beta.1"
version = "2.2.0-beta.2"
edition = "2021"
description = "CLI for Kora gasless relayer"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kora-lib"
version = "2.2.0-beta.1"
version = "2.2.0-beta.2"
edition = "2021"
license = "MIT"
description = "Core library for Kora gasless relayer"
Expand Down
4 changes: 2 additions & 2 deletions examples/jito-bundles/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"@solana-program/memo": "^0.10.0",
"@solana-program/system": "^0.10.0",
"@solana/kit": "^5.3.0",
"@solana/kora": "0.2.0-beta.1"
"@solana/kora": "0.2.0-beta.2"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}
}
2 changes: 1 addition & 1 deletion sdks/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solana/kora",
"version": "0.2.0-beta.1",
"version": "0.2.0-beta.2",
"description": "TypeScript SDK for Kora RPC",
"main": "dist/src/index.js",
"type": "module",
Expand Down