3land_sdk 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +352 -0
- package/assets/3land_rebrand.gif +0 -0
- package/assets/battle_sol.gif +0 -0
- package/assets/ds.jpeg +0 -0
- package/assets/future.webp +0 -0
- package/assets/music.mp3 +0 -0
- package/assets/niicl.gif +0 -0
- package/assets/og.png +0 -0
- package/assets/phone.glb +0 -0
- package/assets/testvid.mp4 +0 -0
- package/idl.json +7652 -0
- package/package.json +35 -0
- package/src/index.ts +89 -0
- package/src/library/Irys/irys.ts +412 -0
- package/src/library/Store.ts +613 -0
- package/src/library/implementation/storeImplementation.ts +385 -0
- package/src/library/instructions/store/buySingleEdition.ts +227 -0
- package/src/library/instructions/store/createSingleEdition.ts +49 -0
- package/src/library/instructions/store/createStore.ts +19 -0
- package/src/library/instructions/store/idl.ts +7622 -0
- package/src/library/instructions/store/uploadFilesIryis.ts +133 -0
- package/src/types/accounts/ArchiveDeposit.ts +207 -0
- package/src/types/accounts/Authority.ts +73 -0
- package/src/types/accounts/BurnDeposit.ts +111 -0
- package/src/types/accounts/BurnProgress.ts +97 -0
- package/src/types/accounts/BuyHistory.ts +121 -0
- package/src/types/accounts/BuyTrack.ts +94 -0
- package/src/types/accounts/Card.ts +185 -0
- package/src/types/accounts/CollectionRegistry.ts +145 -0
- package/src/types/accounts/CollectorRegistry.ts +145 -0
- package/src/types/accounts/CreatorRegistry.ts +153 -0
- package/src/types/accounts/CurrencyArtistProof.ts +113 -0
- package/src/types/accounts/GenericUser.ts +185 -0
- package/src/types/accounts/ItemArchive.ts +223 -0
- package/src/types/accounts/ItemReserveList.ts +87 -0
- package/src/types/accounts/ItemReserveList2.ts +73 -0
- package/src/types/accounts/LutVault.ts +97 -0
- package/src/types/accounts/Pack.ts +367 -0
- package/src/types/accounts/PackContent.ts +97 -0
- package/src/types/accounts/PackOpenHolder.ts +141 -0
- package/src/types/accounts/PackReceipt.ts +145 -0
- package/src/types/accounts/PackTraits.ts +101 -0
- package/src/types/accounts/Payment.ts +97 -0
- package/src/types/accounts/PoolVault.ts +177 -0
- package/src/types/accounts/RevealForMe.ts +139 -0
- package/src/types/accounts/SecureHolder.ts +97 -0
- package/src/types/accounts/Single.ts +301 -0
- package/src/types/accounts/Store.ts +180 -0
- package/src/types/accounts/StoresHolder.ts +131 -0
- package/src/types/accounts/ThreeId.ts +189 -0
- package/src/types/accounts/TokenManager.ts +217 -0
- package/src/types/accounts/ZeroCard.ts +73 -0
- package/src/types/accounts/ZeroContent.ts +89 -0
- package/src/types/accounts/ZeroOpenHolder.ts +183 -0
- package/src/types/accounts/index.ts +84 -0
- package/src/types/errors/anchor.ts +773 -0
- package/src/types/errors/index.ts +59 -0
- package/src/types/implementation/implementationTypes.ts +27 -0
- package/src/types/instructions/addBurn.ts +56 -0
- package/src/types/instructions/adjustDepositBurn.ts +33 -0
- package/src/types/instructions/archiveItem.ts +60 -0
- package/src/types/instructions/assignPackDelegate.ts +30 -0
- package/src/types/instructions/burnPay.ts +55 -0
- package/src/types/instructions/buyPack.ts +69 -0
- package/src/types/instructions/buyPay.ts +71 -0
- package/src/types/instructions/buyToken.ts +64 -0
- package/src/types/instructions/claimZeroCard.ts +106 -0
- package/src/types/instructions/closeDepositBurn.ts +47 -0
- package/src/types/instructions/closeRegisterTraits.ts +28 -0
- package/src/types/instructions/createCard.ts +56 -0
- package/src/types/instructions/createCollection.ts +68 -0
- package/src/types/instructions/createPack.ts +71 -0
- package/src/types/instructions/createSingle.ts +71 -0
- package/src/types/instructions/createStore.ts +50 -0
- package/src/types/instructions/createTokenLauncher.ts +82 -0
- package/src/types/instructions/createZeroCard.ts +76 -0
- package/src/types/instructions/deleteCard.ts +32 -0
- package/src/types/instructions/deletePack.ts +40 -0
- package/src/types/instructions/deleteSingle.ts +36 -0
- package/src/types/instructions/deleteTokenLauncher.ts +38 -0
- package/src/types/instructions/depositBurn.ts +55 -0
- package/src/types/instructions/donateUser.ts +84 -0
- package/src/types/instructions/feedPool.ts +61 -0
- package/src/types/instructions/feedTraits.ts +44 -0
- package/src/types/instructions/feedTree.ts +63 -0
- package/src/types/instructions/flagPack.ts +50 -0
- package/src/types/instructions/flagSingle.ts +47 -0
- package/src/types/instructions/gatePay.ts +59 -0
- package/src/types/instructions/index.ts +140 -0
- package/src/types/instructions/initialize.ts +46 -0
- package/src/types/instructions/openPack.ts +79 -0
- package/src/types/instructions/prepareCreator.ts +30 -0
- package/src/types/instructions/preparePack.ts +51 -0
- package/src/types/instructions/prepareTraits.ts +28 -0
- package/src/types/instructions/printPack.ts +95 -0
- package/src/types/instructions/printSingle.ts +108 -0
- package/src/types/instructions/recoverDepositBurn.ts +80 -0
- package/src/types/instructions/registerActivity.ts +43 -0
- package/src/types/instructions/registerCollector.ts +63 -0
- package/src/types/instructions/registerCreator.ts +48 -0
- package/src/types/instructions/registerGenericUser.ts +94 -0
- package/src/types/instructions/registerPackUploads.ts +44 -0
- package/src/types/instructions/registerTraits.ts +42 -0
- package/src/types/instructions/registerUser.ts +50 -0
- package/src/types/instructions/storeLutFor.ts +44 -0
- package/src/types/instructions/unwrapAndDestroy.ts +56 -0
- package/src/types/instructions/updateCard.ts +54 -0
- package/src/types/instructions/updatePack.ts +71 -0
- package/src/types/instructions/updateSingle.ts +64 -0
- package/src/types/instructions/updateStore.ts +47 -0
- package/src/types/instructions/withdrawFromStore.ts +26 -0
- package/src/types/programId.ts +42 -0
- package/src/types/types/AccountClass.ts +868 -0
- package/src/types/types/AccountHasher.ts +89 -0
- package/src/types/types/ActionAfter.ts +202 -0
- package/src/types/types/AllowedCurrencyArgs.ts +53 -0
- package/src/types/types/AuthorityGateTypes.ts +90 -0
- package/src/types/types/BurnCount.ts +60 -0
- package/src/types/types/BurnState.ts +88 -0
- package/src/types/types/BurnTrack.ts +64 -0
- package/src/types/types/BurnType.ts +118 -0
- package/src/types/types/BurnTypeBurn.ts +56 -0
- package/src/types/types/BuyHistoryClass.ts +90 -0
- package/src/types/types/CardClass.ts +56 -0
- package/src/types/types/CardState.ts +238 -0
- package/src/types/types/CardTrack.ts +76 -0
- package/src/types/types/Category.ts +72 -0
- package/src/types/types/CnftData.ts +85 -0
- package/src/types/types/CollectTrack.ts +61 -0
- package/src/types/types/Collection.ts +64 -0
- package/src/types/types/CompactCnftData.ts +76 -0
- package/src/types/types/CoolTimePerAmountArgs.ts +72 -0
- package/src/types/types/Creator.ts +72 -0
- package/src/types/types/CreatorGateArgs.ts +53 -0
- package/src/types/types/CurrencyArtistProof.ts +85 -0
- package/src/types/types/CurrencyType.ts +259 -0
- package/src/types/types/DateTraitInit.ts +61 -0
- package/src/types/types/DateTraitInitMap.ts +72 -0
- package/src/types/types/Deposit.ts +85 -0
- package/src/types/types/DepositFormat.ts +90 -0
- package/src/types/types/DepositState.ts +88 -0
- package/src/types/types/DepositSubtype.ts +90 -0
- package/src/types/types/DepositTrack.ts +69 -0
- package/src/types/types/DepositTrackType.ts +120 -0
- package/src/types/types/DepositType.ts +245 -0
- package/src/types/types/Earnings.ts +37 -0
- package/src/types/types/EditionStoreType.ts +120 -0
- package/src/types/types/EncryptedPayload.ts +61 -0
- package/src/types/types/ExtraParameter.ts +117 -0
- package/src/types/types/FakeBurnCount.ts +64 -0
- package/src/types/types/FakeDeposit.ts +64 -0
- package/src/types/types/FakeTraitPair.ts +61 -0
- package/src/types/types/FakeTraitValue.ts +61 -0
- package/src/types/types/FakeVolumeTrack.ts +64 -0
- package/src/types/types/FeeType.ts +118 -0
- package/src/types/types/FeedingTraits.ts +57 -0
- package/src/types/types/Filter.ts +64 -0
- package/src/types/types/FilterType.ts +56 -0
- package/src/types/types/GeneralStore.ts +56 -0
- package/src/types/types/GenericStore.ts +64 -0
- package/src/types/types/GenericValue.ts +172 -0
- package/src/types/types/GlobalFee.ts +85 -0
- package/src/types/types/GlobalState.ts +148 -0
- package/src/types/types/IndexDate.ts +94 -0
- package/src/types/types/IndexDates.ts +64 -0
- package/src/types/types/Item.ts +53 -0
- package/src/types/types/ItemClass.ts +88 -0
- package/src/types/types/ItemState.ts +298 -0
- package/src/types/types/ItemTrack.ts +76 -0
- package/src/types/types/ListingPerWalletArgs.ts +53 -0
- package/src/types/types/MemeVaultProof.ts +64 -0
- package/src/types/types/MetadataArgs.ts +207 -0
- package/src/types/types/NonFungibleTraitInit.ts +64 -0
- package/src/types/types/NonFungibleTraitInitMap.ts +84 -0
- package/src/types/types/OnlyBetweenTimesArgs.ts +76 -0
- package/src/types/types/OnlyTheseDOWArgs.ts +53 -0
- package/src/types/types/PackConfig.ts +98 -0
- package/src/types/types/PackOpenHolderState.ts +120 -0
- package/src/types/types/PackRule.ts +85 -0
- package/src/types/types/PackState.ts +118 -0
- package/src/types/types/PackType.ts +118 -0
- package/src/types/types/PaymentClass.ts +118 -0
- package/src/types/types/PoolAccess.ts +88 -0
- package/src/types/types/PoolState.ts +88 -0
- package/src/types/types/PoolType.ts +88 -0
- package/src/types/types/Popularity.ts +76 -0
- package/src/types/types/PopularityState.ts +630 -0
- package/src/types/types/PreviousDonationRecord.ts +76 -0
- package/src/types/types/Price.ts +64 -0
- package/src/types/types/PriceRule.ts +216 -0
- package/src/types/types/RecoverDeposit.ts +56 -0
- package/src/types/types/Rule.ts +199 -0
- package/src/types/types/SaleConfig.ts +102 -0
- package/src/types/types/SaleTrack.ts +85 -0
- package/src/types/types/SaleType.ts +148 -0
- package/src/types/types/Seed.ts +61 -0
- package/src/types/types/SelectedCard.ts +61 -0
- package/src/types/types/SelectedZeroCard.ts +61 -0
- package/src/types/types/SemiFungibleTraitInit.ts +61 -0
- package/src/types/types/SemiFungibleTraitInitMap.ts +72 -0
- package/src/types/types/ShortCreator.ts +64 -0
- package/src/types/types/ShortMetadata.ts +145 -0
- package/src/types/types/ShortMetadataArgs.ts +111 -0
- package/src/types/types/StoreConfig.ts +98 -0
- package/src/types/types/StoreRule.ts +145 -0
- package/src/types/types/SuperCategory.ts +61 -0
- package/src/types/types/TightCardMetadata.ts +120 -0
- package/src/types/types/TimeRangeType.ts +120 -0
- package/src/types/types/TimedPerWalletArgs.ts +53 -0
- package/src/types/types/TokenMetadata.ts +72 -0
- package/src/types/types/TokenProgramVersion.ts +90 -0
- package/src/types/types/TokenStandard.ts +150 -0
- package/src/types/types/TokenState.ts +88 -0
- package/src/types/types/TokenType.ts +88 -0
- package/src/types/types/TotalPerTimeArgs.ts +85 -0
- package/src/types/types/TotalPerTimeWalletArgs.ts +61 -0
- package/src/types/types/TrackRegistry.ts +90 -0
- package/src/types/types/TraitInit.ts +210 -0
- package/src/types/types/TraitPass.ts +60 -0
- package/src/types/types/TraitPassType.ts +225 -0
- package/src/types/types/TraitType.ts +267 -0
- package/src/types/types/TraitValue.ts +72 -0
- package/src/types/types/UnlocksAfter.ts +172 -0
- package/src/types/types/UnwrapMetadata.ts +156 -0
- package/src/types/types/UseMethod.ts +118 -0
- package/src/types/types/Uses.ts +76 -0
- package/src/types/types/VerifyCollectionMetadata.ts +109 -0
- package/src/types/types/VolumeTrack.ts +61 -0
- package/src/types/types/WrappedSource.ts +85 -0
- package/src/types/types/ZeroConfig.ts +85 -0
- package/src/types/types/index.ts +798 -0
- package/src/utility/Connection.ts +9 -0
- package/src/utility/Holders.ts +8 -0
- package/src/utility/PdaManager.ts +230 -0
- package/src/utility/config.ts +32 -0
- package/src/utility/utils.ts +191 -0
- package/src/utility/validation.ts +229 -0
- package/tsconfig.json +12 -0
@@ -0,0 +1,773 @@
|
|
1
|
+
export type AnchorError =
|
2
|
+
| InstructionMissing
|
3
|
+
| InstructionFallbackNotFound
|
4
|
+
| InstructionDidNotDeserialize
|
5
|
+
| InstructionDidNotSerialize
|
6
|
+
| IdlInstructionStub
|
7
|
+
| IdlInstructionInvalidProgram
|
8
|
+
| ConstraintMut
|
9
|
+
| ConstraintHasOne
|
10
|
+
| ConstraintSigner
|
11
|
+
| ConstraintRaw
|
12
|
+
| ConstraintOwner
|
13
|
+
| ConstraintRentExempt
|
14
|
+
| ConstraintSeeds
|
15
|
+
| ConstraintExecutable
|
16
|
+
| ConstraintState
|
17
|
+
| ConstraintAssociated
|
18
|
+
| ConstraintAssociatedInit
|
19
|
+
| ConstraintClose
|
20
|
+
| ConstraintAddress
|
21
|
+
| ConstraintZero
|
22
|
+
| ConstraintTokenMint
|
23
|
+
| ConstraintTokenOwner
|
24
|
+
| ConstraintMintMintAuthority
|
25
|
+
| ConstraintMintFreezeAuthority
|
26
|
+
| ConstraintMintDecimals
|
27
|
+
| ConstraintSpace
|
28
|
+
| ConstraintAccountIsNone
|
29
|
+
| RequireViolated
|
30
|
+
| RequireEqViolated
|
31
|
+
| RequireKeysEqViolated
|
32
|
+
| RequireNeqViolated
|
33
|
+
| RequireKeysNeqViolated
|
34
|
+
| RequireGtViolated
|
35
|
+
| RequireGteViolated
|
36
|
+
| AccountDiscriminatorAlreadySet
|
37
|
+
| AccountDiscriminatorNotFound
|
38
|
+
| AccountDiscriminatorMismatch
|
39
|
+
| AccountDidNotDeserialize
|
40
|
+
| AccountDidNotSerialize
|
41
|
+
| AccountNotEnoughKeys
|
42
|
+
| AccountNotMutable
|
43
|
+
| AccountOwnedByWrongProgram
|
44
|
+
| InvalidProgramId
|
45
|
+
| InvalidProgramExecutable
|
46
|
+
| AccountNotSigner
|
47
|
+
| AccountNotSystemOwned
|
48
|
+
| AccountNotInitialized
|
49
|
+
| AccountNotProgramData
|
50
|
+
| AccountNotAssociatedTokenAccount
|
51
|
+
| AccountSysvarMismatch
|
52
|
+
| AccountReallocExceedsLimit
|
53
|
+
| AccountDuplicateReallocs
|
54
|
+
| DeclaredProgramIdMismatch
|
55
|
+
| Deprecated
|
56
|
+
|
57
|
+
export class InstructionMissing extends Error {
|
58
|
+
static readonly code = 100
|
59
|
+
readonly code = 100
|
60
|
+
readonly name = "InstructionMissing"
|
61
|
+
readonly msg = "8 byte instruction identifier not provided"
|
62
|
+
|
63
|
+
constructor(readonly logs?: string[]) {
|
64
|
+
super("100: 8 byte instruction identifier not provided")
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
export class InstructionFallbackNotFound extends Error {
|
69
|
+
static readonly code = 101
|
70
|
+
readonly code = 101
|
71
|
+
readonly name = "InstructionFallbackNotFound"
|
72
|
+
readonly msg = "Fallback functions are not supported"
|
73
|
+
|
74
|
+
constructor(readonly logs?: string[]) {
|
75
|
+
super("101: Fallback functions are not supported")
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
export class InstructionDidNotDeserialize extends Error {
|
80
|
+
static readonly code = 102
|
81
|
+
readonly code = 102
|
82
|
+
readonly name = "InstructionDidNotDeserialize"
|
83
|
+
readonly msg = "The program could not deserialize the given instruction"
|
84
|
+
|
85
|
+
constructor(readonly logs?: string[]) {
|
86
|
+
super("102: The program could not deserialize the given instruction")
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
export class InstructionDidNotSerialize extends Error {
|
91
|
+
static readonly code = 103
|
92
|
+
readonly code = 103
|
93
|
+
readonly name = "InstructionDidNotSerialize"
|
94
|
+
readonly msg = "The program could not serialize the given instruction"
|
95
|
+
|
96
|
+
constructor(readonly logs?: string[]) {
|
97
|
+
super("103: The program could not serialize the given instruction")
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
export class IdlInstructionStub extends Error {
|
102
|
+
static readonly code = 1000
|
103
|
+
readonly code = 1000
|
104
|
+
readonly name = "IdlInstructionStub"
|
105
|
+
readonly msg = "The program was compiled without idl instructions"
|
106
|
+
|
107
|
+
constructor(readonly logs?: string[]) {
|
108
|
+
super("1000: The program was compiled without idl instructions")
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
export class IdlInstructionInvalidProgram extends Error {
|
113
|
+
static readonly code = 1001
|
114
|
+
readonly code = 1001
|
115
|
+
readonly name = "IdlInstructionInvalidProgram"
|
116
|
+
readonly msg =
|
117
|
+
"The transaction was given an invalid program for the IDL instruction"
|
118
|
+
|
119
|
+
constructor(readonly logs?: string[]) {
|
120
|
+
super(
|
121
|
+
"1001: The transaction was given an invalid program for the IDL instruction"
|
122
|
+
)
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
export class ConstraintMut extends Error {
|
127
|
+
static readonly code = 2000
|
128
|
+
readonly code = 2000
|
129
|
+
readonly name = "ConstraintMut"
|
130
|
+
readonly msg = "A mut constraint was violated"
|
131
|
+
|
132
|
+
constructor(readonly logs?: string[]) {
|
133
|
+
super("2000: A mut constraint was violated")
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
export class ConstraintHasOne extends Error {
|
138
|
+
static readonly code = 2001
|
139
|
+
readonly code = 2001
|
140
|
+
readonly name = "ConstraintHasOne"
|
141
|
+
readonly msg = "A has one constraint was violated"
|
142
|
+
|
143
|
+
constructor(readonly logs?: string[]) {
|
144
|
+
super("2001: A has one constraint was violated")
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
export class ConstraintSigner extends Error {
|
149
|
+
static readonly code = 2002
|
150
|
+
readonly code = 2002
|
151
|
+
readonly name = "ConstraintSigner"
|
152
|
+
readonly msg = "A signer constraint was violated"
|
153
|
+
|
154
|
+
constructor(readonly logs?: string[]) {
|
155
|
+
super("2002: A signer constraint was violated")
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
export class ConstraintRaw extends Error {
|
160
|
+
static readonly code = 2003
|
161
|
+
readonly code = 2003
|
162
|
+
readonly name = "ConstraintRaw"
|
163
|
+
readonly msg = "A raw constraint was violated"
|
164
|
+
|
165
|
+
constructor(readonly logs?: string[]) {
|
166
|
+
super("2003: A raw constraint was violated")
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
export class ConstraintOwner extends Error {
|
171
|
+
static readonly code = 2004
|
172
|
+
readonly code = 2004
|
173
|
+
readonly name = "ConstraintOwner"
|
174
|
+
readonly msg = "An owner constraint was violated"
|
175
|
+
|
176
|
+
constructor(readonly logs?: string[]) {
|
177
|
+
super("2004: An owner constraint was violated")
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
export class ConstraintRentExempt extends Error {
|
182
|
+
static readonly code = 2005
|
183
|
+
readonly code = 2005
|
184
|
+
readonly name = "ConstraintRentExempt"
|
185
|
+
readonly msg = "A rent exemption constraint was violated"
|
186
|
+
|
187
|
+
constructor(readonly logs?: string[]) {
|
188
|
+
super("2005: A rent exemption constraint was violated")
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
export class ConstraintSeeds extends Error {
|
193
|
+
static readonly code = 2006
|
194
|
+
readonly code = 2006
|
195
|
+
readonly name = "ConstraintSeeds"
|
196
|
+
readonly msg = "A seeds constraint was violated"
|
197
|
+
|
198
|
+
constructor(readonly logs?: string[]) {
|
199
|
+
super("2006: A seeds constraint was violated")
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
export class ConstraintExecutable extends Error {
|
204
|
+
static readonly code = 2007
|
205
|
+
readonly code = 2007
|
206
|
+
readonly name = "ConstraintExecutable"
|
207
|
+
readonly msg = "An executable constraint was violated"
|
208
|
+
|
209
|
+
constructor(readonly logs?: string[]) {
|
210
|
+
super("2007: An executable constraint was violated")
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
export class ConstraintState extends Error {
|
215
|
+
static readonly code = 2008
|
216
|
+
readonly code = 2008
|
217
|
+
readonly name = "ConstraintState"
|
218
|
+
readonly msg = "Deprecated Error, feel free to replace with something else"
|
219
|
+
|
220
|
+
constructor(readonly logs?: string[]) {
|
221
|
+
super("2008: Deprecated Error, feel free to replace with something else")
|
222
|
+
}
|
223
|
+
}
|
224
|
+
|
225
|
+
export class ConstraintAssociated extends Error {
|
226
|
+
static readonly code = 2009
|
227
|
+
readonly code = 2009
|
228
|
+
readonly name = "ConstraintAssociated"
|
229
|
+
readonly msg = "An associated constraint was violated"
|
230
|
+
|
231
|
+
constructor(readonly logs?: string[]) {
|
232
|
+
super("2009: An associated constraint was violated")
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
export class ConstraintAssociatedInit extends Error {
|
237
|
+
static readonly code = 2010
|
238
|
+
readonly code = 2010
|
239
|
+
readonly name = "ConstraintAssociatedInit"
|
240
|
+
readonly msg = "An associated init constraint was violated"
|
241
|
+
|
242
|
+
constructor(readonly logs?: string[]) {
|
243
|
+
super("2010: An associated init constraint was violated")
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
export class ConstraintClose extends Error {
|
248
|
+
static readonly code = 2011
|
249
|
+
readonly code = 2011
|
250
|
+
readonly name = "ConstraintClose"
|
251
|
+
readonly msg = "A close constraint was violated"
|
252
|
+
|
253
|
+
constructor(readonly logs?: string[]) {
|
254
|
+
super("2011: A close constraint was violated")
|
255
|
+
}
|
256
|
+
}
|
257
|
+
|
258
|
+
export class ConstraintAddress extends Error {
|
259
|
+
static readonly code = 2012
|
260
|
+
readonly code = 2012
|
261
|
+
readonly name = "ConstraintAddress"
|
262
|
+
readonly msg = "An address constraint was violated"
|
263
|
+
|
264
|
+
constructor(readonly logs?: string[]) {
|
265
|
+
super("2012: An address constraint was violated")
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
export class ConstraintZero extends Error {
|
270
|
+
static readonly code = 2013
|
271
|
+
readonly code = 2013
|
272
|
+
readonly name = "ConstraintZero"
|
273
|
+
readonly msg = "Expected zero account discriminant"
|
274
|
+
|
275
|
+
constructor(readonly logs?: string[]) {
|
276
|
+
super("2013: Expected zero account discriminant")
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
|
+
export class ConstraintTokenMint extends Error {
|
281
|
+
static readonly code = 2014
|
282
|
+
readonly code = 2014
|
283
|
+
readonly name = "ConstraintTokenMint"
|
284
|
+
readonly msg = "A token mint constraint was violated"
|
285
|
+
|
286
|
+
constructor(readonly logs?: string[]) {
|
287
|
+
super("2014: A token mint constraint was violated")
|
288
|
+
}
|
289
|
+
}
|
290
|
+
|
291
|
+
export class ConstraintTokenOwner extends Error {
|
292
|
+
static readonly code = 2015
|
293
|
+
readonly code = 2015
|
294
|
+
readonly name = "ConstraintTokenOwner"
|
295
|
+
readonly msg = "A token owner constraint was violated"
|
296
|
+
|
297
|
+
constructor(readonly logs?: string[]) {
|
298
|
+
super("2015: A token owner constraint was violated")
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
export class ConstraintMintMintAuthority extends Error {
|
303
|
+
static readonly code = 2016
|
304
|
+
readonly code = 2016
|
305
|
+
readonly name = "ConstraintMintMintAuthority"
|
306
|
+
readonly msg = "A mint mint authority constraint was violated"
|
307
|
+
|
308
|
+
constructor(readonly logs?: string[]) {
|
309
|
+
super("2016: A mint mint authority constraint was violated")
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
export class ConstraintMintFreezeAuthority extends Error {
|
314
|
+
static readonly code = 2017
|
315
|
+
readonly code = 2017
|
316
|
+
readonly name = "ConstraintMintFreezeAuthority"
|
317
|
+
readonly msg = "A mint freeze authority constraint was violated"
|
318
|
+
|
319
|
+
constructor(readonly logs?: string[]) {
|
320
|
+
super("2017: A mint freeze authority constraint was violated")
|
321
|
+
}
|
322
|
+
}
|
323
|
+
|
324
|
+
export class ConstraintMintDecimals extends Error {
|
325
|
+
static readonly code = 2018
|
326
|
+
readonly code = 2018
|
327
|
+
readonly name = "ConstraintMintDecimals"
|
328
|
+
readonly msg = "A mint decimals constraint was violated"
|
329
|
+
|
330
|
+
constructor(readonly logs?: string[]) {
|
331
|
+
super("2018: A mint decimals constraint was violated")
|
332
|
+
}
|
333
|
+
}
|
334
|
+
|
335
|
+
export class ConstraintSpace extends Error {
|
336
|
+
static readonly code = 2019
|
337
|
+
readonly code = 2019
|
338
|
+
readonly name = "ConstraintSpace"
|
339
|
+
readonly msg = "A space constraint was violated"
|
340
|
+
|
341
|
+
constructor(readonly logs?: string[]) {
|
342
|
+
super("2019: A space constraint was violated")
|
343
|
+
}
|
344
|
+
}
|
345
|
+
|
346
|
+
export class ConstraintAccountIsNone extends Error {
|
347
|
+
static readonly code = 2020
|
348
|
+
readonly code = 2020
|
349
|
+
readonly name = "ConstraintAccountIsNone"
|
350
|
+
readonly msg = "A required account for the constraint is None"
|
351
|
+
|
352
|
+
constructor(readonly logs?: string[]) {
|
353
|
+
super("2020: A required account for the constraint is None")
|
354
|
+
}
|
355
|
+
}
|
356
|
+
|
357
|
+
export class RequireViolated extends Error {
|
358
|
+
static readonly code = 2500
|
359
|
+
readonly code = 2500
|
360
|
+
readonly name = "RequireViolated"
|
361
|
+
readonly msg = "A require expression was violated"
|
362
|
+
|
363
|
+
constructor(readonly logs?: string[]) {
|
364
|
+
super("2500: A require expression was violated")
|
365
|
+
}
|
366
|
+
}
|
367
|
+
|
368
|
+
export class RequireEqViolated extends Error {
|
369
|
+
static readonly code = 2501
|
370
|
+
readonly code = 2501
|
371
|
+
readonly name = "RequireEqViolated"
|
372
|
+
readonly msg = "A require_eq expression was violated"
|
373
|
+
|
374
|
+
constructor(readonly logs?: string[]) {
|
375
|
+
super("2501: A require_eq expression was violated")
|
376
|
+
}
|
377
|
+
}
|
378
|
+
|
379
|
+
export class RequireKeysEqViolated extends Error {
|
380
|
+
static readonly code = 2502
|
381
|
+
readonly code = 2502
|
382
|
+
readonly name = "RequireKeysEqViolated"
|
383
|
+
readonly msg = "A require_keys_eq expression was violated"
|
384
|
+
|
385
|
+
constructor(readonly logs?: string[]) {
|
386
|
+
super("2502: A require_keys_eq expression was violated")
|
387
|
+
}
|
388
|
+
}
|
389
|
+
|
390
|
+
export class RequireNeqViolated extends Error {
|
391
|
+
static readonly code = 2503
|
392
|
+
readonly code = 2503
|
393
|
+
readonly name = "RequireNeqViolated"
|
394
|
+
readonly msg = "A require_neq expression was violated"
|
395
|
+
|
396
|
+
constructor(readonly logs?: string[]) {
|
397
|
+
super("2503: A require_neq expression was violated")
|
398
|
+
}
|
399
|
+
}
|
400
|
+
|
401
|
+
export class RequireKeysNeqViolated extends Error {
|
402
|
+
static readonly code = 2504
|
403
|
+
readonly code = 2504
|
404
|
+
readonly name = "RequireKeysNeqViolated"
|
405
|
+
readonly msg = "A require_keys_neq expression was violated"
|
406
|
+
|
407
|
+
constructor(readonly logs?: string[]) {
|
408
|
+
super("2504: A require_keys_neq expression was violated")
|
409
|
+
}
|
410
|
+
}
|
411
|
+
|
412
|
+
export class RequireGtViolated extends Error {
|
413
|
+
static readonly code = 2505
|
414
|
+
readonly code = 2505
|
415
|
+
readonly name = "RequireGtViolated"
|
416
|
+
readonly msg = "A require_gt expression was violated"
|
417
|
+
|
418
|
+
constructor(readonly logs?: string[]) {
|
419
|
+
super("2505: A require_gt expression was violated")
|
420
|
+
}
|
421
|
+
}
|
422
|
+
|
423
|
+
export class RequireGteViolated extends Error {
|
424
|
+
static readonly code = 2506
|
425
|
+
readonly code = 2506
|
426
|
+
readonly name = "RequireGteViolated"
|
427
|
+
readonly msg = "A require_gte expression was violated"
|
428
|
+
|
429
|
+
constructor(readonly logs?: string[]) {
|
430
|
+
super("2506: A require_gte expression was violated")
|
431
|
+
}
|
432
|
+
}
|
433
|
+
|
434
|
+
export class AccountDiscriminatorAlreadySet extends Error {
|
435
|
+
static readonly code = 3000
|
436
|
+
readonly code = 3000
|
437
|
+
readonly name = "AccountDiscriminatorAlreadySet"
|
438
|
+
readonly msg = "The account discriminator was already set on this account"
|
439
|
+
|
440
|
+
constructor(readonly logs?: string[]) {
|
441
|
+
super("3000: The account discriminator was already set on this account")
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
export class AccountDiscriminatorNotFound extends Error {
|
446
|
+
static readonly code = 3001
|
447
|
+
readonly code = 3001
|
448
|
+
readonly name = "AccountDiscriminatorNotFound"
|
449
|
+
readonly msg = "No 8 byte discriminator was found on the account"
|
450
|
+
|
451
|
+
constructor(readonly logs?: string[]) {
|
452
|
+
super("3001: No 8 byte discriminator was found on the account")
|
453
|
+
}
|
454
|
+
}
|
455
|
+
|
456
|
+
export class AccountDiscriminatorMismatch extends Error {
|
457
|
+
static readonly code = 3002
|
458
|
+
readonly code = 3002
|
459
|
+
readonly name = "AccountDiscriminatorMismatch"
|
460
|
+
readonly msg = "8 byte discriminator did not match what was expected"
|
461
|
+
|
462
|
+
constructor(readonly logs?: string[]) {
|
463
|
+
super("3002: 8 byte discriminator did not match what was expected")
|
464
|
+
}
|
465
|
+
}
|
466
|
+
|
467
|
+
export class AccountDidNotDeserialize extends Error {
|
468
|
+
static readonly code = 3003
|
469
|
+
readonly code = 3003
|
470
|
+
readonly name = "AccountDidNotDeserialize"
|
471
|
+
readonly msg = "Failed to deserialize the account"
|
472
|
+
|
473
|
+
constructor(readonly logs?: string[]) {
|
474
|
+
super("3003: Failed to deserialize the account")
|
475
|
+
}
|
476
|
+
}
|
477
|
+
|
478
|
+
export class AccountDidNotSerialize extends Error {
|
479
|
+
static readonly code = 3004
|
480
|
+
readonly code = 3004
|
481
|
+
readonly name = "AccountDidNotSerialize"
|
482
|
+
readonly msg = "Failed to serialize the account"
|
483
|
+
|
484
|
+
constructor(readonly logs?: string[]) {
|
485
|
+
super("3004: Failed to serialize the account")
|
486
|
+
}
|
487
|
+
}
|
488
|
+
|
489
|
+
export class AccountNotEnoughKeys extends Error {
|
490
|
+
static readonly code = 3005
|
491
|
+
readonly code = 3005
|
492
|
+
readonly name = "AccountNotEnoughKeys"
|
493
|
+
readonly msg = "Not enough account keys given to the instruction"
|
494
|
+
|
495
|
+
constructor(readonly logs?: string[]) {
|
496
|
+
super("3005: Not enough account keys given to the instruction")
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
export class AccountNotMutable extends Error {
|
501
|
+
static readonly code = 3006
|
502
|
+
readonly code = 3006
|
503
|
+
readonly name = "AccountNotMutable"
|
504
|
+
readonly msg = "The given account is not mutable"
|
505
|
+
|
506
|
+
constructor(readonly logs?: string[]) {
|
507
|
+
super("3006: The given account is not mutable")
|
508
|
+
}
|
509
|
+
}
|
510
|
+
|
511
|
+
export class AccountOwnedByWrongProgram extends Error {
|
512
|
+
static readonly code = 3007
|
513
|
+
readonly code = 3007
|
514
|
+
readonly name = "AccountOwnedByWrongProgram"
|
515
|
+
readonly msg =
|
516
|
+
"The given account is owned by a different program than expected"
|
517
|
+
|
518
|
+
constructor(readonly logs?: string[]) {
|
519
|
+
super(
|
520
|
+
"3007: The given account is owned by a different program than expected"
|
521
|
+
)
|
522
|
+
}
|
523
|
+
}
|
524
|
+
|
525
|
+
export class InvalidProgramId extends Error {
|
526
|
+
static readonly code = 3008
|
527
|
+
readonly code = 3008
|
528
|
+
readonly name = "InvalidProgramId"
|
529
|
+
readonly msg = "Program ID was not as expected"
|
530
|
+
|
531
|
+
constructor(readonly logs?: string[]) {
|
532
|
+
super("3008: Program ID was not as expected")
|
533
|
+
}
|
534
|
+
}
|
535
|
+
|
536
|
+
export class InvalidProgramExecutable extends Error {
|
537
|
+
static readonly code = 3009
|
538
|
+
readonly code = 3009
|
539
|
+
readonly name = "InvalidProgramExecutable"
|
540
|
+
readonly msg = "Program account is not executable"
|
541
|
+
|
542
|
+
constructor(readonly logs?: string[]) {
|
543
|
+
super("3009: Program account is not executable")
|
544
|
+
}
|
545
|
+
}
|
546
|
+
|
547
|
+
export class AccountNotSigner extends Error {
|
548
|
+
static readonly code = 3010
|
549
|
+
readonly code = 3010
|
550
|
+
readonly name = "AccountNotSigner"
|
551
|
+
readonly msg = "The given account did not sign"
|
552
|
+
|
553
|
+
constructor(readonly logs?: string[]) {
|
554
|
+
super("3010: The given account did not sign")
|
555
|
+
}
|
556
|
+
}
|
557
|
+
|
558
|
+
export class AccountNotSystemOwned extends Error {
|
559
|
+
static readonly code = 3011
|
560
|
+
readonly code = 3011
|
561
|
+
readonly name = "AccountNotSystemOwned"
|
562
|
+
readonly msg = "The given account is not owned by the system program"
|
563
|
+
|
564
|
+
constructor(readonly logs?: string[]) {
|
565
|
+
super("3011: The given account is not owned by the system program")
|
566
|
+
}
|
567
|
+
}
|
568
|
+
|
569
|
+
export class AccountNotInitialized extends Error {
|
570
|
+
static readonly code = 3012
|
571
|
+
readonly code = 3012
|
572
|
+
readonly name = "AccountNotInitialized"
|
573
|
+
readonly msg = "The program expected this account to be already initialized"
|
574
|
+
|
575
|
+
constructor(readonly logs?: string[]) {
|
576
|
+
super("3012: The program expected this account to be already initialized")
|
577
|
+
}
|
578
|
+
}
|
579
|
+
|
580
|
+
export class AccountNotProgramData extends Error {
|
581
|
+
static readonly code = 3013
|
582
|
+
readonly code = 3013
|
583
|
+
readonly name = "AccountNotProgramData"
|
584
|
+
readonly msg = "The given account is not a program data account"
|
585
|
+
|
586
|
+
constructor(readonly logs?: string[]) {
|
587
|
+
super("3013: The given account is not a program data account")
|
588
|
+
}
|
589
|
+
}
|
590
|
+
|
591
|
+
export class AccountNotAssociatedTokenAccount extends Error {
|
592
|
+
static readonly code = 3014
|
593
|
+
readonly code = 3014
|
594
|
+
readonly name = "AccountNotAssociatedTokenAccount"
|
595
|
+
readonly msg = "The given account is not the associated token account"
|
596
|
+
|
597
|
+
constructor(readonly logs?: string[]) {
|
598
|
+
super("3014: The given account is not the associated token account")
|
599
|
+
}
|
600
|
+
}
|
601
|
+
|
602
|
+
export class AccountSysvarMismatch extends Error {
|
603
|
+
static readonly code = 3015
|
604
|
+
readonly code = 3015
|
605
|
+
readonly name = "AccountSysvarMismatch"
|
606
|
+
readonly msg = "The given public key does not match the required sysvar"
|
607
|
+
|
608
|
+
constructor(readonly logs?: string[]) {
|
609
|
+
super("3015: The given public key does not match the required sysvar")
|
610
|
+
}
|
611
|
+
}
|
612
|
+
|
613
|
+
export class AccountReallocExceedsLimit extends Error {
|
614
|
+
static readonly code = 3016
|
615
|
+
readonly code = 3016
|
616
|
+
readonly name = "AccountReallocExceedsLimit"
|
617
|
+
readonly msg =
|
618
|
+
"The account reallocation exceeds the MAX_PERMITTED_DATA_INCREASE limit"
|
619
|
+
|
620
|
+
constructor(readonly logs?: string[]) {
|
621
|
+
super(
|
622
|
+
"3016: The account reallocation exceeds the MAX_PERMITTED_DATA_INCREASE limit"
|
623
|
+
)
|
624
|
+
}
|
625
|
+
}
|
626
|
+
|
627
|
+
export class AccountDuplicateReallocs extends Error {
|
628
|
+
static readonly code = 3017
|
629
|
+
readonly code = 3017
|
630
|
+
readonly name = "AccountDuplicateReallocs"
|
631
|
+
readonly msg = "The account was duplicated for more than one reallocation"
|
632
|
+
|
633
|
+
constructor(readonly logs?: string[]) {
|
634
|
+
super("3017: The account was duplicated for more than one reallocation")
|
635
|
+
}
|
636
|
+
}
|
637
|
+
|
638
|
+
export class DeclaredProgramIdMismatch extends Error {
|
639
|
+
static readonly code = 4100
|
640
|
+
readonly code = 4100
|
641
|
+
readonly name = "DeclaredProgramIdMismatch"
|
642
|
+
readonly msg = "The declared program id does not match the actual program id"
|
643
|
+
|
644
|
+
constructor(readonly logs?: string[]) {
|
645
|
+
super("4100: The declared program id does not match the actual program id")
|
646
|
+
}
|
647
|
+
}
|
648
|
+
|
649
|
+
export class Deprecated extends Error {
|
650
|
+
static readonly code = 5000
|
651
|
+
readonly code = 5000
|
652
|
+
readonly name = "Deprecated"
|
653
|
+
readonly msg = "The API being used is deprecated and should no longer be used"
|
654
|
+
|
655
|
+
constructor(readonly logs?: string[]) {
|
656
|
+
super("5000: The API being used is deprecated and should no longer be used")
|
657
|
+
}
|
658
|
+
}
|
659
|
+
|
660
|
+
export function fromCode(code: number, logs?: string[]): AnchorError | null {
|
661
|
+
switch (code) {
|
662
|
+
case 100:
|
663
|
+
return new InstructionMissing(logs)
|
664
|
+
case 101:
|
665
|
+
return new InstructionFallbackNotFound(logs)
|
666
|
+
case 102:
|
667
|
+
return new InstructionDidNotDeserialize(logs)
|
668
|
+
case 103:
|
669
|
+
return new InstructionDidNotSerialize(logs)
|
670
|
+
case 1000:
|
671
|
+
return new IdlInstructionStub(logs)
|
672
|
+
case 1001:
|
673
|
+
return new IdlInstructionInvalidProgram(logs)
|
674
|
+
case 2000:
|
675
|
+
return new ConstraintMut(logs)
|
676
|
+
case 2001:
|
677
|
+
return new ConstraintHasOne(logs)
|
678
|
+
case 2002:
|
679
|
+
return new ConstraintSigner(logs)
|
680
|
+
case 2003:
|
681
|
+
return new ConstraintRaw(logs)
|
682
|
+
case 2004:
|
683
|
+
return new ConstraintOwner(logs)
|
684
|
+
case 2005:
|
685
|
+
return new ConstraintRentExempt(logs)
|
686
|
+
case 2006:
|
687
|
+
return new ConstraintSeeds(logs)
|
688
|
+
case 2007:
|
689
|
+
return new ConstraintExecutable(logs)
|
690
|
+
case 2008:
|
691
|
+
return new ConstraintState(logs)
|
692
|
+
case 2009:
|
693
|
+
return new ConstraintAssociated(logs)
|
694
|
+
case 2010:
|
695
|
+
return new ConstraintAssociatedInit(logs)
|
696
|
+
case 2011:
|
697
|
+
return new ConstraintClose(logs)
|
698
|
+
case 2012:
|
699
|
+
return new ConstraintAddress(logs)
|
700
|
+
case 2013:
|
701
|
+
return new ConstraintZero(logs)
|
702
|
+
case 2014:
|
703
|
+
return new ConstraintTokenMint(logs)
|
704
|
+
case 2015:
|
705
|
+
return new ConstraintTokenOwner(logs)
|
706
|
+
case 2016:
|
707
|
+
return new ConstraintMintMintAuthority(logs)
|
708
|
+
case 2017:
|
709
|
+
return new ConstraintMintFreezeAuthority(logs)
|
710
|
+
case 2018:
|
711
|
+
return new ConstraintMintDecimals(logs)
|
712
|
+
case 2019:
|
713
|
+
return new ConstraintSpace(logs)
|
714
|
+
case 2020:
|
715
|
+
return new ConstraintAccountIsNone(logs)
|
716
|
+
case 2500:
|
717
|
+
return new RequireViolated(logs)
|
718
|
+
case 2501:
|
719
|
+
return new RequireEqViolated(logs)
|
720
|
+
case 2502:
|
721
|
+
return new RequireKeysEqViolated(logs)
|
722
|
+
case 2503:
|
723
|
+
return new RequireNeqViolated(logs)
|
724
|
+
case 2504:
|
725
|
+
return new RequireKeysNeqViolated(logs)
|
726
|
+
case 2505:
|
727
|
+
return new RequireGtViolated(logs)
|
728
|
+
case 2506:
|
729
|
+
return new RequireGteViolated(logs)
|
730
|
+
case 3000:
|
731
|
+
return new AccountDiscriminatorAlreadySet(logs)
|
732
|
+
case 3001:
|
733
|
+
return new AccountDiscriminatorNotFound(logs)
|
734
|
+
case 3002:
|
735
|
+
return new AccountDiscriminatorMismatch(logs)
|
736
|
+
case 3003:
|
737
|
+
return new AccountDidNotDeserialize(logs)
|
738
|
+
case 3004:
|
739
|
+
return new AccountDidNotSerialize(logs)
|
740
|
+
case 3005:
|
741
|
+
return new AccountNotEnoughKeys(logs)
|
742
|
+
case 3006:
|
743
|
+
return new AccountNotMutable(logs)
|
744
|
+
case 3007:
|
745
|
+
return new AccountOwnedByWrongProgram(logs)
|
746
|
+
case 3008:
|
747
|
+
return new InvalidProgramId(logs)
|
748
|
+
case 3009:
|
749
|
+
return new InvalidProgramExecutable(logs)
|
750
|
+
case 3010:
|
751
|
+
return new AccountNotSigner(logs)
|
752
|
+
case 3011:
|
753
|
+
return new AccountNotSystemOwned(logs)
|
754
|
+
case 3012:
|
755
|
+
return new AccountNotInitialized(logs)
|
756
|
+
case 3013:
|
757
|
+
return new AccountNotProgramData(logs)
|
758
|
+
case 3014:
|
759
|
+
return new AccountNotAssociatedTokenAccount(logs)
|
760
|
+
case 3015:
|
761
|
+
return new AccountSysvarMismatch(logs)
|
762
|
+
case 3016:
|
763
|
+
return new AccountReallocExceedsLimit(logs)
|
764
|
+
case 3017:
|
765
|
+
return new AccountDuplicateReallocs(logs)
|
766
|
+
case 4100:
|
767
|
+
return new DeclaredProgramIdMismatch(logs)
|
768
|
+
case 5000:
|
769
|
+
return new Deprecated(logs)
|
770
|
+
}
|
771
|
+
|
772
|
+
return null
|
773
|
+
}
|