From 23e9a1e0e901ba99c9e07ae3a0dd6cb88b6cc73c Mon Sep 17 00:00:00 2001 From: Chris Maddern Date: Thu, 29 Aug 2024 11:27:52 -0400 Subject: [PATCH] Enable quantity for highlight --- src/ingestors/highlight/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ingestors/highlight/index.ts b/src/ingestors/highlight/index.ts index d9a87c2..c760e1c 100644 --- a/src/ingestors/highlight/index.ts +++ b/src/ingestors/highlight/index.ts @@ -109,9 +109,10 @@ export class HighlightIngestor implements MintIngestor { chainId: 8453, contractAddress: CONTRACT_ADDRESS, contractMethod: 'vectorMint721', - contractParams: `[${vectorId}, 1, address]`, + contractParams: `[${vectorId}, quantity, address]`, abi: MINT_CONTRACT_ABI, priceWei: totalPriceWei, + supportsQuantity: true, }); const metadata = await getHighlightMetadata(+vectorId, resources.alchemy);