Skip to content
Closed
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
3,605 changes: 2,698 additions & 907 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,14 @@ cw-ics08-wasm-eth-v1_2_0 = { package = "cw-ics08-wasm-eth", git = "https://githu
ethereum-light-client-v1_2_0 = { package = "ethereum-light-client", git = "https://github.com/cosmos/solidity-ibc-eureka", tag = "cw-ics08-wasm-eth-v1.2.0", default-features = false }

# Solana dependencies
solana-client = { version = "2.0" }
solana-sdk = { version = "2.0" }
solana-transaction-status = { version = "2.0" }
bincode = { version = "1.3" }
anchor-lang = { version = "0.31.1" }
anchor-client = { version = "0.31.1" }
solana-client = { version = "3.1" }
solana-sdk = { version = "3.0" }
solana-program = { version = "3.0" }
solana-transaction-status = { version = "3.1" }
solana-commitment-config = { version = "3.1" }
bincode = { version = "2.0" }
anchor-lang = { version = "0.32.1" }
anchor-client = { version = "0.32.1" }

# TODO: Remove these dependencies once ethereum wasm client v1.2.0 backwards compatibility is not needed
ibc-eureka-relayer-eth-to-cosmos-v1_2 = { package = "ibc-eureka-relayer-eth-to-cosmos", git = "https://github.com/cosmos/solidity-ibc-eureka", rev = "d9f58589bee5881561cd8c769750a35448e5ebc8", default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion packages/relayer/lib/src/listener/solana.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

use anyhow::{Context, Result};
use solana_client::rpc_client::RpcClient;
use solana_sdk::{commitment_config::CommitmentConfig, pubkey::Pubkey, signature::Signature};
use solana_commitment_config::CommitmentConfig;
use solana_sdk::{pubkey::Pubkey, signature::Signature};
use solana_transaction_status::UiTransactionEncoding;

use std::sync::Arc;
Expand Down
2 changes: 1 addition & 1 deletion packages/tendermint-light-client/solana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ tendermint = { workspace = true, features = ["rust-crypto"] }
tendermint-light-client-verifier = { workspace = true }
brine-ed25519 = { workspace = true, features = ["std"] }
sha2 = { workspace = true }
solana-program = { version = "2.3", default-features = false }
solana-program.workspace = true

Loading