-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add magicdrop-types package and set up CI (#155)
* Add cosigner in 1155M * update signature * Conditionally enforcing mint fee * Update cosigner service and bump version * Add magicdrop-types package and setup CI * Fix per lint * update * fix * Update IERC721 and IERC1155 to support ME LP
- Loading branch information
1 parent
2cce35c
commit b7cd554
Showing
17 changed files
with
4,563 additions
and
39 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
import '@typechain/hardhat'; | ||
import { HardhatUserConfig } from 'hardhat/config'; | ||
|
||
const config: HardhatUserConfig = { | ||
solidity: { | ||
version: '0.8.20', | ||
settings: { | ||
viaIR: true, | ||
optimizer: { | ||
enabled: true, | ||
runs: 20, | ||
details: { | ||
yulDetails: { | ||
optimizerSteps: "dhfoD[xarrscLMcCTU]uljmul", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
paths: { | ||
artifacts: './artifacts', | ||
cache: './cache', | ||
sources: './contracts', | ||
tests: './test', | ||
}, | ||
}; | ||
|
||
|
||
export default config; |
Oops, something went wrong.