3land_sdk 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (238) hide show
  1. package/README.md +352 -0
  2. package/assets/3land_rebrand.gif +0 -0
  3. package/assets/battle_sol.gif +0 -0
  4. package/assets/ds.jpeg +0 -0
  5. package/assets/future.webp +0 -0
  6. package/assets/music.mp3 +0 -0
  7. package/assets/niicl.gif +0 -0
  8. package/assets/og.png +0 -0
  9. package/assets/phone.glb +0 -0
  10. package/assets/testvid.mp4 +0 -0
  11. package/idl.json +7652 -0
  12. package/package.json +35 -0
  13. package/src/index.ts +89 -0
  14. package/src/library/Irys/irys.ts +412 -0
  15. package/src/library/Store.ts +613 -0
  16. package/src/library/implementation/storeImplementation.ts +385 -0
  17. package/src/library/instructions/store/buySingleEdition.ts +227 -0
  18. package/src/library/instructions/store/createSingleEdition.ts +49 -0
  19. package/src/library/instructions/store/createStore.ts +19 -0
  20. package/src/library/instructions/store/idl.ts +7622 -0
  21. package/src/library/instructions/store/uploadFilesIryis.ts +133 -0
  22. package/src/types/accounts/ArchiveDeposit.ts +207 -0
  23. package/src/types/accounts/Authority.ts +73 -0
  24. package/src/types/accounts/BurnDeposit.ts +111 -0
  25. package/src/types/accounts/BurnProgress.ts +97 -0
  26. package/src/types/accounts/BuyHistory.ts +121 -0
  27. package/src/types/accounts/BuyTrack.ts +94 -0
  28. package/src/types/accounts/Card.ts +185 -0
  29. package/src/types/accounts/CollectionRegistry.ts +145 -0
  30. package/src/types/accounts/CollectorRegistry.ts +145 -0
  31. package/src/types/accounts/CreatorRegistry.ts +153 -0
  32. package/src/types/accounts/CurrencyArtistProof.ts +113 -0
  33. package/src/types/accounts/GenericUser.ts +185 -0
  34. package/src/types/accounts/ItemArchive.ts +223 -0
  35. package/src/types/accounts/ItemReserveList.ts +87 -0
  36. package/src/types/accounts/ItemReserveList2.ts +73 -0
  37. package/src/types/accounts/LutVault.ts +97 -0
  38. package/src/types/accounts/Pack.ts +367 -0
  39. package/src/types/accounts/PackContent.ts +97 -0
  40. package/src/types/accounts/PackOpenHolder.ts +141 -0
  41. package/src/types/accounts/PackReceipt.ts +145 -0
  42. package/src/types/accounts/PackTraits.ts +101 -0
  43. package/src/types/accounts/Payment.ts +97 -0
  44. package/src/types/accounts/PoolVault.ts +177 -0
  45. package/src/types/accounts/RevealForMe.ts +139 -0
  46. package/src/types/accounts/SecureHolder.ts +97 -0
  47. package/src/types/accounts/Single.ts +301 -0
  48. package/src/types/accounts/Store.ts +180 -0
  49. package/src/types/accounts/StoresHolder.ts +131 -0
  50. package/src/types/accounts/ThreeId.ts +189 -0
  51. package/src/types/accounts/TokenManager.ts +217 -0
  52. package/src/types/accounts/ZeroCard.ts +73 -0
  53. package/src/types/accounts/ZeroContent.ts +89 -0
  54. package/src/types/accounts/ZeroOpenHolder.ts +183 -0
  55. package/src/types/accounts/index.ts +84 -0
  56. package/src/types/errors/anchor.ts +773 -0
  57. package/src/types/errors/index.ts +59 -0
  58. package/src/types/implementation/implementationTypes.ts +27 -0
  59. package/src/types/instructions/addBurn.ts +56 -0
  60. package/src/types/instructions/adjustDepositBurn.ts +33 -0
  61. package/src/types/instructions/archiveItem.ts +60 -0
  62. package/src/types/instructions/assignPackDelegate.ts +30 -0
  63. package/src/types/instructions/burnPay.ts +55 -0
  64. package/src/types/instructions/buyPack.ts +69 -0
  65. package/src/types/instructions/buyPay.ts +71 -0
  66. package/src/types/instructions/buyToken.ts +64 -0
  67. package/src/types/instructions/claimZeroCard.ts +106 -0
  68. package/src/types/instructions/closeDepositBurn.ts +47 -0
  69. package/src/types/instructions/closeRegisterTraits.ts +28 -0
  70. package/src/types/instructions/createCard.ts +56 -0
  71. package/src/types/instructions/createCollection.ts +68 -0
  72. package/src/types/instructions/createPack.ts +71 -0
  73. package/src/types/instructions/createSingle.ts +71 -0
  74. package/src/types/instructions/createStore.ts +50 -0
  75. package/src/types/instructions/createTokenLauncher.ts +82 -0
  76. package/src/types/instructions/createZeroCard.ts +76 -0
  77. package/src/types/instructions/deleteCard.ts +32 -0
  78. package/src/types/instructions/deletePack.ts +40 -0
  79. package/src/types/instructions/deleteSingle.ts +36 -0
  80. package/src/types/instructions/deleteTokenLauncher.ts +38 -0
  81. package/src/types/instructions/depositBurn.ts +55 -0
  82. package/src/types/instructions/donateUser.ts +84 -0
  83. package/src/types/instructions/feedPool.ts +61 -0
  84. package/src/types/instructions/feedTraits.ts +44 -0
  85. package/src/types/instructions/feedTree.ts +63 -0
  86. package/src/types/instructions/flagPack.ts +50 -0
  87. package/src/types/instructions/flagSingle.ts +47 -0
  88. package/src/types/instructions/gatePay.ts +59 -0
  89. package/src/types/instructions/index.ts +140 -0
  90. package/src/types/instructions/initialize.ts +46 -0
  91. package/src/types/instructions/openPack.ts +79 -0
  92. package/src/types/instructions/prepareCreator.ts +30 -0
  93. package/src/types/instructions/preparePack.ts +51 -0
  94. package/src/types/instructions/prepareTraits.ts +28 -0
  95. package/src/types/instructions/printPack.ts +95 -0
  96. package/src/types/instructions/printSingle.ts +108 -0
  97. package/src/types/instructions/recoverDepositBurn.ts +80 -0
  98. package/src/types/instructions/registerActivity.ts +43 -0
  99. package/src/types/instructions/registerCollector.ts +63 -0
  100. package/src/types/instructions/registerCreator.ts +48 -0
  101. package/src/types/instructions/registerGenericUser.ts +94 -0
  102. package/src/types/instructions/registerPackUploads.ts +44 -0
  103. package/src/types/instructions/registerTraits.ts +42 -0
  104. package/src/types/instructions/registerUser.ts +50 -0
  105. package/src/types/instructions/storeLutFor.ts +44 -0
  106. package/src/types/instructions/unwrapAndDestroy.ts +56 -0
  107. package/src/types/instructions/updateCard.ts +54 -0
  108. package/src/types/instructions/updatePack.ts +71 -0
  109. package/src/types/instructions/updateSingle.ts +64 -0
  110. package/src/types/instructions/updateStore.ts +47 -0
  111. package/src/types/instructions/withdrawFromStore.ts +26 -0
  112. package/src/types/programId.ts +42 -0
  113. package/src/types/types/AccountClass.ts +868 -0
  114. package/src/types/types/AccountHasher.ts +89 -0
  115. package/src/types/types/ActionAfter.ts +202 -0
  116. package/src/types/types/AllowedCurrencyArgs.ts +53 -0
  117. package/src/types/types/AuthorityGateTypes.ts +90 -0
  118. package/src/types/types/BurnCount.ts +60 -0
  119. package/src/types/types/BurnState.ts +88 -0
  120. package/src/types/types/BurnTrack.ts +64 -0
  121. package/src/types/types/BurnType.ts +118 -0
  122. package/src/types/types/BurnTypeBurn.ts +56 -0
  123. package/src/types/types/BuyHistoryClass.ts +90 -0
  124. package/src/types/types/CardClass.ts +56 -0
  125. package/src/types/types/CardState.ts +238 -0
  126. package/src/types/types/CardTrack.ts +76 -0
  127. package/src/types/types/Category.ts +72 -0
  128. package/src/types/types/CnftData.ts +85 -0
  129. package/src/types/types/CollectTrack.ts +61 -0
  130. package/src/types/types/Collection.ts +64 -0
  131. package/src/types/types/CompactCnftData.ts +76 -0
  132. package/src/types/types/CoolTimePerAmountArgs.ts +72 -0
  133. package/src/types/types/Creator.ts +72 -0
  134. package/src/types/types/CreatorGateArgs.ts +53 -0
  135. package/src/types/types/CurrencyArtistProof.ts +85 -0
  136. package/src/types/types/CurrencyType.ts +259 -0
  137. package/src/types/types/DateTraitInit.ts +61 -0
  138. package/src/types/types/DateTraitInitMap.ts +72 -0
  139. package/src/types/types/Deposit.ts +85 -0
  140. package/src/types/types/DepositFormat.ts +90 -0
  141. package/src/types/types/DepositState.ts +88 -0
  142. package/src/types/types/DepositSubtype.ts +90 -0
  143. package/src/types/types/DepositTrack.ts +69 -0
  144. package/src/types/types/DepositTrackType.ts +120 -0
  145. package/src/types/types/DepositType.ts +245 -0
  146. package/src/types/types/Earnings.ts +37 -0
  147. package/src/types/types/EditionStoreType.ts +120 -0
  148. package/src/types/types/EncryptedPayload.ts +61 -0
  149. package/src/types/types/ExtraParameter.ts +117 -0
  150. package/src/types/types/FakeBurnCount.ts +64 -0
  151. package/src/types/types/FakeDeposit.ts +64 -0
  152. package/src/types/types/FakeTraitPair.ts +61 -0
  153. package/src/types/types/FakeTraitValue.ts +61 -0
  154. package/src/types/types/FakeVolumeTrack.ts +64 -0
  155. package/src/types/types/FeeType.ts +118 -0
  156. package/src/types/types/FeedingTraits.ts +57 -0
  157. package/src/types/types/Filter.ts +64 -0
  158. package/src/types/types/FilterType.ts +56 -0
  159. package/src/types/types/GeneralStore.ts +56 -0
  160. package/src/types/types/GenericStore.ts +64 -0
  161. package/src/types/types/GenericValue.ts +172 -0
  162. package/src/types/types/GlobalFee.ts +85 -0
  163. package/src/types/types/GlobalState.ts +148 -0
  164. package/src/types/types/IndexDate.ts +94 -0
  165. package/src/types/types/IndexDates.ts +64 -0
  166. package/src/types/types/Item.ts +53 -0
  167. package/src/types/types/ItemClass.ts +88 -0
  168. package/src/types/types/ItemState.ts +298 -0
  169. package/src/types/types/ItemTrack.ts +76 -0
  170. package/src/types/types/ListingPerWalletArgs.ts +53 -0
  171. package/src/types/types/MemeVaultProof.ts +64 -0
  172. package/src/types/types/MetadataArgs.ts +207 -0
  173. package/src/types/types/NonFungibleTraitInit.ts +64 -0
  174. package/src/types/types/NonFungibleTraitInitMap.ts +84 -0
  175. package/src/types/types/OnlyBetweenTimesArgs.ts +76 -0
  176. package/src/types/types/OnlyTheseDOWArgs.ts +53 -0
  177. package/src/types/types/PackConfig.ts +98 -0
  178. package/src/types/types/PackOpenHolderState.ts +120 -0
  179. package/src/types/types/PackRule.ts +85 -0
  180. package/src/types/types/PackState.ts +118 -0
  181. package/src/types/types/PackType.ts +118 -0
  182. package/src/types/types/PaymentClass.ts +118 -0
  183. package/src/types/types/PoolAccess.ts +88 -0
  184. package/src/types/types/PoolState.ts +88 -0
  185. package/src/types/types/PoolType.ts +88 -0
  186. package/src/types/types/Popularity.ts +76 -0
  187. package/src/types/types/PopularityState.ts +630 -0
  188. package/src/types/types/PreviousDonationRecord.ts +76 -0
  189. package/src/types/types/Price.ts +64 -0
  190. package/src/types/types/PriceRule.ts +216 -0
  191. package/src/types/types/RecoverDeposit.ts +56 -0
  192. package/src/types/types/Rule.ts +199 -0
  193. package/src/types/types/SaleConfig.ts +102 -0
  194. package/src/types/types/SaleTrack.ts +85 -0
  195. package/src/types/types/SaleType.ts +148 -0
  196. package/src/types/types/Seed.ts +61 -0
  197. package/src/types/types/SelectedCard.ts +61 -0
  198. package/src/types/types/SelectedZeroCard.ts +61 -0
  199. package/src/types/types/SemiFungibleTraitInit.ts +61 -0
  200. package/src/types/types/SemiFungibleTraitInitMap.ts +72 -0
  201. package/src/types/types/ShortCreator.ts +64 -0
  202. package/src/types/types/ShortMetadata.ts +145 -0
  203. package/src/types/types/ShortMetadataArgs.ts +111 -0
  204. package/src/types/types/StoreConfig.ts +98 -0
  205. package/src/types/types/StoreRule.ts +145 -0
  206. package/src/types/types/SuperCategory.ts +61 -0
  207. package/src/types/types/TightCardMetadata.ts +120 -0
  208. package/src/types/types/TimeRangeType.ts +120 -0
  209. package/src/types/types/TimedPerWalletArgs.ts +53 -0
  210. package/src/types/types/TokenMetadata.ts +72 -0
  211. package/src/types/types/TokenProgramVersion.ts +90 -0
  212. package/src/types/types/TokenStandard.ts +150 -0
  213. package/src/types/types/TokenState.ts +88 -0
  214. package/src/types/types/TokenType.ts +88 -0
  215. package/src/types/types/TotalPerTimeArgs.ts +85 -0
  216. package/src/types/types/TotalPerTimeWalletArgs.ts +61 -0
  217. package/src/types/types/TrackRegistry.ts +90 -0
  218. package/src/types/types/TraitInit.ts +210 -0
  219. package/src/types/types/TraitPass.ts +60 -0
  220. package/src/types/types/TraitPassType.ts +225 -0
  221. package/src/types/types/TraitType.ts +267 -0
  222. package/src/types/types/TraitValue.ts +72 -0
  223. package/src/types/types/UnlocksAfter.ts +172 -0
  224. package/src/types/types/UnwrapMetadata.ts +156 -0
  225. package/src/types/types/UseMethod.ts +118 -0
  226. package/src/types/types/Uses.ts +76 -0
  227. package/src/types/types/VerifyCollectionMetadata.ts +109 -0
  228. package/src/types/types/VolumeTrack.ts +61 -0
  229. package/src/types/types/WrappedSource.ts +85 -0
  230. package/src/types/types/ZeroConfig.ts +85 -0
  231. package/src/types/types/index.ts +798 -0
  232. package/src/utility/Connection.ts +9 -0
  233. package/src/utility/Holders.ts +8 -0
  234. package/src/utility/PdaManager.ts +230 -0
  235. package/src/utility/config.ts +32 -0
  236. package/src/utility/utils.ts +191 -0
  237. package/src/utility/validation.ts +229 -0
  238. package/tsconfig.json +12 -0
@@ -0,0 +1,798 @@
1
+ import * as TraitPassType from "./TraitPassType"
2
+ import * as TraitType from "./TraitType"
3
+ import * as TraitInit from "./TraitInit"
4
+ import * as DepositType from "./DepositType"
5
+ import * as DepositTrackType from "./DepositTrackType"
6
+ import * as BurnState from "./BurnState"
7
+ import * as DepositState from "./DepositState"
8
+ import * as DepositSubtype from "./DepositSubtype"
9
+ import * as DepositFormat from "./DepositFormat"
10
+ import * as GenericValue from "./GenericValue"
11
+ import * as BuyHistoryClass from "./BuyHistoryClass"
12
+ import * as FeeType from "./FeeType"
13
+ import * as PackRule from "./PackRule"
14
+ import * as StoreRule from "./StoreRule"
15
+ import * as BurnTypeBurn from "./BurnTypeBurn"
16
+ import * as EditionStoreType from "./EditionStoreType"
17
+ import * as FilterType from "./FilterType"
18
+ import * as PopularityState from "./PopularityState"
19
+ import * as TrackRegistry from "./TrackRegistry"
20
+ import * as PackType from "./PackType"
21
+ import * as SaleType from "./SaleType"
22
+ import * as CurrencyType from "./CurrencyType"
23
+ import * as CardState from "./CardState"
24
+ import * as ItemState from "./ItemState"
25
+ import * as PackState from "./PackState"
26
+ import * as PackOpenHolderState from "./PackOpenHolderState"
27
+ import * as PriceRule from "./PriceRule"
28
+ import * as TimeRangeType from "./TimeRangeType"
29
+ import * as UnlocksAfter from "./UnlocksAfter"
30
+ import * as ActionAfter from "./ActionAfter"
31
+ import * as Rule from "./Rule"
32
+ import * as AuthorityGateTypes from "./AuthorityGateTypes"
33
+ import * as GeneralStore from "./GeneralStore"
34
+ import * as PoolType from "./PoolType"
35
+ import * as PoolState from "./PoolState"
36
+ import * as PoolAccess from "./PoolAccess"
37
+ import * as ExtraParameter from "./ExtraParameter"
38
+ import * as AccountClass from "./AccountClass"
39
+ import * as GlobalState from "./GlobalState"
40
+ import * as TokenType from "./TokenType"
41
+ import * as TokenState from "./TokenState"
42
+ import * as BurnType from "./BurnType"
43
+ import * as PaymentClass from "./PaymentClass"
44
+ import * as ItemClass from "./ItemClass"
45
+ import * as CardClass from "./CardClass"
46
+ import * as TokenProgramVersion from "./TokenProgramVersion"
47
+ import * as TokenStandard from "./TokenStandard"
48
+ import * as UseMethod from "./UseMethod"
49
+
50
+ export { CurrencyArtistProof } from "./CurrencyArtistProof"
51
+ export type {
52
+ CurrencyArtistProofFields,
53
+ CurrencyArtistProofJSON,
54
+ } from "./CurrencyArtistProof"
55
+ export { TraitPass } from "./TraitPass"
56
+ export type { TraitPassFields, TraitPassJSON } from "./TraitPass"
57
+ export { TraitPassType }
58
+
59
+ export type TraitPassTypeKind =
60
+ | TraitPassType.SemiFungible
61
+ | TraitPassType.Date
62
+ | TraitPassType.NonFungible
63
+ export type TraitPassTypeJSON =
64
+ | TraitPassType.SemiFungibleJSON
65
+ | TraitPassType.DateJSON
66
+ | TraitPassType.NonFungibleJSON
67
+
68
+ export { TraitType }
69
+
70
+ export type TraitTypeKind =
71
+ | TraitType.SemiFungible
72
+ | TraitType.Date
73
+ | TraitType.NonFungible
74
+ export type TraitTypeJSON =
75
+ | TraitType.SemiFungibleJSON
76
+ | TraitType.DateJSON
77
+ | TraitType.NonFungibleJSON
78
+
79
+ export { FeedingTraits } from "./FeedingTraits"
80
+ export type { FeedingTraitsFields, FeedingTraitsJSON } from "./FeedingTraits"
81
+ export { TraitInit }
82
+
83
+ export type TraitInitKind =
84
+ | TraitInit.SemiFungible
85
+ | TraitInit.Date
86
+ | TraitInit.NonFungible
87
+ export type TraitInitJSON =
88
+ | TraitInit.SemiFungibleJSON
89
+ | TraitInit.DateJSON
90
+ | TraitInit.NonFungibleJSON
91
+
92
+ export { DateTraitInitMap } from "./DateTraitInitMap"
93
+ export type {
94
+ DateTraitInitMapFields,
95
+ DateTraitInitMapJSON,
96
+ } from "./DateTraitInitMap"
97
+ export { DateTraitInit } from "./DateTraitInit"
98
+ export type { DateTraitInitFields, DateTraitInitJSON } from "./DateTraitInit"
99
+ export { NonFungibleTraitInitMap } from "./NonFungibleTraitInitMap"
100
+ export type {
101
+ NonFungibleTraitInitMapFields,
102
+ NonFungibleTraitInitMapJSON,
103
+ } from "./NonFungibleTraitInitMap"
104
+ export { SemiFungibleTraitInitMap } from "./SemiFungibleTraitInitMap"
105
+ export type {
106
+ SemiFungibleTraitInitMapFields,
107
+ SemiFungibleTraitInitMapJSON,
108
+ } from "./SemiFungibleTraitInitMap"
109
+ export { NonFungibleTraitInit } from "./NonFungibleTraitInit"
110
+ export type {
111
+ NonFungibleTraitInitFields,
112
+ NonFungibleTraitInitJSON,
113
+ } from "./NonFungibleTraitInit"
114
+ export { SemiFungibleTraitInit } from "./SemiFungibleTraitInit"
115
+ export type {
116
+ SemiFungibleTraitInitFields,
117
+ SemiFungibleTraitInitJSON,
118
+ } from "./SemiFungibleTraitInit"
119
+ export { TraitValue } from "./TraitValue"
120
+ export type { TraitValueFields, TraitValueJSON } from "./TraitValue"
121
+ export { TokenMetadata } from "./TokenMetadata"
122
+ export type { TokenMetadataFields, TokenMetadataJSON } from "./TokenMetadata"
123
+ export { StoreConfig } from "./StoreConfig"
124
+ export type { StoreConfigFields, StoreConfigJSON } from "./StoreConfig"
125
+ export { GlobalFee } from "./GlobalFee"
126
+ export type { GlobalFeeFields, GlobalFeeJSON } from "./GlobalFee"
127
+ export { ListingPerWalletArgs } from "./ListingPerWalletArgs"
128
+ export type {
129
+ ListingPerWalletArgsFields,
130
+ ListingPerWalletArgsJSON,
131
+ } from "./ListingPerWalletArgs"
132
+ export { EncryptedPayload } from "./EncryptedPayload"
133
+ export type {
134
+ EncryptedPayloadFields,
135
+ EncryptedPayloadJSON,
136
+ } from "./EncryptedPayload"
137
+ export { AllowedCurrencyArgs } from "./AllowedCurrencyArgs"
138
+ export type {
139
+ AllowedCurrencyArgsFields,
140
+ AllowedCurrencyArgsJSON,
141
+ } from "./AllowedCurrencyArgs"
142
+ export { FakeBurnCount } from "./FakeBurnCount"
143
+ export type { FakeBurnCountFields, FakeBurnCountJSON } from "./FakeBurnCount"
144
+ export { BurnCount } from "./BurnCount"
145
+ export type { BurnCountFields, BurnCountJSON } from "./BurnCount"
146
+ export { Seed } from "./Seed"
147
+ export type { SeedFields, SeedJSON } from "./Seed"
148
+ export { AccountHasher } from "./AccountHasher"
149
+ export type { AccountHasherFields, AccountHasherJSON } from "./AccountHasher"
150
+ export { RecoverDeposit } from "./RecoverDeposit"
151
+ export type { RecoverDepositFields, RecoverDepositJSON } from "./RecoverDeposit"
152
+ export { PreviousDonationRecord } from "./PreviousDonationRecord"
153
+ export type {
154
+ PreviousDonationRecordFields,
155
+ PreviousDonationRecordJSON,
156
+ } from "./PreviousDonationRecord"
157
+ export { CnftData } from "./CnftData"
158
+ export type { CnftDataFields, CnftDataJSON } from "./CnftData"
159
+ export { DepositType }
160
+
161
+ export type DepositTypeKind =
162
+ | DepositType.Creator
163
+ | DepositType.PdaCreator
164
+ | DepositType.Collection
165
+ export type DepositTypeJSON =
166
+ | DepositType.CreatorJSON
167
+ | DepositType.PdaCreatorJSON
168
+ | DepositType.CollectionJSON
169
+
170
+ export { CompactCnftData } from "./CompactCnftData"
171
+ export type {
172
+ CompactCnftDataFields,
173
+ CompactCnftDataJSON,
174
+ } from "./CompactCnftData"
175
+ export { Deposit } from "./Deposit"
176
+ export type { DepositFields, DepositJSON } from "./Deposit"
177
+ export { DepositTrackType }
178
+
179
+ export type DepositTrackTypeKind =
180
+ | DepositTrackType.Creator
181
+ | DepositTrackType.PdaCreator
182
+ | DepositTrackType.Collection
183
+ export type DepositTrackTypeJSON =
184
+ | DepositTrackType.CreatorJSON
185
+ | DepositTrackType.PdaCreatorJSON
186
+ | DepositTrackType.CollectionJSON
187
+
188
+ export { DepositTrack } from "./DepositTrack"
189
+ export type { DepositTrackFields, DepositTrackJSON } from "./DepositTrack"
190
+ export { FakeDeposit } from "./FakeDeposit"
191
+ export type { FakeDepositFields, FakeDepositJSON } from "./FakeDeposit"
192
+ export { BurnState }
193
+
194
+ export type BurnStateKind = BurnState.NonPending | BurnState.Pending
195
+ export type BurnStateJSON = BurnState.NonPendingJSON | BurnState.PendingJSON
196
+
197
+ export { DepositState }
198
+
199
+ export type DepositStateKind = DepositState.Available | DepositState.Burning
200
+ export type DepositStateJSON =
201
+ | DepositState.AvailableJSON
202
+ | DepositState.BurningJSON
203
+
204
+ export { DepositSubtype }
205
+
206
+ export type DepositSubtypeKind = DepositSubtype.None | DepositSubtype.Three
207
+ export type DepositSubtypeJSON =
208
+ | DepositSubtype.NoneJSON
209
+ | DepositSubtype.ThreeJSON
210
+
211
+ export { DepositFormat }
212
+
213
+ export type DepositFormatKind = DepositFormat.Cnft | DepositFormat.Nft
214
+ export type DepositFormatJSON = DepositFormat.CnftJSON | DepositFormat.NftJSON
215
+
216
+ export { SelectedZeroCard } from "./SelectedZeroCard"
217
+ export type {
218
+ SelectedZeroCardFields,
219
+ SelectedZeroCardJSON,
220
+ } from "./SelectedZeroCard"
221
+ export { SelectedCard } from "./SelectedCard"
222
+ export type { SelectedCardFields, SelectedCardJSON } from "./SelectedCard"
223
+ export { BurnTrack } from "./BurnTrack"
224
+ export type { BurnTrackFields, BurnTrackJSON } from "./BurnTrack"
225
+ export { MemeVaultProof } from "./MemeVaultProof"
226
+ export type { MemeVaultProofFields, MemeVaultProofJSON } from "./MemeVaultProof"
227
+ export { Item } from "./Item"
228
+ export type { ItemFields, ItemJSON } from "./Item"
229
+ export { ItemTrack } from "./ItemTrack"
230
+ export type { ItemTrackFields, ItemTrackJSON } from "./ItemTrack"
231
+ export { CardTrack } from "./CardTrack"
232
+ export type { CardTrackFields, CardTrackJSON } from "./CardTrack"
233
+ export { IndexDate } from "./IndexDate"
234
+ export type { IndexDateFields, IndexDateJSON } from "./IndexDate"
235
+ export { IndexDates } from "./IndexDates"
236
+ export type { IndexDatesFields, IndexDatesJSON } from "./IndexDates"
237
+ export { SaleTrack } from "./SaleTrack"
238
+ export type { SaleTrackFields, SaleTrackJSON } from "./SaleTrack"
239
+ export { CollectTrack } from "./CollectTrack"
240
+ export type { CollectTrackFields, CollectTrackJSON } from "./CollectTrack"
241
+ export { Filter } from "./Filter"
242
+ export type { FilterFields, FilterJSON } from "./Filter"
243
+ export { Category } from "./Category"
244
+ export type { CategoryFields, CategoryJSON } from "./Category"
245
+ export { SuperCategory } from "./SuperCategory"
246
+ export type { SuperCategoryFields, SuperCategoryJSON } from "./SuperCategory"
247
+ export { Earnings } from "./Earnings"
248
+ export type { EarningsFields, EarningsJSON } from "./Earnings"
249
+ export { Popularity } from "./Popularity"
250
+ export type { PopularityFields, PopularityJSON } from "./Popularity"
251
+ export { FakeTraitValue } from "./FakeTraitValue"
252
+ export type { FakeTraitValueFields, FakeTraitValueJSON } from "./FakeTraitValue"
253
+ export { FakeTraitPair } from "./FakeTraitPair"
254
+ export type { FakeTraitPairFields, FakeTraitPairJSON } from "./FakeTraitPair"
255
+ export { FakeVolumeTrack } from "./FakeVolumeTrack"
256
+ export type {
257
+ FakeVolumeTrackFields,
258
+ FakeVolumeTrackJSON,
259
+ } from "./FakeVolumeTrack"
260
+ export { PackConfig } from "./PackConfig"
261
+ export type { PackConfigFields, PackConfigJSON } from "./PackConfig"
262
+ export { VolumeTrack } from "./VolumeTrack"
263
+ export type { VolumeTrackFields, VolumeTrackJSON } from "./VolumeTrack"
264
+ export { SaleConfig } from "./SaleConfig"
265
+ export type { SaleConfigFields, SaleConfigJSON } from "./SaleConfig"
266
+ export { ZeroConfig } from "./ZeroConfig"
267
+ export type { ZeroConfigFields, ZeroConfigJSON } from "./ZeroConfig"
268
+ export { Price } from "./Price"
269
+ export type { PriceFields, PriceJSON } from "./Price"
270
+ export { CoolTimePerAmountArgs } from "./CoolTimePerAmountArgs"
271
+ export type {
272
+ CoolTimePerAmountArgsFields,
273
+ CoolTimePerAmountArgsJSON,
274
+ } from "./CoolTimePerAmountArgs"
275
+ export { TotalPerTimeArgs } from "./TotalPerTimeArgs"
276
+ export type {
277
+ TotalPerTimeArgsFields,
278
+ TotalPerTimeArgsJSON,
279
+ } from "./TotalPerTimeArgs"
280
+ export { OnlyBetweenTimesArgs } from "./OnlyBetweenTimesArgs"
281
+ export type {
282
+ OnlyBetweenTimesArgsFields,
283
+ OnlyBetweenTimesArgsJSON,
284
+ } from "./OnlyBetweenTimesArgs"
285
+ export { OnlyTheseDOWArgs } from "./OnlyTheseDOWArgs"
286
+ export type {
287
+ OnlyTheseDOWArgsFields,
288
+ OnlyTheseDOWArgsJSON,
289
+ } from "./OnlyTheseDOWArgs"
290
+ export { CreatorGateArgs } from "./CreatorGateArgs"
291
+ export type {
292
+ CreatorGateArgsFields,
293
+ CreatorGateArgsJSON,
294
+ } from "./CreatorGateArgs"
295
+ export { TotalPerTimeWalletArgs } from "./TotalPerTimeWalletArgs"
296
+ export type {
297
+ TotalPerTimeWalletArgsFields,
298
+ TotalPerTimeWalletArgsJSON,
299
+ } from "./TotalPerTimeWalletArgs"
300
+ export { TimedPerWalletArgs } from "./TimedPerWalletArgs"
301
+ export type {
302
+ TimedPerWalletArgsFields,
303
+ TimedPerWalletArgsJSON,
304
+ } from "./TimedPerWalletArgs"
305
+ export { WrappedSource } from "./WrappedSource"
306
+ export type { WrappedSourceFields, WrappedSourceJSON } from "./WrappedSource"
307
+ export { GenericValue }
308
+
309
+ export type GenericValueKind =
310
+ | GenericValue.None
311
+ | GenericValue.Key
312
+ | GenericValue.EightBytes
313
+ export type GenericValueJSON =
314
+ | GenericValue.NoneJSON
315
+ | GenericValue.KeyJSON
316
+ | GenericValue.EightBytesJSON
317
+
318
+ export { GenericStore } from "./GenericStore"
319
+ export type { GenericStoreFields, GenericStoreJSON } from "./GenericStore"
320
+ export { Uses } from "./Uses"
321
+ export type { UsesFields, UsesJSON } from "./Uses"
322
+ export { Collection } from "./Collection"
323
+ export type { CollectionFields, CollectionJSON } from "./Collection"
324
+ export { Creator } from "./Creator"
325
+ export type { CreatorFields, CreatorJSON } from "./Creator"
326
+ export { ShortCreator } from "./ShortCreator"
327
+ export type { ShortCreatorFields, ShortCreatorJSON } from "./ShortCreator"
328
+ export { VerifyCollectionMetadata } from "./VerifyCollectionMetadata"
329
+ export type {
330
+ VerifyCollectionMetadataFields,
331
+ VerifyCollectionMetadataJSON,
332
+ } from "./VerifyCollectionMetadata"
333
+ export { TightCardMetadata } from "./TightCardMetadata"
334
+ export type {
335
+ TightCardMetadataFields,
336
+ TightCardMetadataJSON,
337
+ } from "./TightCardMetadata"
338
+ export { ShortMetadata } from "./ShortMetadata"
339
+ export type { ShortMetadataFields, ShortMetadataJSON } from "./ShortMetadata"
340
+ export { UnwrapMetadata } from "./UnwrapMetadata"
341
+ export type { UnwrapMetadataFields, UnwrapMetadataJSON } from "./UnwrapMetadata"
342
+ export { MetadataArgs } from "./MetadataArgs"
343
+ export type { MetadataArgsFields, MetadataArgsJSON } from "./MetadataArgs"
344
+ export { ShortMetadataArgs } from "./ShortMetadataArgs"
345
+ export type {
346
+ ShortMetadataArgsFields,
347
+ ShortMetadataArgsJSON,
348
+ } from "./ShortMetadataArgs"
349
+ export { BuyHistoryClass }
350
+
351
+ export type BuyHistoryClassKind =
352
+ | BuyHistoryClass.SingleBuyV1
353
+ | BuyHistoryClass.PackBuyV1
354
+ export type BuyHistoryClassJSON =
355
+ | BuyHistoryClass.SingleBuyV1JSON
356
+ | BuyHistoryClass.PackBuyV1JSON
357
+
358
+ export { FeeType }
359
+
360
+ export type FeeTypeKind =
361
+ | FeeType.AllMints
362
+ | FeeType.PricedMintsOnly
363
+ | FeeType.SkipBurnMints
364
+ export type FeeTypeJSON =
365
+ | FeeType.AllMintsJSON
366
+ | FeeType.PricedMintsOnlyJSON
367
+ | FeeType.SkipBurnMintsJSON
368
+
369
+ export { PackRule }
370
+
371
+ export type PackRuleKind = PackRule.CoolDownToOpen
372
+ export type PackRuleJSON = PackRule.CoolDownToOpenJSON
373
+
374
+ export { StoreRule }
375
+
376
+ export type StoreRuleKind =
377
+ | StoreRule.ListingPerWallet
378
+ | StoreRule.AllowedCurrency
379
+ export type StoreRuleJSON =
380
+ | StoreRule.ListingPerWalletJSON
381
+ | StoreRule.AllowedCurrencyJSON
382
+
383
+ export { BurnTypeBurn }
384
+
385
+ export type BurnTypeBurnKind = BurnTypeBurn.CollectionBurn
386
+ export type BurnTypeBurnJSON = BurnTypeBurn.CollectionBurnJSON
387
+
388
+ export { EditionStoreType }
389
+
390
+ export type EditionStoreTypeKind =
391
+ | EditionStoreType.None
392
+ | EditionStoreType.Name
393
+ | EditionStoreType.Url
394
+ export type EditionStoreTypeJSON =
395
+ | EditionStoreType.NoneJSON
396
+ | EditionStoreType.NameJSON
397
+ | EditionStoreType.UrlJSON
398
+
399
+ export { FilterType }
400
+
401
+ export type FilterTypeKind = FilterType.None
402
+ export type FilterTypeJSON = FilterType.NoneJSON
403
+
404
+ export { PopularityState }
405
+
406
+ export type PopularityStateKind =
407
+ | PopularityState.New
408
+ | PopularityState.None
409
+ | PopularityState.First
410
+ | PopularityState.Ten
411
+ | PopularityState.TwentyFive
412
+ | PopularityState.Hundred
413
+ | PopularityState.Thousand
414
+ | PopularityState.TenThousand
415
+ | PopularityState.HundredThousand
416
+ | PopularityState.Million
417
+ | PopularityState.TenMillion
418
+ | PopularityState.HundredMillion
419
+ | PopularityState.Billion
420
+ | PopularityState.TenBillion
421
+ | PopularityState.HundrerBillion
422
+ | PopularityState.Trillion
423
+ | PopularityState.TenTrillion
424
+ | PopularityState.HundredTrillion
425
+ | PopularityState.Highest
426
+ | PopularityState.Banned
427
+ export type PopularityStateJSON =
428
+ | PopularityState.NewJSON
429
+ | PopularityState.NoneJSON
430
+ | PopularityState.FirstJSON
431
+ | PopularityState.TenJSON
432
+ | PopularityState.TwentyFiveJSON
433
+ | PopularityState.HundredJSON
434
+ | PopularityState.ThousandJSON
435
+ | PopularityState.TenThousandJSON
436
+ | PopularityState.HundredThousandJSON
437
+ | PopularityState.MillionJSON
438
+ | PopularityState.TenMillionJSON
439
+ | PopularityState.HundredMillionJSON
440
+ | PopularityState.BillionJSON
441
+ | PopularityState.TenBillionJSON
442
+ | PopularityState.HundrerBillionJSON
443
+ | PopularityState.TrillionJSON
444
+ | PopularityState.TenTrillionJSON
445
+ | PopularityState.HundredTrillionJSON
446
+ | PopularityState.HighestJSON
447
+ | PopularityState.BannedJSON
448
+
449
+ export { TrackRegistry }
450
+
451
+ export type TrackRegistryKind = TrackRegistry.NoTrack | TrackRegistry.Tracked
452
+ export type TrackRegistryJSON =
453
+ | TrackRegistry.NoTrackJSON
454
+ | TrackRegistry.TrackedJSON
455
+
456
+ export { PackType }
457
+
458
+ export type PackTypeKind =
459
+ | PackType.RandomDirect
460
+ | PackType.RandomPack
461
+ | PackType.Bundle
462
+ export type PackTypeJSON =
463
+ | PackType.RandomDirectJSON
464
+ | PackType.RandomPackJSON
465
+ | PackType.BundleJSON
466
+
467
+ export { SaleType }
468
+
469
+ export type SaleTypeKind =
470
+ | SaleType.Normal
471
+ | SaleType.NoMarketFee
472
+ | SaleType.Partnership
473
+ | SaleType.LocksInVault
474
+ export type SaleTypeJSON =
475
+ | SaleType.NormalJSON
476
+ | SaleType.NoMarketFeeJSON
477
+ | SaleType.PartnershipJSON
478
+ | SaleType.LocksInVaultJSON
479
+
480
+ export { CurrencyType }
481
+
482
+ export type CurrencyTypeKind =
483
+ | CurrencyType.Native
484
+ | CurrencyType.Spl
485
+ | CurrencyType.Collection
486
+ | CurrencyType.Creator
487
+ | CurrencyType.None
488
+ export type CurrencyTypeJSON =
489
+ | CurrencyType.NativeJSON
490
+ | CurrencyType.SplJSON
491
+ | CurrencyType.CollectionJSON
492
+ | CurrencyType.CreatorJSON
493
+ | CurrencyType.NoneJSON
494
+
495
+ export { CardState }
496
+
497
+ export type CardStateKind =
498
+ | CardState.Active
499
+ | CardState.Hidden
500
+ | CardState.Inactive
501
+ | CardState.Retired
502
+ | CardState.SoldOut
503
+ | CardState.None
504
+ | CardState.NotReady
505
+ export type CardStateJSON =
506
+ | CardState.ActiveJSON
507
+ | CardState.HiddenJSON
508
+ | CardState.InactiveJSON
509
+ | CardState.RetiredJSON
510
+ | CardState.SoldOutJSON
511
+ | CardState.NoneJSON
512
+ | CardState.NotReadyJSON
513
+
514
+ export { ItemState }
515
+
516
+ export type ItemStateKind =
517
+ | ItemState.Active
518
+ | ItemState.Hidden
519
+ | ItemState.Inactive
520
+ | ItemState.Retired
521
+ | ItemState.SoldOut
522
+ | ItemState.None
523
+ | ItemState.NotReady
524
+ | ItemState.NotReadyStarted
525
+ | ItemState.Flagged
526
+ export type ItemStateJSON =
527
+ | ItemState.ActiveJSON
528
+ | ItemState.HiddenJSON
529
+ | ItemState.InactiveJSON
530
+ | ItemState.RetiredJSON
531
+ | ItemState.SoldOutJSON
532
+ | ItemState.NoneJSON
533
+ | ItemState.NotReadyJSON
534
+ | ItemState.NotReadyStartedJSON
535
+ | ItemState.FlaggedJSON
536
+
537
+ export { PackState }
538
+
539
+ export type PackStateKind =
540
+ | PackState.Closed
541
+ | PackState.Opened
542
+ | PackState.Unassigned
543
+ export type PackStateJSON =
544
+ | PackState.ClosedJSON
545
+ | PackState.OpenedJSON
546
+ | PackState.UnassignedJSON
547
+
548
+ export { PackOpenHolderState }
549
+
550
+ export type PackOpenHolderStateKind =
551
+ | PackOpenHolderState.Unclaimed
552
+ | PackOpenHolderState.Claiming
553
+ | PackOpenHolderState.Claimed
554
+ export type PackOpenHolderStateJSON =
555
+ | PackOpenHolderState.UnclaimedJSON
556
+ | PackOpenHolderState.ClaimingJSON
557
+ | PackOpenHolderState.ClaimedJSON
558
+
559
+ export { PriceRule }
560
+
561
+ export type PriceRuleKind =
562
+ | PriceRule.None
563
+ | PriceRule.And
564
+ | PriceRule.Or
565
+ | PriceRule.BondingLinear
566
+ export type PriceRuleJSON =
567
+ | PriceRule.NoneJSON
568
+ | PriceRule.AndJSON
569
+ | PriceRule.OrJSON
570
+ | PriceRule.BondingLinearJSON
571
+
572
+ export { TimeRangeType }
573
+
574
+ export type TimeRangeTypeKind =
575
+ | TimeRangeType.BetweenHours
576
+ | TimeRangeType.BetweenDays
577
+ | TimeRangeType.BetweenHoursNegate
578
+ export type TimeRangeTypeJSON =
579
+ | TimeRangeType.BetweenHoursJSON
580
+ | TimeRangeType.BetweenDaysJSON
581
+ | TimeRangeType.BetweenHoursNegateJSON
582
+
583
+ export { UnlocksAfter }
584
+
585
+ export type UnlocksAfterKind =
586
+ | UnlocksAfter.MintingOut
587
+ | UnlocksAfter.Supply
588
+ | UnlocksAfter.Hours
589
+ export type UnlocksAfterJSON =
590
+ | UnlocksAfter.MintingOutJSON
591
+ | UnlocksAfter.SupplyJSON
592
+ | UnlocksAfter.HoursJSON
593
+
594
+ export { ActionAfter }
595
+
596
+ export type ActionAfterKind =
597
+ | ActionAfter.MintingOut
598
+ | ActionAfter.Supply
599
+ | ActionAfter.Hours
600
+ | ActionAfter.SellingOut
601
+ export type ActionAfterJSON =
602
+ | ActionAfter.MintingOutJSON
603
+ | ActionAfter.SupplyJSON
604
+ | ActionAfter.HoursJSON
605
+ | ActionAfter.SellingOutJSON
606
+
607
+ export { Rule }
608
+
609
+ export type RuleKind =
610
+ | Rule.UnlocksAfter
611
+ | Rule.UnwrapsAfter
612
+ | Rule.WrappedSource
613
+ export type RuleJSON =
614
+ | Rule.UnlocksAfterJSON
615
+ | Rule.UnwrapsAfterJSON
616
+ | Rule.WrappedSourceJSON
617
+
618
+ export { AuthorityGateTypes }
619
+
620
+ export type AuthorityGateTypesKind =
621
+ | AuthorityGateTypes.IPGate
622
+ | AuthorityGateTypes.BiometricsGate
623
+ export type AuthorityGateTypesJSON =
624
+ | AuthorityGateTypes.IPGateJSON
625
+ | AuthorityGateTypes.BiometricsGateJSON
626
+
627
+ export { GeneralStore }
628
+
629
+ export type GeneralStoreKind = GeneralStore.None
630
+ export type GeneralStoreJSON = GeneralStore.NoneJSON
631
+
632
+ export { PoolType }
633
+
634
+ export type PoolTypeKind = PoolType.None | PoolType.Token
635
+ export type PoolTypeJSON = PoolType.NoneJSON | PoolType.TokenJSON
636
+
637
+ export { PoolState }
638
+
639
+ export type PoolStateKind = PoolState.Available | PoolState.Closed
640
+ export type PoolStateJSON = PoolState.AvailableJSON | PoolState.ClosedJSON
641
+
642
+ export { PoolAccess }
643
+
644
+ export type PoolAccessKind = PoolAccess.Cpi | PoolAccess.Public
645
+ export type PoolAccessJSON = PoolAccess.CpiJSON | PoolAccess.PublicJSON
646
+
647
+ export { ExtraParameter }
648
+
649
+ export type ExtraParameterKind = ExtraParameter.None | ExtraParameter.Revealer
650
+ export type ExtraParameterJSON =
651
+ | ExtraParameter.NoneJSON
652
+ | ExtraParameter.RevealerJSON
653
+
654
+ export { AccountClass }
655
+
656
+ export type AccountClassKind =
657
+ | AccountClass.HolderV1
658
+ | AccountClass.StoreV1
659
+ | AccountClass.SingleV1
660
+ | AccountClass.PackV1
661
+ | AccountClass.CardV1
662
+ | AccountClass.PackReceiptV1
663
+ | AccountClass.PackContentV1
664
+ | AccountClass.PackOpenHolderV1
665
+ | AccountClass.BuyTrackV1
666
+ | AccountClass.SingleArchiveV1
667
+ | AccountClass.PackArchiveV1
668
+ | AccountClass.None
669
+ | AccountClass.CreatorRegistryV1
670
+ | AccountClass.CollectorGlobalRegistryV1
671
+ | AccountClass.CollectorArtistRegistryV1
672
+ | AccountClass.PackTraitsV1
673
+ | AccountClass.PackUploadsV1
674
+ | AccountClass.ZeroOpenHolderV1
675
+ | AccountClass.BurnDepositV1
676
+ | AccountClass.GlobalBurnTrackV1
677
+ | AccountClass.ArtistBurnTrackV1
678
+ | AccountClass.SecureHolderV1
679
+ | AccountClass.RevealerForMeV1
680
+ | AccountClass.ThreeIdV1
681
+ | AccountClass.DonationRegistryV1
682
+ | AccountClass.PoolVaultV1
683
+ | AccountClass.GenericUserV1
684
+ | AccountClass.TokenManagerV1
685
+ export type AccountClassJSON =
686
+ | AccountClass.HolderV1JSON
687
+ | AccountClass.StoreV1JSON
688
+ | AccountClass.SingleV1JSON
689
+ | AccountClass.PackV1JSON
690
+ | AccountClass.CardV1JSON
691
+ | AccountClass.PackReceiptV1JSON
692
+ | AccountClass.PackContentV1JSON
693
+ | AccountClass.PackOpenHolderV1JSON
694
+ | AccountClass.BuyTrackV1JSON
695
+ | AccountClass.SingleArchiveV1JSON
696
+ | AccountClass.PackArchiveV1JSON
697
+ | AccountClass.NoneJSON
698
+ | AccountClass.CreatorRegistryV1JSON
699
+ | AccountClass.CollectorGlobalRegistryV1JSON
700
+ | AccountClass.CollectorArtistRegistryV1JSON
701
+ | AccountClass.PackTraitsV1JSON
702
+ | AccountClass.PackUploadsV1JSON
703
+ | AccountClass.ZeroOpenHolderV1JSON
704
+ | AccountClass.BurnDepositV1JSON
705
+ | AccountClass.GlobalBurnTrackV1JSON
706
+ | AccountClass.ArtistBurnTrackV1JSON
707
+ | AccountClass.SecureHolderV1JSON
708
+ | AccountClass.RevealerForMeV1JSON
709
+ | AccountClass.ThreeIdV1JSON
710
+ | AccountClass.DonationRegistryV1JSON
711
+ | AccountClass.PoolVaultV1JSON
712
+ | AccountClass.GenericUserV1JSON
713
+ | AccountClass.TokenManagerV1JSON
714
+
715
+ export { GlobalState }
716
+
717
+ export type GlobalStateKind =
718
+ | GlobalState.HiddenBySystem
719
+ | GlobalState.Public
720
+ | GlobalState.HiddenByUser
721
+ | GlobalState.FlaggedPirate
722
+ export type GlobalStateJSON =
723
+ | GlobalState.HiddenBySystemJSON
724
+ | GlobalState.PublicJSON
725
+ | GlobalState.HiddenByUserJSON
726
+ | GlobalState.FlaggedPirateJSON
727
+
728
+ export { TokenType }
729
+
730
+ export type TokenTypeKind = TokenType.Basic | TokenType.OnlyUp
731
+ export type TokenTypeJSON = TokenType.BasicJSON | TokenType.OnlyUpJSON
732
+
733
+ export { TokenState }
734
+
735
+ export type TokenStateKind = TokenState.New | TokenState.Active
736
+ export type TokenStateJSON = TokenState.NewJSON | TokenState.ActiveJSON
737
+
738
+ export { BurnType }
739
+
740
+ export type BurnTypeKind = BurnType.None | BurnType.InTX | BurnType.Progressed
741
+ export type BurnTypeJSON =
742
+ | BurnType.NoneJSON
743
+ | BurnType.InTXJSON
744
+ | BurnType.ProgressedJSON
745
+
746
+ export { PaymentClass }
747
+
748
+ export type PaymentClassKind =
749
+ | PaymentClass.PaymentV1
750
+ | PaymentClass.BurnPaymentV1
751
+ | PaymentClass.GatePaymentV1
752
+ export type PaymentClassJSON =
753
+ | PaymentClass.PaymentV1JSON
754
+ | PaymentClass.BurnPaymentV1JSON
755
+ | PaymentClass.GatePaymentV1JSON
756
+
757
+ export { ItemClass }
758
+
759
+ export type ItemClassKind = ItemClass.Single | ItemClass.Pack
760
+ export type ItemClassJSON = ItemClass.SingleJSON | ItemClass.PackJSON
761
+
762
+ export { CardClass }
763
+
764
+ export type CardClassKind = CardClass.Normal
765
+ export type CardClassJSON = CardClass.NormalJSON
766
+
767
+ export { TokenProgramVersion }
768
+
769
+ export type TokenProgramVersionKind =
770
+ | TokenProgramVersion.Original
771
+ | TokenProgramVersion.Token2022
772
+ export type TokenProgramVersionJSON =
773
+ | TokenProgramVersion.OriginalJSON
774
+ | TokenProgramVersion.Token2022JSON
775
+
776
+ export { TokenStandard }
777
+
778
+ export type TokenStandardKind =
779
+ | TokenStandard.NonFungible
780
+ | TokenStandard.FungibleAsset
781
+ | TokenStandard.Fungible
782
+ | TokenStandard.NonFungibleEdition
783
+ export type TokenStandardJSON =
784
+ | TokenStandard.NonFungibleJSON
785
+ | TokenStandard.FungibleAssetJSON
786
+ | TokenStandard.FungibleJSON
787
+ | TokenStandard.NonFungibleEditionJSON
788
+
789
+ export { UseMethod }
790
+
791
+ export type UseMethodKind =
792
+ | UseMethod.Burn
793
+ | UseMethod.Multiple
794
+ | UseMethod.Single
795
+ export type UseMethodJSON =
796
+ | UseMethod.BurnJSON
797
+ | UseMethod.MultipleJSON
798
+ | UseMethod.SingleJSON