-
Couldn't load subscription status.
- Fork 531
Enforce Collections w/ CM and clean up code #418
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
Merged
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
376748c
Bump anchor version
stegaBOB d81b069
split into multiple files
stegaBOB a9016c8
re add the accessor methods
stegaBOB bc8e82a
enforce collections
stegaBOB d19cfea
Bump version
stegaBOB 58255fc
fix tests
stegaBOB 26b6b45
Merge remote-tracking branch 'origin/stegaBOB/enforce-cm-collections'…
stegaBOB 406cb8b
fix tests
stegaBOB c94a54d
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB f78258b
more fixes
stegaBOB 766f1af
gatekeeper compute improvement
stegaBOB f8e72e1
reordered stuff to make api gen better
stegaBOB a2a7415
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB fee2f7d
reexport stuff
stegaBOB 35657d5
Merge remote-tracking branch 'origin/stegaBOB/enforce-cm-collections'…
stegaBOB acf0c57
fix/document unsafe and constrain uuid in update
stegaBOB 9c4ea64
More punish bot checks
stegaBOB 5d93d72
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB 1add77b
adding hidden settings fix
stegaBOB b1904f1
merge
stegaBOB 675791b
Prevent changing collection after items have been minted
stegaBOB def5c13
update js sdk
stegaBOB f0fab5e
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB 72727f4
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB 4089b42
fix nits and unbreak stuff
stegaBOB 711cf1d
Merge remote-tracking branch 'origin/stegaBOB/enforce-cm-collections'…
stegaBOB f99e6a5
update solita and generated commands
stegaBOB 8dc6490
remove commented out debug messages
stegaBOB 2beab0f
remove more debug stuff
stegaBOB 54f5e29
more debug stuff and reordered some imports
stegaBOB e5adae7
more debug stuff
stegaBOB dc204df
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB 7b38a30
fix js stuff
stegaBOB 8a9025e
Merge remote-tracking branch 'origin/stegaBOB/enforce-cm-collections'…
stegaBOB 36a5fb5
fix lockfile
stegaBOB b97c001
add test files
stegaBOB 11ea19a
fix program test
stegaBOB 8a5370d
actually fix program test CI
stegaBOB 7e4a399
reorganized imports to make more sense
stegaBOB 6db43e2
updated IDL (just reordering. No actual changes)
stegaBOB 853e873
Lots of changes!
stegaBOB d433af1
More checks and fix account check error
stegaBOB 0558839
fix ocd
stegaBOB 5c38db5
update errors js sdk
stegaBOB f9d532f
update errors idl
stegaBOB 67c8d59
update more test helpers
stegaBOB 9aefc43
add change from master
stegaBOB 0f84d2f
finish test primitives
stegaBOB 9a26897
Merge branch 'master' into stegaBOB/enforce-cm-collections
stegaBOB 63f386b
reorder IDL stuff
stegaBOB 759b21d
Merge remote-tracking branch 'origin/stegaBOB/enforce-cm-collections'…
stegaBOB File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| // @ts-check | ||
| const path = require('path'); | ||
| const programDir = path.join(__dirname, '..', 'program'); | ||
| const idlDir = path.join(__dirname, 'idl'); | ||
| const sdkDir = path.join(__dirname, 'src', 'generated'); | ||
| const binaryInstallDir = path.join(__dirname, '.crates'); | ||
|
|
||
| module.exports = { | ||
| idlGenerator: 'anchor', | ||
| programName: 'candy_machine', | ||
| programId: 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ', | ||
| idlDir, | ||
| sdkDir, | ||
| binaryInstallDir, | ||
| programDir, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
you don't need to do all this in one step consider breaking up in the future