-
Notifications
You must be signed in to change notification settings - Fork 49
feat: batch mint indexing #198
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
Draft
RequescoS
wants to merge
34
commits into
main
Choose a base branch
from
feat/rollup-indexing
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 19 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
67d4245
wip
RequescoS 4799ee7
wip
RequescoS adfbd45
wip
RequescoS d63cd80
feat: rollup indexer
RequescoS 5b3cb46
rm redundant changes
RequescoS 54fcf10
gitmodules
RequescoS e3e2116
Delete blockbuster/Cargo.lock
RequescoS dd03782
Delete blockbuster/.github/pull_request_template.md
RequescoS fedb2a1
Delete blockbuster/.github/release.yml
RequescoS 2cb841a
Delete .gitmodules
RequescoS 997fda9
Delete blockbuster/.github/workflows/test.yml
RequescoS bdb3799
Delete blockbuster/.vscode/extensions.json
RequescoS 390e5e6
Delete blockbuster/.vscode/launch.json
RequescoS 04de3da
Delete blockbuster/LICENSE
RequescoS ed4b6c9
Delete blockbuster/blockbuster.iml
RequescoS 3f42f25
Delete blockbuster/blockbuster/.gitignore
RequescoS 0a06487
rollup validation test
RequescoS 27d4e1c
some tests + fixes
RequescoS 6d7cc81
more tests + fix
RequescoS 19674fe
some comments
RequescoS e8d9721
wip
RequescoS 3181d99
add Staker role and StartProcessing RollupPersistingState
RequescoS cb3de1d
new_rollup listener
RequescoS 63105b8
add metrics
RequescoS d40241e
Make rollup processing feature optional (#199)
n00m4d cd55b34
wip
RequescoS 086e28b
wip
RequescoS 16846ca
wip
RequescoS ea62bae
tests fix
RequescoS ef8df2a
wip
RequescoS acf874e
wip
RequescoS d37f4c9
Creators and collection batch mint verifications (#204)
n00m4d dc14c21
feat: use bubblegum batch mint sdk for batch mint verification (#205)
n00m4d 3b292f1
MTG-404 Skip batch mint indexing feature (#207)
n00m4d 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 @@ | ||
| [submodule "mpl-bubblegum"] | ||
| path = mpl-bubblegum | ||
| url = [email protected]:n00m4d/mpl-bubblegum.git | ||
| branch = feat/rollup | ||
danenbm marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file was deleted.
Oops, something went wrong.
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,43 @@ | ||
| [package] | ||
| name = "blockbuster" | ||
| description = "Metaplex canonical program parsers, for indexing, analytics etc...." | ||
| version = "2.3.0" | ||
| authors = ["Metaplex Developers <[email protected]>"] | ||
| repository = "https://github.com/metaplex-foundation/blockbuster" | ||
| license = "AGPL-3.0" | ||
| edition = "2021" | ||
| readme = "../README.md" | ||
|
|
||
| [dependencies] | ||
| bytemuck = { version = "1.14.0", features = ["derive"] } | ||
| spl-token-2022 = { version = "1.0", features = ["no-entrypoint"] } | ||
| spl-account-compression = { path = "../mpl-bubblegum/solana-program-library/account-compression/programs/account-compression", features = ["no-entrypoint"] } | ||
| spl-noop = { path = "../mpl-bubblegum/solana-program-library/account-compression/programs/noop", features = ["no-entrypoint"] } | ||
| mpl-bubblegum = { path = "../mpl-bubblegum/clients/rust" } | ||
| mpl-core = { git = "https://github.com/RequescoS/mpl-core.git", features = ["serde"] } | ||
| mpl-token-metadata = { version = "4.1.1", features = ["serde"] } | ||
| spl-token = { version = "4.0.0", features = ["no-entrypoint"] } | ||
| async-trait = "0.1.57" | ||
| bs58 = "0.4.0" | ||
| lazy_static = "1.4.0" | ||
| borsh = "~0.10.3" | ||
| thiserror = "1.0.32" | ||
| log = "0.4.17" | ||
| solana-sdk = "~1.18.11" | ||
| solana-transaction-status = "~1.18.11" | ||
| spl-token-metadata-interface = "0.2.0" | ||
| spl-token-group-interface = "0.1.0" | ||
| spl-pod = { version = "0.1.0", features = ["serde-traits"] } | ||
| serde = "1.0.140" | ||
| solana-zk-token-sdk = "~1.18.11" | ||
| anchor-lang = { version = "0.29.0" } | ||
| triomphe = { workspace = true } | ||
|
|
||
| [dev-dependencies] | ||
| flatbuffers = "23.1.21" | ||
| plerkle_serialization = { git = "https://github.com/n00m4d/digital-asset-validator-plugin.git" } | ||
| rand = "0.8.5" | ||
| serde_json = "1.0.89" | ||
| solana-client = "~1.18.11" | ||
| solana-geyser-plugin-interface = "~1.18.11" | ||
| spl-concurrent-merkle-tree = "0.2.0" |
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,3 @@ | ||
| edition = "2021" | ||
| imports_granularity="Crate" | ||
| reorder_imports = true |
danenbm marked this conversation as resolved.
Show resolved
Hide resolved
|
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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.
Uh oh!
There was an error while loading. Please reload this page.