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
2 changes: 1 addition & 1 deletion bench/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export class BenchFixture {
};
break;
default:
throw new Error("unreacheable");
throw new Error("unreachable");
}
const signingScheme =
(i + Math.floor(i / 4)) % 2 == 0
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default {
},
},
namedAccounts: {
// Note: accounts defined by a number refer to the the accounts as configured
// Note: accounts defined by a number refer to the accounts as configured
// by the current network.
deployer: 0,
owner: {
Expand Down
2 changes: 1 addition & 1 deletion src/ts/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const EIP1271_MAGICVALUE = ethers.utils.hexDataSlice(
export enum SigningScheme {
/**
* The EIP-712 typed data signing scheme. This is the preferred scheme as it
* provides more infomation to wallets performing the signature on the data
* provides more information to wallets performing the signature on the data
* being signed.
*
* <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator>
Expand Down
2 changes: 1 addition & 1 deletion test/libraries/Bytecode.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ library Bytecode {
revert("Every immutable is expected to have at least a reference entry");
}

// Only interested in the first occurence of the ith immutable reference
// Only interested in the first occurrence of the ith immutable reference
ImmutableReference memory r = jsonImmutables[0];
immutables[i] = which.code.slice(r.start, r.length);
}
Expand Down
Loading