diff --git a/src/Commands/BatchProcess.php b/src/Commands/BatchProcess.php index 77b05e3..1fab1b9 100644 --- a/src/Commands/BatchProcess.php +++ b/src/Commands/BatchProcess.php @@ -186,7 +186,7 @@ protected function processBatch(BeamType $type): int 'initialSupply' => $this->tokenCreatedCache[$key] ? null : $claim->quantity, 'amount' => $this->tokenCreatedCache[$key] ? $claim->quantity : null, 'cap' => [ - 'type' => $claim->quantity == 1 || $claim->collection?->force_collapsing_supply ? TokenMintCapType::COLLAPSING_SUPPLY->name : TokenMintCapType::SUPPLY->name, + 'type' => $claim->quantity == 1 || $claim->collection?->force_collapsing_supply ? TokenMintCapType::COLLAPSING_SUPPLY->name : null, 'amount' => null, ], 'listingForbidden' => false,