Skip to content

Commit

Permalink
fix: Switch private key hex encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Blazebrain committed Feb 7, 2025
1 parent 4743a2e commit 42c58b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cw_solana/lib/solana_wallet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ abstract class SolanaWalletBase
String? get seed => _mnemonic;

@override
String get privateKey => _solanaPrivateKey.toHex();
String get privateKey => _solanaPrivateKey.seedHex();

@override
WalletKeysData get walletKeysData => WalletKeysData(mnemonic: _mnemonic, privateKey: privateKey);
Expand Down

0 comments on commit 42c58b6

Please # to comment.