Skip to content

Commit 0a82aca

Browse files
authored
chore(ci): fix typos CI job failing (#11198)
fix typos
1 parent 2e995a2 commit 0a82aca

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

crates/cheatcodes/assets/cheatcodes.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cheatcodes/spec/src/vm.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2728,25 +2728,25 @@ interface Vm {
27282728
#[cheatcode(group = Crypto)]
27292729
function publicKeyP256(uint256 privateKey) external pure returns (uint256 publicKeyX, uint256 publicKeyY);
27302730

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)
27322732
/// at the derivation path `m/44'/60'/0'/0/{index}`.
27332733
#[cheatcode(group = Crypto)]
27342734
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)
27362736
/// at `{derivationPath}{index}`.
27372737
#[cheatcode(group = Crypto)]
27382738
function deriveKey(string calldata mnemonic, string calldata derivationPath, uint32 index)
27392739
external
27402740
pure
27412741
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
27432743
/// at the derivation path `m/44'/60'/0'/0/{index}`.
27442744
#[cheatcode(group = Crypto)]
27452745
function deriveKey(string calldata mnemonic, uint32 index, string calldata language)
27462746
external
27472747
pure
27482748
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
27502750
/// at `{derivationPath}{index}`.
27512751
#[cheatcode(group = Crypto)]
27522752
function deriveKey(string calldata mnemonic, string calldata derivationPath, uint32 index, string calldata language)

0 commit comments

Comments
 (0)