Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.15.6 #818

Merged
merged 27 commits into from
Sep 26, 2024
Merged
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d462b7f
add upgradeable proxy sample project
zoeyTM Dec 14, 2023
a1ee429
add comments to the upgradeable proxy example
zoeyTM Dec 18, 2023
3c1295a
update readme
zoeyTM Dec 19, 2023
776d8f5
refactor upgrade example
zoeyTM Apr 15, 2024
4f5055f
update upgradeable example dependency version
zoeyTM Apr 25, 2024
dbc14fd
add encodeFunctionCall to upgrade example
zoeyTM Jun 17, 2024
b673177
chore: update upgradeable to latest version
kanej Jun 18, 2024
76aa65a
chore: update pnpm lock
kanej Jun 18, 2024
b80febf
refactor: clean up test
kanej Jun 18, 2024
d9fc7a8
docs: tweak example commmand text
kanej Jun 18, 2024
c4278b6
Merge pull request #655 from NomicFoundation/upgradeable-example-project
zoeyTM Jun 20, 2024
bfdc103
chore: debug log hardhat ledger communication errors
galargh Aug 6, 2024
f3dc8ad
chore:Fix the typo and replace 'this' with the class in a static method
iosh Aug 22, 2024
f6dc9a7
added json5 parser with tests
erhant Sep 5, 2024
27f36a8
fix lockfile
zoeyTM Sep 6, 2024
bf7e7fb
Merge pull request #800 from erhant/erhant/json5-parser
zoeyTM Sep 6, 2024
adbe6ef
update L2 fees logic
zoeyTM Sep 16, 2024
4fcdf57
top level disableFeeBumping should override network level
zoeyTM Sep 18, 2024
739713b
Merge pull request #792 from NomicFoundation/galargh/debug-log
zoeyTM Sep 18, 2024
d26afda
implement svg zoom for mermaid diagram visualization
zoeyTM Sep 23, 2024
9102e3d
add writeLocalhostDeployment to deploy command
SebastienGllmt Sep 24, 2024
f52cc2a
address PR feedback
SebastienGllmt Sep 25, 2024
0bcbc23
fix diagram height and button overlap for large batch numbers
zoeyTM Sep 25, 2024
f77041e
Merge pull request #816 from SebastienGllmt/writeLocalhostDeployment-…
zoeyTM Sep 25, 2024
1f1ae43
Merge pull request #810 from NomicFoundation/svg-zoom
zoeyTM Sep 25, 2024
e592075
Merge pull request #808 from NomicFoundation/l2-gas-fees
zoeyTM Sep 25, 2024
c009373
chore: bump version to v0.15.6
zoeyTM Sep 26, 2024
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
11 changes: 9 additions & 2 deletions packages/hardhat-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
IgnitionError,
StatusResult,
} from "@nomicfoundation/ignition-core";
import debug from "debug";
import {
ensureDir,
pathExists,
Expand Down Expand Up @@ -34,6 +35,8 @@ const ignitionScope = scope(
"Deploy your smart contracts using Hardhat Ignition"
);

const log = debug("hardhat:ignition");

extendConfig((config, userConfig) => {
/* setup path configs */
const userPathsConfig = userConfig.paths ?? {};
Expand Down Expand Up @@ -301,7 +304,9 @@ ignitionScope
"confirmation_failure",
ledgerConfirmationFailure
);
} catch {}
} catch (error) {
log(error);
}

const result = await deploy({
config: hre.config.ignition,
Expand Down Expand Up @@ -348,7 +353,9 @@ ignitionScope
"confirmation_failure",
ledgerConfirmationFailure
);
} catch {}
} catch (error) {
log(error);
}

if (result.type === "SUCCESSFUL_DEPLOYMENT" && verify) {
console.log("");
Expand Down