forked from samuelvanderwaal/metaboss
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add docs for 'find' subcommand
- Loading branch information
1 parent
c28d96e
commit 8bc5064
Showing
24 changed files
with
325 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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,48 @@ | ||
## Find | ||
|
||
### Error | ||
|
||
Look up Metaplex program error codes by hex or decimal values. | ||
|
||
E.g.: | ||
|
||
```bash | ||
metaboss find error 0x1770 | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
metaboss find error 6000 | ||
``` | ||
|
||
returns: | ||
|
||
```bash | ||
Auction House | PublicKeyMismatch: PublicKeyMismatch | ||
Auctioneer | BumpSeedNotInHashMap: Bump seed not in hash map | ||
Candy Machine | IncorrectOwner: Account does not have correct owner! | ||
``` | ||
|
||
Currently supported programs: | ||
|
||
* Token Metadata | ||
* Auction House | ||
* Auctioneer | ||
* Candy Machine | ||
|
||
It also decodes Anchor specific errors. | ||
|
||
```bash | ||
metaboss find 3000 | ||
``` | ||
|
||
``` | ||
Anchor Program | AccountDiscriminatorAlreadySet: The account discriminator was already set on this account | ||
``` | ||
|
||
|
||
|
||
### Missing Editions | ||
|
||
Find any edition numbers in the sequence that have not been minted. See [editions][https://metaboss.rs/mint.html#editions] for more details on how to interact with editions with Metaboss. |
This file contains 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 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 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 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.