-
Notifications
You must be signed in to change notification settings - Fork 18
feat: re-enable nft-quest #263
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
1129b94
0223c1d
c8e9daa
925313f
23bef07
5709cfa
a7f17a2
a514699
d5c2d74
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,8 @@ | ||||||
| [profile.default] | ||||||
| src = "contracts" | ||||||
| out = "out" | ||||||
| libs = ["node_modules"] | ||||||
| solc_version = "0.8.20" | ||||||
|
||||||
| solc_version = "0.8.20" | |
| solc_version = "0.8.17" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,18 @@ | ||
| import "@matterlabs/hardhat-zksync"; | ||
| import "@nomicfoundation/hardhat-toolbox"; | ||
|
|
||
| import { HardhatUserConfig } from "hardhat/config"; | ||
|
|
||
| const config: HardhatUserConfig = { | ||
| defaultNetwork: "zkSyncSepoliaTestnet", | ||
| solidity: "0.8.17", | ||
| networks: { | ||
| zkSyncSepoliaTestnet: { | ||
| url: "https://sepolia.era.zksync.dev", | ||
| ethNetwork: "sepolia", | ||
| zksync: true, | ||
| verifyURL: "https://explorer.sepolia.era.zksync.dev/contract_verification", | ||
| }, | ||
| zkSyncMainnet: { | ||
| url: "https://mainnet.era.zksync.io", | ||
| ethNetwork: "mainnet", | ||
| zksync: true, | ||
| verifyURL: "https://zksync2-mainnet-explorer.zksync.io/contract_verification", | ||
| }, | ||
| dockerizedNode: { | ||
| url: "http://localhost:3050", | ||
| ethNetwork: "http://localhost:8545", | ||
| zksync: true, | ||
| }, | ||
| inMemoryNode: { | ||
| url: "http://127.0.0.1:8011", | ||
| ethNetwork: "localhost", // in-memory node doesn't support eth node; removing this line will cause an error | ||
| zksync: true, | ||
| localhost: { | ||
| url: "http://127.0.0.1:8545", | ||
| chainId: 1337, | ||
| }, | ||
| hardhat: { | ||
| zksync: true, | ||
| chainId: 1337, | ||
| }, | ||
| }, | ||
| zksolc: { | ||
| version: "latest", | ||
| settings: { | ||
| // find all available options in the official documentation | ||
| // https://docs.zksync.io/build/tooling/hardhat/hardhat-zksync-solc#configuration | ||
| }, | ||
| }, | ||
| solidity: { | ||
| version: "0.8.17", | ||
| }, | ||
| }; | ||
|
|
||
| export default config; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using 'continue-on-error: true' for the MSA factory deployment step is risky. If this deployment fails silently, subsequent steps that depend on the deployed contracts (like NFT contract deployment at line 209) will fail with unclear error messages. Consider removing this flag or adding explicit validation after this step to check that the deployment succeeded and required contract addresses are available.