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
1,038 changes: 964 additions & 74 deletions packages/wasm-solana/Cargo.lock

Large diffs are not rendered by default.

21 changes: 15 additions & 6 deletions packages/wasm-solana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,30 @@ wasm-bindgen = "0.2"
js-sys = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Solana SDK crates
# Solana 3.x crates (for transaction building)
solana-sdk = { version = "3.0", default-features = false, features = ["full"] }
solana-transaction = { version = "3.0", features = ["serde", "bincode"] }
solana-message = { version = "3.0", features = ["serde", "bincode"] }
solana-system-interface = { version = "3.0", features = ["bincode"] }
solana-compute-budget-interface = { version = "3.0", features = ["borsh"] }
# Solana 2.x crates (no 3.x available yet for these)
solana-stake-interface = { version = "2.0", features = ["bincode"] }
solana-pubkey = { version = "2.0", features = ["curve25519"] }
solana-keypair = "2.0"
solana-signer = "2.0"
solana-transaction = { version = "3.0", features = ["serde", "bincode"] }
# Instruction decoder interfaces (official Solana crates)
solana-system-interface = { version = "2.0", features = ["bincode"] }
solana-stake-interface = { version = "2.0", features = ["bincode"] }
solana-compute-budget-interface = { version = "2.0", features = ["borsh"] }
solana-signature = "3.0"
solana-address = "1.0"
# Serialization
bincode = "1.3"
borsh = "1.5"
base64 = "0.22"
hex = "0.4"
serde-wasm-bindgen = "0.6"
# SPL crates for token/ATA operations
spl-stake-pool = { version = "2.0.3", features = ["no-entrypoint"] }
spl-token = { version = "6.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "4.0", features = ["no-entrypoint"] }
spl-memo = { version = "5.0", features = ["no-entrypoint"] }

[dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
Loading