-
Notifications
You must be signed in to change notification settings - Fork 7
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
[PLA-2010] v2.0.0 API Updates #100
Conversation
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
src/Commands/BatchProcess.php
Outdated
'type' => $claim->quantity == 1 || $claim->collection?->force_single_mint ? TokenMintCapType::SINGLE_MINT->name : TokenMintCapType::INFINITE->name, | ||
'amount' => null, | ||
'type' => $claim->quantity == 1 || $claim->collection?->force_single_mint ? TokenMintCapType::COLLAPSING_SUPPLY->name : null, | ||
'amount' => $claim->collection?->force_single_mint ? 1 : null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was changed to force_collapsing_supply
c6ee467
to
cde617a
Compare
Closed in favour of #106 |
PR Type
Enhancement, Tests
Description
SINGLE_MINT
andINFINITE
withCOLLAPSING_SUPPLY
.TokenMintCapType
in test data preparation.Changes walkthrough 📝
BatchProcess.php
Update token mint cap type logic in batch processing
src/Commands/BatchProcess.php
SINGLE_MINT
andINFINITE
withCOLLAPSING_SUPPLY
.TokensDoNotExistInBeam.php
Modify token cap type in SQL query conditions
src/Rules/TokensDoNotExistInBeam.php
SINGLE_MINT
toCOLLAPSING_SUPPLY
.UpdateBeamTest.php
Update test for token cap type change
tests/Feature/GraphQL/Mutations/UpdateBeamTest.php
COLLAPSING_SUPPLY
instead ofSINGLE_MINT
.CreateCollectionData.php
Remove TokenMintCapType and set cap to null in tests
tests/Feature/Traits/CreateCollectionData.php
TokenMintCapType
usage.