@@ -2728,25 +2728,25 @@ interface Vm {
2728
2728
#[ cheatcode( group = Crypto ) ]
2729
2729
function publicKeyP256( uint256 privateKey) external pure returns ( uint256 publicKeyX, uint256 publicKeyY) ;
2730
2730
2731
- /// Derive a private key from a provided mnenomic string (or mnenomic file path)
2731
+ /// Derive a private key from a provided mnemonic string (or mnemonic file path)
2732
2732
/// at the derivation path `m/44'/60'/0'/0/{index}`.
2733
2733
#[ cheatcode( group = Crypto ) ]
2734
2734
function deriveKey( string calldata mnemonic, uint32 index) external pure returns ( uint256 privateKey) ;
2735
- /// Derive a private key from a provided mnenomic string (or mnenomic file path)
2735
+ /// Derive a private key from a provided mnemonic string (or mnemonic file path)
2736
2736
/// at `{derivationPath}{index}`.
2737
2737
#[ cheatcode( group = Crypto ) ]
2738
2738
function deriveKey( string calldata mnemonic, string calldata derivationPath, uint32 index)
2739
2739
external
2740
2740
pure
2741
2741
returns ( uint256 privateKey) ;
2742
- /// Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
2742
+ /// Derive a private key from a provided mnemonic string (or mnemonic file path) in the specified language
2743
2743
/// at the derivation path `m/44'/60'/0'/0/{index}`.
2744
2744
#[ cheatcode( group = Crypto ) ]
2745
2745
function deriveKey( string calldata mnemonic, uint32 index, string calldata language)
2746
2746
external
2747
2747
pure
2748
2748
returns ( uint256 privateKey) ;
2749
- /// Derive a private key from a provided mnenomic string (or mnenomic file path) in the specified language
2749
+ /// Derive a private key from a provided mnemonic string (or mnemonic file path) in the specified language
2750
2750
/// at `{derivationPath}{index}`.
2751
2751
#[ cheatcode( group = Crypto ) ]
2752
2752
function deriveKey( string calldata mnemonic, string calldata derivationPath, uint32 index, string calldata language)
0 commit comments