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
40 changes: 20 additions & 20 deletions Cargo.lock

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

13 changes: 13 additions & 0 deletions canister/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2025-07-31

### Added

- Add optional `cost_units` to `TransactionStatusMeta` ([#180](https://github.com/dfinity/sol-rpc-canister/pull/180))
- Add more metrics ([#144](https://github.com/dfinity/sol-rpc-canister/pull/144))

### Changed

- Do not record metrics for requests with insufficient cycles ([#184](https://github.com/dfinity/sol-rpc-canister/pull/184))
- Require HTTP outcall base fee ([#185](https://github.com/dfinity/sol-rpc-canister/pull/185))
- Select supported providers based on successful responses ([#183](https://github.com/dfinity/sol-rpc-canister/pull/183))

## [1.0.0] - 2025-06-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion canister/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_canister"
version = "1.0.0"
version = "1.1.0"
description = "Interact with the Solana blockchain from the Internet Computer."
authors.workspace = true
edition.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions libs/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2025-07-31

### Added

- Add `try_send` method to SOL RPC client ([#187](https://github.com/dfinity/sol-rpc-canister/pull/187))

### Changed

- Migrate dependencies to `solana-sdk` repository ([#55](https://github.com/dfinity/sol-rpc-canister/pull/55))
- Enable `ed25519` feature in docs ([#162](https://github.com/dfinity/sol-rpc-canister/pull/162))

### Fixed

- Use correct fee for t-sig with local development key ([#160](https://github.com/dfinity/sol-rpc-canister/pull/160))

## [1.0.0] - 2025-06-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions libs/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_client"
version = "1.0.0"
version = "2.0.0"
description = "Client to interact with the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -31,7 +31,7 @@ ic-ed25519 = { workspace = true, optional = true }
ic-error-types = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sol_rpc_types = { version = "1.0.0", path = "../types" }
sol_rpc_types = { version = "2.0.0", path = "../types" }
solana-account-decoder-client-types = { workspace = true, features = ["zstd"] }
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
Expand Down
10 changes: 10 additions & 0 deletions libs/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2025-07-31

### Added

- Add optional `cost_units` to `TransactionStatusMeta` ([#180](https://github.com/dfinity/sol-rpc-canister/pull/180))

### Changed

- Migrate dependencies to `solana-sdk` repository ([#55](https://github.com/dfinity/sol-rpc-canister/pull/55))

## [1.0.0] - 2025-06-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion libs/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sol_rpc_types"
version = "1.0.0"
version = "2.0.0"
description = "Candid types used by the SOL RPC canister"
authors.workspace = true
edition.workspace = true
Expand Down