Compare commits

...

2 Commits

Author SHA1 Message Date
Ryan Heywood 5ce44edd92
solana docs: don't generate txn online 2024-11-29 11:46:18 -05:00
Ryan Heywood 490bb7254b
fix solana derivation path 2024-11-29 04:31:54 -05:00
2 changed files with 4 additions and 4 deletions

View File

@ -30,11 +30,11 @@
//!
//! ```sh
//! # On an online system
//! blockhash=$(icepick sol get-blockhash | jq -r .blob)
//! icepick sol transfer $amount $to_address $from_address $blockhash > sdcard/unsigned.json
//! icepick sol get-blockhash > sdcard/blockhash.json
//!
//! # On an offline system
//! icepick sol sign < sdcard/unsigned.json > sdcard/signed.json
//! blockhash=$(jq -r .blob sdcard/blockhash.json)
//! icepick sol transfer $amount $to_address $from_address $blockhash | icepick sol sign > sdcard/signed.json
//!
//! # On the online system, again
//! icepick sol broadcast < sdcard/signed.json

View File

@ -1,4 +1,4 @@
[[module]]
name = "sol"
derivation_prefix = "m/44'/501'"
derivation_prefix = "m/44'/501'/0'"
algorithm = "Ed25519"