-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a24d52
commit 36899ad
Showing
1 changed file
with
87 additions
and
73 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,77 +1,91 @@ | ||
use phf::phf_map; | ||
|
||
pub static ERRORS: phf::Map<&'static str, &'static str> = phf_map! { | ||
"0" => "InstructionUnpackError: Failed to unpack instruction data", | ||
"1" => "InstructionPackError: Failed to pack instruction data", | ||
"2" => "NotRentExempt: Lamport balance below rent-exempt threshold", | ||
"3" => "AlreadyInitialized: Already initialized", | ||
"4" => "Uninitialized: Uninitialized", | ||
"5" => "InvalidMetadataKey: Metadata's key must match seed of ['metadata', program id, mint] provided", | ||
"6" => "InvalidEditionKey: Edition's key must match seed of ['metadata', program id, name, 'edition'] provided", | ||
"7" => "UpdateAuthorityIncorrect: Update Authority given does not match", | ||
"8" => "UpdateAuthorityIsNotSigner: Update Authority needs to be signer to update metadata", | ||
"9" => "NotMintAuthority: You must be the mint authority and signer on this transaction", | ||
"A" => "InvalidMintAuthority: Mint authority provided does not match the authority on the mint", | ||
"B" => "NameTooLong: Name too long", | ||
"C" => "SymbolTooLong: Symbol too long", | ||
"D" => "UriTooLong: URI too long", | ||
"E" => "UpdateAuthorityMustBeEqualToMetadataAuthorityAndSigner: Update authority must be equivalent to the metadata's authority and also signer of this transaction", | ||
"F" => "MintMismatch: Mint given does not match mint on Metadata", | ||
"10" => "EditionsMustHaveExactlyOneToken: Editions must have exactly one token", | ||
"11" => "MaxEditionsMintedAlready: Maximum editions printed already", | ||
"12" => "TokenMintToFailed: Token mint to failed", | ||
"13" => "MasterRecordMismatch: The master edition record passed must match the master record on the edition given", | ||
"14" => "DestinationMintMismatch: The destination account does not have the right mint", | ||
"15" => "EditionAlreadyMinted: An edition can only mint one of its kind!", | ||
"16" => "PrintingMintDecimalsShouldBeZero: Printing mint decimals should be zero", | ||
"17" => "OneTimePrintingAuthorizationMintDecimalsShouldBeZero: OneTimePrintingAuthorization mint decimals should be zero", | ||
"18" => "EditionMintDecimalsShouldBeZero: EditionMintDecimalsShouldBeZero", | ||
"19" => "TokenBurnFailed: Token burn failed", | ||
"1A" => "TokenAccountOneTimeAuthMintMismatch: The One Time authorization mint does not match that on the token account!", | ||
"1B" => "DerivedKeyInvalid: Derived key invalid", | ||
"1C" => "PrintingMintMismatch: The Printing mint does not match that on the master edition!", | ||
"1D" => "OneTimePrintingAuthMintMismatch: The One Time Printing Auth mint does not match that on the master edition!", | ||
"1E" => "TokenAccountMintMismatch: The mint of the token account does not match the Printing mint!", | ||
"1F" => "TokenAccountMintMismatchV2: The mint of the token account does not match the master metadata mint!", | ||
"20" => "NotEnoughTokens: Not enough tokens to mint a limited edition", | ||
"21" => "PrintingMintAuthorizationAccountMismatch: The mint on your authorization token holding account does not match your Printing mint!", | ||
"22" => "AuthorizationTokenAccountOwnerMismatch: The authorization token account has a different owner than the update authority for the master edition!", | ||
"23" => "Disabled: This feature is currently disabled.", | ||
"24" => "CreatorsTooLong: Creators list too long", | ||
"25" => "CreatorsMustBeAtleastOne: Creators must be at least one if set", | ||
"26" => "MustBeOneOfCreators: If using a creators array, you must be one of the creators listed", | ||
"27" => "NoCreatorsPresentOnMetadata: This metadata does not have creators", | ||
"28" => "CreatorNotFound: This creator address was not found", | ||
"29" => "InvalidBasisPoints: Basis points cannot be more than 10000", | ||
"2A" => "PrimarySaleCanOnlyBeFlippedToTrue: Primary sale can only be flipped to true and is immutable", | ||
"2B" => "OwnerMismatch: Owner does not match that on the account given", | ||
"2C" => "NoBalanceInAccountForAuthorization: This account has no tokens to be used for authorization", | ||
"2D" => "ShareTotalMustBe100: Share total must equal 100 for creator array", | ||
"2E" => "ReservationExists: This reservation list already exists!", | ||
"2F" => "ReservationDoesNotExist: This reservation list does not exist!", | ||
"30" => "ReservationNotSet: This reservation list exists but was never set with reservations", | ||
"31" => "ReservationAlreadyMade: This reservation list has already been set!", | ||
"32" => "BeyondMaxAddressSize: Provided more addresses than max allowed in single reservation", | ||
"33" => "NumericalOverflowError: NumericalOverflowError", | ||
"34" => "ReservationBreachesMaximumSupply: This reservation would go beyond the maximum supply of the master edition!", | ||
"35" => "AddressNotInReservation: Address not in reservation!", | ||
"36" => "CannotVerifyAnotherCreator: You cannot unilaterally verify another creator, they must sign", | ||
"37" => "CannotUnverifyAnotherCreator: You cannot unilaterally unverify another creator", | ||
"38" => "SpotMismatch: In initial reservation setting, spots remaining should equal total spots", | ||
"39" => "IncorrectOwner: Incorrect account owner", | ||
"3A" => "PrintingWouldBreachMaximumSupply: printing these tokens would breach the maximum supply limit of the master edition", | ||
"3B" => "DataIsImmutable: Data is immutable", | ||
"3C" => "DuplicateCreatorAddress: No duplicate creator addresses", | ||
"3D" => "ReservationSpotsRemainingShouldMatchTotalSpotsAtStart: Reservation spots remaining should match total spots when first being created", | ||
"3E" => "InvalidTokenProgram: Invalid token program", | ||
"3F" => "DataTypeMismatch: Data type mismatch", | ||
"40" => "BeyondAlottedAddressSize: Beyond alotted address size in reservation!", | ||
"41" => "ReservationNotComplete: The reservation has only been partially alotted", | ||
"42" => "TriedToReplaceAnExistingReservation: You cannot splice over an existing reservation!", | ||
"43" => "InvalidOperation: Invalid operation", | ||
"44" => "InvalidOwner: Invalid Owner", | ||
"45" => "PrintingMintSupplyMustBeZeroForConversion: Printing mint supply must be zero for conversion", | ||
"46" => "OneTimeAuthMintSupplyMustBeZeroForConversion: One Time Auth mint supply must be zero for conversion", | ||
"47" => "InvalidEditionIndex: You tried to insert one edition too many into an edition mark pda", | ||
"48" => "ReservationArrayShouldBeSizeOne: In the legacy system the reservation needs to be of size one for cpu limit reasons", | ||
"0" => "InstructionUnpackError: Failed to unpack instruction data", | ||
"1" => "InstructionPackError: Failed to pack instruction data", | ||
"2" => "NotRentExempt: Lamport balance below rent-exempt threshold", | ||
"3" => "AlreadyInitialized: Already initialized", | ||
"4" => "Uninitialized: Uninitialized", | ||
"5" => "InvalidMetadataKey: Metadata's key must match seed of ['metadata', program id, mint] provided", | ||
"6" => "InvalidEditionKey: Edition's key must match seed of ['metadata', program id, name, 'edition'] provided", | ||
"7" => "UpdateAuthorityIncorrect: Update Authority given does not match", | ||
"8" => "UpdateAuthorityIsNotSigner: Update Authority needs to be signer to update metadata", | ||
"9" => "NotMintAuthority: You must be the mint authority and signer on this transaction", | ||
"A" => "InvalidMintAuthority: Mint authority provided does not match the authority on the mint", | ||
"B" => "NameTooLong: Name too long", | ||
"C" => "SymbolTooLong: Symbol too long", | ||
"D" => "UriTooLong: URI too long", | ||
"E" => "UpdateAuthorityMustBeEqualToMetadataAuthorityAndSigner: Update authority must be equivalent to the metadata's authority and also signer of this transaction", | ||
"F" => "MintMismatch: Mint given does not match mint on Metadata", | ||
"10" => "EditionsMustHaveExactlyOneToken: Editions must have exactly one token", | ||
"11" => "MaxEditionsMintedAlready: Maximum editions printed already", | ||
"12" => "TokenMintToFailed: Token mint to failed", | ||
"13" => "MasterRecordMismatch: The master edition record passed must match the master record on the edition given", | ||
"14" => "DestinationMintMismatch: The destination account does not have the right mint", | ||
"15" => "EditionAlreadyMinted: An edition can only mint one of its kind!", | ||
"16" => "PrintingMintDecimalsShouldBeZero: Printing mint decimals should be zero", | ||
"17" => "OneTimePrintingAuthorizationMintDecimalsShouldBeZero: OneTimePrintingAuthorization mint decimals should be zero", | ||
"18" => "EditionMintDecimalsShouldBeZero: EditionMintDecimalsShouldBeZero", | ||
"19" => "TokenBurnFailed: Token burn failed", | ||
"1A" => "TokenAccountOneTimeAuthMintMismatch: The One Time authorization mint does not match that on the token account!", | ||
"1B" => "DerivedKeyInvalid: Derived key invalid", | ||
"1C" => "PrintingMintMismatch: The Printing mint does not match that on the master edition!", | ||
"1D" => "OneTimePrintingAuthMintMismatch: The One Time Printing Auth mint does not match that on the master edition!", | ||
"1E" => "TokenAccountMintMismatch: The mint of the token account does not match the Printing mint!", | ||
"1F" => "TokenAccountMintMismatchV2: The mint of the token account does not match the master metadata mint!", | ||
"20" => "NotEnoughTokens: Not enough tokens to mint a limited edition", | ||
"21" => "PrintingMintAuthorizationAccountMismatch: The mint on your authorization token holding account does not match your Printing mint!", | ||
"22" => "AuthorizationTokenAccountOwnerMismatch: The authorization token account has a different owner than the update authority for the master edition!", | ||
"23" => "Disabled: This feature is currently disabled.", | ||
"24" => "CreatorsTooLong: Creators list too long", | ||
"25" => "CreatorsMustBeAtleastOne: Creators must be at least one if set", | ||
"26" => "MustBeOneOfCreators: If using a creators array, you must be one of the creators listed", | ||
"27" => "NoCreatorsPresentOnMetadata: This metadata does not have creators", | ||
"28" => "CreatorNotFound: This creator address was not found", | ||
"29" => "InvalidBasisPoints: Basis points cannot be more than 10000", | ||
"2A" => "PrimarySaleCanOnlyBeFlippedToTrue: Primary sale can only be flipped to true and is immutable", | ||
"2B" => "OwnerMismatch: Owner does not match that on the account given", | ||
"2C" => "NoBalanceInAccountForAuthorization: This account has no tokens to be used for authorization", | ||
"2D" => "ShareTotalMustBe100: Share total must equal 100 for creator array", | ||
"2E" => "ReservationExists: This reservation list already exists!", | ||
"2F" => "ReservationDoesNotExist: This reservation list does not exist!", | ||
"30" => "ReservationNotSet: This reservation list exists but was never set with reservations", | ||
"31" => "ReservationAlreadyMade: This reservation list has already been set!", | ||
"32" => "BeyondMaxAddressSize: Provided more addresses than max allowed in single reservation", | ||
"33" => "NumericalOverflowError: NumericalOverflowError", | ||
"34" => "ReservationBreachesMaximumSupply: This reservation would go beyond the maximum supply of the master edition!", | ||
"35" => "AddressNotInReservation: Address not in reservation!", | ||
"36" => "CannotVerifyAnotherCreator: You cannot unilaterally verify another creator, they must sign", | ||
"37" => "CannotUnverifyAnotherCreator: You cannot unilaterally unverify another creator", | ||
"38" => "SpotMismatch: In initial reservation setting, spots remaining should equal total spots", | ||
"39" => "IncorrectOwner: Incorrect account owner", | ||
"3A" => "PrintingWouldBreachMaximumSupply: printing these tokens would breach the maximum supply limit of the master edition", | ||
"3B" => "DataIsImmutable: Data is immutable", | ||
"3C" => "DuplicateCreatorAddress: No duplicate creator addresses", | ||
"3D" => "ReservationSpotsRemainingShouldMatchTotalSpotsAtStart: Reservation spots remaining should match total spots when first being created", | ||
"3E" => "InvalidTokenProgram: Invalid token program", | ||
"3F" => "DataTypeMismatch: Data type mismatch", | ||
"40" => "BeyondAlottedAddressSize: Beyond alotted address size in reservation!", | ||
"41" => "ReservationNotComplete: The reservation has only been partially alotted", | ||
"42" => "TriedToReplaceAnExistingReservation: You cannot splice over an existing reservation!", | ||
"43" => "InvalidOperation: Invalid operation", | ||
"44" => "InvalidOwner: Invalid Owner", | ||
"45" => "PrintingMintSupplyMustBeZeroForConversion: Printing mint supply must be zero for conversion", | ||
"46" => "OneTimeAuthMintSupplyMustBeZeroForConversion: One Time Auth mint supply must be zero for conversion", | ||
"47" => "InvalidEditionIndex: You tried to insert one edition too many into an edition mark pda", | ||
"48" => "ReservationArrayShouldBeSizeOne: In the legacy system the reservation needs to be of size one for cpu limit reasons", | ||
"12C" => "IncorrectOwner: Account does not have correct owner!", | ||
"12D" => "Uninitialized: Account is not initialized!", | ||
"12E" => "MintMismatch: Mint Mismatch!", | ||
"12F" => "IndexGreaterThanLength: Index greater than length!", | ||
"130" => "ConfigMustHaveAtleastOneEntry: Config must have atleast one entry!", | ||
"131" => "NumericalOverflowError: Numerical overflow error!", | ||
"132" => "TooManyCreators: Can only provide up to 4 creators to candy machine (because candy machine is one)!", | ||
"133" => "UuidMustBeExactly6Length: Uuid must be exactly of 6 length", | ||
"134" => "NotEnoughTokens: Not enough tokens to pay for this minting", | ||
"135" => "NotEnoughSOL: Not enough SOL to pay for this minting", | ||
"136" => "TokenTransferFailed: Token transfer failed", | ||
"137" => "CandyMachineEmpty: Candy machine is empty!", | ||
"138" => "CandyMachineNotLiveYet: Candy machine is not live yet!", | ||
"139" => "ConfigLineMismatch: Number of config lines must be at least number of items available", | ||
}; |