├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ └── question.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── constants ├── account_details.js ├── blend_mode.js ├── folders.js ├── network.js └── nft_details.js ├── index.js ├── layers ├── Background │ ├── Black#100.png │ ├── Blue#70.png │ ├── Orange#40.png │ └── Yellow#10.png ├── Bottom lid │ ├── High High#20.png │ ├── Low#40.png │ └── Middle#40.png ├── Eye color │ ├── Blank#100.png │ ├── Cyan#1.png │ ├── Green#1.png │ ├── Pink#1.png │ ├── Purple#1.png │ ├── Red#1.png │ └── Yellow#10.png ├── Eyeball │ ├── Red#50.png │ └── White#50.png ├── Goo │ └── Green#1.png ├── Iris │ ├── Large#20.png │ ├── Medium#20.png │ └── Small#60.png ├── Shine │ └── Shapes#100.png └── Top lid │ ├── High#30.png │ ├── Low#20.png │ └── Middle#50.png ├── modules ├── HashlipsGiffer.js ├── fetchWithRetry.js └── getMintAddress.js ├── package.json ├── src ├── config.js ├── filters.js ├── filters │ ├── combination_traits.js │ ├── dependent_traits.js │ └── incompatible_traits.js └── main.js └── utils ├── art_engine ├── create_provenance.js ├── generate_metadata.js ├── pixelate.js ├── preview.js ├── preview_gif.js └── rarity.js ├── custom ├── batch_ipfs_metas_migration.js ├── check_mints.js ├── check_mints_batch.js ├── create_wallet_edition_combo.js ├── getRarity_fromMetadata.js ├── rarity_rank.js ├── update_image_info.js ├── update_json_to_generic_meta.js ├── update_metadata_info.js └── update_nft_info.js ├── nftport ├── mint.js ├── mint_batch.js ├── mint_item.js ├── mint_range.js ├── remint.js ├── remint_batch.js ├── reveal.js ├── uploadFiles.js ├── uploadMetas.js └── uploadMetas_directory.js └── opensea ├── cancel_on_sale_nfts.js ├── refresh_metadata.js └── sell_nfts.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/README.md -------------------------------------------------------------------------------- /constants/account_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/constants/account_details.js -------------------------------------------------------------------------------- /constants/blend_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/constants/blend_mode.js -------------------------------------------------------------------------------- /constants/folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/constants/folders.js -------------------------------------------------------------------------------- /constants/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/constants/network.js -------------------------------------------------------------------------------- /constants/nft_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/constants/nft_details.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/index.js -------------------------------------------------------------------------------- /layers/Background/Black#100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Background/Black#100.png -------------------------------------------------------------------------------- /layers/Background/Blue#70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Background/Blue#70.png -------------------------------------------------------------------------------- /layers/Background/Orange#40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Background/Orange#40.png -------------------------------------------------------------------------------- /layers/Background/Yellow#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Background/Yellow#10.png -------------------------------------------------------------------------------- /layers/Bottom lid/High High#20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Bottom lid/High High#20.png -------------------------------------------------------------------------------- /layers/Bottom lid/Low#40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Bottom lid/Low#40.png -------------------------------------------------------------------------------- /layers/Bottom lid/Middle#40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Bottom lid/Middle#40.png -------------------------------------------------------------------------------- /layers/Eye color/Blank#100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Blank#100.png -------------------------------------------------------------------------------- /layers/Eye color/Cyan#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Cyan#1.png -------------------------------------------------------------------------------- /layers/Eye color/Green#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Green#1.png -------------------------------------------------------------------------------- /layers/Eye color/Pink#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Pink#1.png -------------------------------------------------------------------------------- /layers/Eye color/Purple#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Purple#1.png -------------------------------------------------------------------------------- /layers/Eye color/Red#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Red#1.png -------------------------------------------------------------------------------- /layers/Eye color/Yellow#10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eye color/Yellow#10.png -------------------------------------------------------------------------------- /layers/Eyeball/Red#50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eyeball/Red#50.png -------------------------------------------------------------------------------- /layers/Eyeball/White#50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Eyeball/White#50.png -------------------------------------------------------------------------------- /layers/Goo/Green#1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Goo/Green#1.png -------------------------------------------------------------------------------- /layers/Iris/Large#20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Iris/Large#20.png -------------------------------------------------------------------------------- /layers/Iris/Medium#20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Iris/Medium#20.png -------------------------------------------------------------------------------- /layers/Iris/Small#60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Iris/Small#60.png -------------------------------------------------------------------------------- /layers/Shine/Shapes#100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Shine/Shapes#100.png -------------------------------------------------------------------------------- /layers/Top lid/High#30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Top lid/High#30.png -------------------------------------------------------------------------------- /layers/Top lid/Low#20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Top lid/Low#20.png -------------------------------------------------------------------------------- /layers/Top lid/Middle#50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/layers/Top lid/Middle#50.png -------------------------------------------------------------------------------- /modules/HashlipsGiffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/modules/HashlipsGiffer.js -------------------------------------------------------------------------------- /modules/fetchWithRetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/modules/fetchWithRetry.js -------------------------------------------------------------------------------- /modules/getMintAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/modules/getMintAddress.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/config.js -------------------------------------------------------------------------------- /src/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/filters.js -------------------------------------------------------------------------------- /src/filters/combination_traits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/filters/combination_traits.js -------------------------------------------------------------------------------- /src/filters/dependent_traits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/filters/dependent_traits.js -------------------------------------------------------------------------------- /src/filters/incompatible_traits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/filters/incompatible_traits.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/src/main.js -------------------------------------------------------------------------------- /utils/art_engine/create_provenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/create_provenance.js -------------------------------------------------------------------------------- /utils/art_engine/generate_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/generate_metadata.js -------------------------------------------------------------------------------- /utils/art_engine/pixelate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/pixelate.js -------------------------------------------------------------------------------- /utils/art_engine/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/preview.js -------------------------------------------------------------------------------- /utils/art_engine/preview_gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/preview_gif.js -------------------------------------------------------------------------------- /utils/art_engine/rarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/art_engine/rarity.js -------------------------------------------------------------------------------- /utils/custom/batch_ipfs_metas_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/batch_ipfs_metas_migration.js -------------------------------------------------------------------------------- /utils/custom/check_mints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/check_mints.js -------------------------------------------------------------------------------- /utils/custom/check_mints_batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/check_mints_batch.js -------------------------------------------------------------------------------- /utils/custom/create_wallet_edition_combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/create_wallet_edition_combo.js -------------------------------------------------------------------------------- /utils/custom/getRarity_fromMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/getRarity_fromMetadata.js -------------------------------------------------------------------------------- /utils/custom/rarity_rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/rarity_rank.js -------------------------------------------------------------------------------- /utils/custom/update_image_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/update_image_info.js -------------------------------------------------------------------------------- /utils/custom/update_json_to_generic_meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/update_json_to_generic_meta.js -------------------------------------------------------------------------------- /utils/custom/update_metadata_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/update_metadata_info.js -------------------------------------------------------------------------------- /utils/custom/update_nft_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/custom/update_nft_info.js -------------------------------------------------------------------------------- /utils/nftport/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/mint.js -------------------------------------------------------------------------------- /utils/nftport/mint_batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/mint_batch.js -------------------------------------------------------------------------------- /utils/nftport/mint_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/mint_item.js -------------------------------------------------------------------------------- /utils/nftport/mint_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/mint_range.js -------------------------------------------------------------------------------- /utils/nftport/remint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/remint.js -------------------------------------------------------------------------------- /utils/nftport/remint_batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/remint_batch.js -------------------------------------------------------------------------------- /utils/nftport/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/reveal.js -------------------------------------------------------------------------------- /utils/nftport/uploadFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/uploadFiles.js -------------------------------------------------------------------------------- /utils/nftport/uploadMetas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/uploadMetas.js -------------------------------------------------------------------------------- /utils/nftport/uploadMetas_directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/nftport/uploadMetas_directory.js -------------------------------------------------------------------------------- /utils/opensea/cancel_on_sale_nfts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/opensea/cancel_on_sale_nfts.js -------------------------------------------------------------------------------- /utils/opensea/refresh_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/opensea/refresh_metadata.js -------------------------------------------------------------------------------- /utils/opensea/sell_nfts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepeanutgalleryandco/create-and-mint-nft-collection/HEAD/utils/opensea/sell_nfts.js --------------------------------------------------------------------------------