-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cdesch-master
- Loading branch information
Showing
89 changed files
with
9,350 additions
and
1,804 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Thank you for using Hardhat and taking the time to open an issue! | ||
|
||
**Note that this issue tracker is not a support channel.** | ||
|
||
- For help with Hardhat and Hardhat network, please use our [Discord server](https://hardhat.org/discord). | ||
- For help with ethers.js, please go to [its Github Discussions](https://github.com/ethers-io/ethers.js/discussions). | ||
|
||
If you are reporting a bug, please include reproduction steps. The best way to do this | ||
is to include a [Minimal Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example). | ||
If you can't do that, then include a link to your repo, and the steps to reproduce the problem. The easiest it | ||
is to reproduce your problem, the faster we are going to be able to fix it. | ||
|
||
If you are submitting a feature request, please take the time to clearly describe your use case, and not only | ||
your proposed solution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
declare module "merkle-patricia-tree/secure"; | ||
declare module "merkle-patricia-tree"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
declare module "mnemonist/heap" { | ||
type HeapComparator<T> = (a: T, b: T) => number; | ||
|
||
export class MaxHeap<T> { | ||
|
||
// Members | ||
size: number; | ||
|
||
// Constructor | ||
constructor(comparator?: HeapComparator<T>); | ||
|
||
// Methods | ||
clear(): void; | ||
push(item: T): number; | ||
peek(): T | undefined; | ||
pop(): T | undefined; | ||
replace(item: T): T | undefined; | ||
pushpop(item: T): T | undefined; | ||
toArray(): Array<T>; | ||
consume(): Array<T>; | ||
inspect(): any; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.