-
Notifications
You must be signed in to change notification settings - Fork 300
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
cNFT candy machine #168
base: main
Are you sure you want to change the base?
cNFT candy machine #168
Conversation
@Woody4618 appreciate if you could review this |
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.
Lgtm. Great stuff!
name, | ||
symbol, | ||
uri, | ||
seller_fee_basis_points: 0, |
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.
maybe this one could be configurable.
}; | ||
|
||
#[derive(Accounts)] | ||
pub struct AllowList<'info> { |
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 will at some points run out of memory or out of CU. You could add a check or a hint somewhere for the maximum possible list size and check if the program doesnt run out of CU with the max allow list size.
cNFT candy machine program example