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

Compile selected archived contracts #464

Merged
merged 5 commits into from
Jan 27, 2023
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
14 changes: 2 additions & 12 deletions .solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,9 @@ module.exports = {
"libs/0.8.x/ERC721_PackedHashSeed.sol",
"libs/abi/",
"libs/integration-refs/",
"minter-suite/Minters/MinterDAExp/MinterDAExpV0.sol",
"minter-suite/Minters/MinterDAExp/MinterDAExpV1.sol",
"minter-suite/Minters/MinterDALin/MinterDALinV0.sol",
"minter-suite/Minters/MinterDALin/MinterDALinV1.sol",
"minter-suite/Minters/MinterHolder/MinterHolderV0.sol",
"minter-suite/Minters/MinterHolder/MinterHolderV1.sol",
"minter-suite/Minters/MinterMerkle/MinterMerkleV0.sol",
"minter-suite/Minters/MinterMerkle/MinterMerkleV1.sol",
"minter-suite/Minters/MinterSetPrice/MinterSetPriceV0.sol",
"minter-suite/Minters/MinterSetPrice/MinterSetPriceV1.sol",
"minter-suite/Minters/MinterSetPriceERC20/MinterSetPriceERC20V0.sol",
"minter-suite/Minters/MinterSetPriceERC20/MinterSetPriceERC20V1.sol",
"archive/",
"mock/",
"engine-registry/future/"
"BasicRandomizer.sol",
"BasicRandomizerV2.sol",
],
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ MinterFilterV1 for flagship V3 core: [0x092B8F64e713d66b38522978BCf4649db14b931E

Legacy minting contract for flagship V0 core: [0x47e312d99c09ce61a866c83cbbbbed5a4b9d33e7](https://etherscan.io/address/0x47e312d99c09ce61a866c83cbbbbed5a4b9d33e7).

For deployed Engine/Partner/Explorations minting contracts, see the archived source code in the `/posterity/engine/<engine-partner>/` directory and the deployment logs in `/deployments/engine/[V2|V3]/<engine-partner>/` directories. For V3 deployments, deployment script inputs are also available in the `/deployments/engine/[V2|V3]/<engine-partner>/` directories.
For deployed Engine/Partner/Explorations minting contracts that integrate with V2 core contracts, see the archived source code in the `/posterity/engine/<engine-partner>/` directory and the deployment logs in `/deployments/engine/[V2|V3]/<engine-partner>/` directories. For V3 deployments, deployment script inputs are also available in the `/deployments/engine/[V2|V3]/<engine-partner>/` directories.

### Shared Randomizers

Expand Down Expand Up @@ -246,6 +246,10 @@ Additionally, the following settings may be configured/changed by a core contrac
- **Change Art Blocks Royalty Payment Address**
- The address to receive Art Blocks royalty payments may be updated by a core contract's admin via the royalty override contract's function `updateArtblocksRoyaltyAddressForContract`.

# Source Code Archival

An NPM package is published that includes all contracts in the `/contracts/` directory. The `/contracts/archive/` directory contains contracts that were previously published, but are no longer actively developed, but should still be included in our published npm package. For example, the original Art Blocks core contracts are included in the `/contracts/archive/` directory so they may be actively integrated with subgraphs and frontends, even though they are no longer actively developed.

# References

## Running Gas Reports for Solidity Methods & Deployments
Expand Down
Loading