-
Notifications
You must be signed in to change notification settings - Fork 105
/
embed.go
375 lines (257 loc) · 11 KB
/
embed.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package nba
import _ "embed"
var (
// shardedCollection
//go:embed transactions/shardedCollection/setup_sharded_collection.cdc
ShardedcollectionSetupShardedCollection []byte
//go:embed transactions/shardedCollection/transfer_from_sharded.cdc
ShardedcollectionTransferFromSharded []byte
//go:embed transactions/shardedCollection/batch_from_sharded.cdc
ShardedcollectionBatchFromSharded []byte
// admin
//go:embed transactions/admin/add_plays_to_set.cdc
AdminAddPlaysToSet []byte
//go:embed transactions/admin/fulfill_pack.cdc
AdminFulfillPack []byte
//go:embed transactions/admin/retireAll_plays_from_set.cdc
AdminRetireallPlaysFromSet []byte
//go:embed transactions/admin/mark_moment_unlockable.cdc
AdminMarkMomentUnlockable []byte
//go:embed transactions/admin/create_subedition.cdc
AdminCreateSubedition []byte
//go:embed transactions/admin/transfer_admin.cdc
AdminTransferAdmin []byte
//go:embed transactions/admin/mint_moment.cdc
AdminMintMoment []byte
//go:embed transactions/admin/grant_topshot_locking_admin.cdc
AdminGrantTopshotLockingAdmin []byte
//go:embed transactions/admin/batch_mint_moment.cdc
AdminBatchMintMoment []byte
//go:embed transactions/admin/set_nft_subedition.cdc
AdminSetNftSubedition []byte
//go:embed transactions/admin/create_set_and_play_struct.cdc
AdminCreateSetAndPlayStruct []byte
//go:embed transactions/admin/create_new_subedition_admin_resource.cdc
AdminCreateNewSubeditionAdminResource []byte
//go:embed transactions/admin/add_play_to_set.cdc
AdminAddPlayToSet []byte
//go:embed transactions/admin/set_nfts_lock_expiry.cdc
AdminSetNftsLockExpiry []byte
//go:embed transactions/admin/start_new_series.cdc
AdminStartNewSeries []byte
//go:embed transactions/admin/update_tagline.cdc
AdminUpdateTagline []byte
//go:embed transactions/admin/lock_set.cdc
AdminLockSet []byte
//go:embed transactions/admin/batch_mint_moment_with_subedition.cdc
AdminBatchMintMomentWithSubedition []byte
//go:embed transactions/admin/retire_play_from_set.cdc
AdminRetirePlayFromSet []byte
//go:embed transactions/admin/mint_moment_with_subedition.cdc
AdminMintMomentWithSubedition []byte
//go:embed transactions/admin/create_play.cdc
AdminCreatePlay []byte
//go:embed transactions/admin/retire_all.cdc
AdminRetireAll []byte
//go:embed transactions/admin/create_set.cdc
AdminCreateSet []byte
//go:embed transactions/admin/unlock_all_moments.cdc
AdminUnlockAllMoments []byte
// marketV3
//go:embed transactions/marketV3/purchase_both_markets.cdc
Marketv3PurchaseBothMarkets []byte
//go:embed transactions/marketV3/purchase_moment.cdc
Marketv3PurchaseMoment []byte
//go:embed transactions/marketV3/change_receiver.cdc
Marketv3ChangeReceiver []byte
//go:embed transactions/marketV3/create_sale.cdc
Marketv3CreateSale []byte
//go:embed transactions/marketV3/change_price.cdc
Marketv3ChangePrice []byte
//go:embed transactions/marketV3/stop_sale.cdc
Marketv3StopSale []byte
//go:embed transactions/marketV3/mint_and_purchase.cdc
Marketv3MintAndPurchase []byte
//go:embed transactions/marketV3/upgrade_sale.cdc
Marketv3UpgradeSale []byte
//go:embed transactions/marketV3/purchase_group_of_moments.cdc
Marketv3PurchaseGroupOfMoments []byte
// marketV3/scripts
//go:embed transactions/marketV3/scripts/get_sale_percentage.cdc
Marketv3ScriptsGetSalePercentage []byte
//go:embed transactions/marketV3/scripts/get_sale_set_id.cdc
Marketv3ScriptsGetSaleSetId []byte
//go:embed transactions/marketV3/scripts/get_sale_price.cdc
Marketv3ScriptsGetSalePrice []byte
//go:embed transactions/marketV3/scripts/get_sale_len.cdc
Marketv3ScriptsGetSaleLen []byte
// marketV3
//go:embed transactions/marketV3/start_sale.cdc
Marketv3StartSale []byte
//go:embed transactions/marketV3/create_start_sale.cdc
Marketv3CreateStartSale []byte
// user
//go:embed transactions/user/transfer_moment.cdc
UserTransferMoment []byte
//go:embed transactions/user/setup_collection.cdc
UserSetupCollection []byte
//go:embed transactions/user/transfer_moment_v3_sale.cdc
UserTransferMomentV3Sale []byte
//go:embed transactions/user/batch_transfer.cdc
UserBatchTransfer []byte
//go:embed transactions/user/lock_fake_nft.cdc
UserLockFakeNft []byte
//go:embed transactions/user/setup_up_all_collections.cdc
UserSetupUpAllCollections []byte
//go:embed transactions/user/unlock_moment.cdc
UserUnlockMoment []byte
//go:embed transactions/user/setup_switchboard_account.cdc
UserSetupSwitchboardAccount []byte
//go:embed transactions/user/lock_moment.cdc
UserLockMoment []byte
//go:embed transactions/user/destroy_moments.cdc
UserDestroyMoments []byte
//go:embed transactions/user/destroy_moments_v2.cdc
UserDestroyMomentsV2 []byte
//go:embed transactions/user/batch_unlock_moments.cdc
UserBatchUnlockMoments []byte
//go:embed transactions/user/batch_lock_moments.cdc
UserBatchLockMoments []byte
// scripts
//go:embed transactions/scripts/get_nft_metadata.cdc
ScriptsGetNftMetadata []byte
//go:embed transactions/scripts/get_currentSeries.cdc
ScriptsGetCurrentseries []byte
// scripts/plays
//go:embed transactions/scripts/plays/get_play_metadata.cdc
ScriptsPlaysGetPlayMetadata []byte
//go:embed transactions/scripts/plays/get_play_metadata_field.cdc
ScriptsPlaysGetPlayMetadataField []byte
//go:embed transactions/scripts/plays/get_all_plays.cdc
ScriptsPlaysGetAllPlays []byte
//go:embed transactions/scripts/plays/get_nextPlayID.cdc
ScriptsPlaysGetNextplayid []byte
// scripts/sets
//go:embed transactions/scripts/sets/get_setName.cdc
ScriptsSetsGetSetname []byte
//go:embed transactions/scripts/sets/get_set_locked.cdc
ScriptsSetsGetSetLocked []byte
//go:embed transactions/scripts/sets/get_edition_retired.cdc
ScriptsSetsGetEditionRetired []byte
//go:embed transactions/scripts/sets/get_set_data.cdc
ScriptsSetsGetSetData []byte
//go:embed transactions/scripts/sets/get_setIDs_by_name.cdc
ScriptsSetsGetSetidsByName []byte
//go:embed transactions/scripts/sets/get_numMoments_in_edition.cdc
ScriptsSetsGetNummomentsInEdition []byte
//go:embed transactions/scripts/sets/get_plays_in_set.cdc
ScriptsSetsGetPlaysInSet []byte
//go:embed transactions/scripts/sets/get_setSeries.cdc
ScriptsSetsGetSetseries []byte
//go:embed transactions/scripts/sets/get_nextSetID.cdc
ScriptsSetsGetNextsetid []byte
// scripts/users
//go:embed transactions/scripts/users/is_account_all_set_up.cdc
ScriptsUsersIsAccountAllSetUp []byte
// scripts/subeditions
//go:embed transactions/scripts/subeditions/get_subedition_by_id.cdc
ScriptsSubeditionsGetSubeditionById []byte
//go:embed transactions/scripts/subeditions/get_all_subeditions.cdc
ScriptsSubeditionsGetAllSubeditions []byte
//go:embed transactions/scripts/subeditions/get_nft_subedition.cdc
ScriptsSubeditionsGetNftSubedition []byte
//go:embed transactions/scripts/subeditions/get_nextSubeditionID.cdc
ScriptsSubeditionsGetNextsubeditionid []byte
// scripts/collections
//go:embed transactions/scripts/collections/get_moment_isLocked.cdc
ScriptsCollectionsGetMomentIslocked []byte
//go:embed transactions/scripts/collections/get_moment_setName.cdc
ScriptsCollectionsGetMomentSetname []byte
//go:embed transactions/scripts/collections/get_moment_playID.cdc
ScriptsCollectionsGetMomentPlayid []byte
//go:embed transactions/scripts/collections/get_metadata_field.cdc
ScriptsCollectionsGetMetadataField []byte
//go:embed transactions/scripts/collections/get_locked_nfts_length.cdc
ScriptsCollectionsGetLockedNftsLength []byte
//go:embed transactions/scripts/collections/get_id_in_Collection.cdc
ScriptsCollectionsGetIdInCollection []byte
//go:embed transactions/scripts/collections/get_collection_ids.cdc
ScriptsCollectionsGetCollectionIds []byte
//go:embed transactions/scripts/collections/get_moment_lockExpiry.cdc
ScriptsCollectionsGetMomentLockexpiry []byte
//go:embed transactions/scripts/collections/get_moment_series.cdc
ScriptsCollectionsGetMomentSeries []byte
//go:embed transactions/scripts/collections/get_setplays_are_owned.cdc
ScriptsCollectionsGetSetplaysAreOwned []byte
//go:embed transactions/scripts/collections/borrow_nft_safe.cdc
ScriptsCollectionsBorrowNftSafe []byte
//go:embed transactions/scripts/collections/get_moment_setID.cdc
ScriptsCollectionsGetMomentSetid []byte
//go:embed transactions/scripts/collections/get_metadata.cdc
ScriptsCollectionsGetMetadata []byte
//go:embed transactions/scripts/collections/get_moment_serialNum.cdc
ScriptsCollectionsGetMomentSerialnum []byte
// scripts
//go:embed transactions/scripts/get_totalSupply.cdc
ScriptsGetTotalsupply []byte
//go:embed transactions/scripts/get_topshot_metadata.cdc
ScriptsGetTopshotMetadata []byte
// fastbreak/oracle
//go:embed transactions/fastbreak/oracle/update_fast_break_game.cdc
FastbreakOracleUpdateFastBreakGame []byte
//go:embed transactions/fastbreak/oracle/create_game.cdc
FastbreakOracleCreateGame []byte
//go:embed transactions/fastbreak/oracle/add_stat_to_game.cdc
FastbreakOracleAddStatToGame []byte
//go:embed transactions/fastbreak/oracle/score_fast_break_submission.cdc
FastbreakOracleScoreFastBreakSubmission []byte
//go:embed transactions/fastbreak/oracle/create_run.cdc
FastbreakOracleCreateRun []byte
// fastbreak/scripts
//go:embed transactions/fastbreak/scripts/get_fast_break_stats.cdc
FastbreakScriptsGetFastBreakStats []byte
//go:embed transactions/fastbreak/scripts/get_token_count.cdc
FastbreakScriptsGetTokenCount []byte
//go:embed transactions/fastbreak/scripts/get_player_score.cdc
FastbreakScriptsGetPlayerScore []byte
//go:embed transactions/fastbreak/scripts/get_current_player.cdc
FastbreakScriptsGetCurrentPlayer []byte
//go:embed transactions/fastbreak/scripts/get_fast_break.cdc
FastbreakScriptsGetFastBreak []byte
// fastbreak/player
//go:embed transactions/fastbreak/player/update_submission.cdc
FastbreakPlayerUpdateSubmission []byte
//go:embed transactions/fastbreak/player/create_player.cdc
FastbreakPlayerCreatePlayer []byte
//go:embed transactions/fastbreak/player/play.cdc
FastbreakPlayerPlay []byte
// market
//go:embed transactions/market/purchase_moment.cdc
MarketPurchaseMoment []byte
//go:embed transactions/market/change_receiver.cdc
MarketChangeReceiver []byte
//go:embed transactions/market/create_sale.cdc
MarketCreateSale []byte
//go:embed transactions/market/change_price.cdc
MarketChangePrice []byte
//go:embed transactions/market/stop_sale.cdc
MarketStopSale []byte
//go:embed transactions/market/change_percentage.cdc
MarketChangePercentage []byte
//go:embed transactions/market/mint_and_purchase.cdc
MarketMintAndPurchase []byte
// market/scripts
//go:embed transactions/market/scripts/get_sale_percentage.cdc
MarketScriptsGetSalePercentage []byte
//go:embed transactions/market/scripts/get_sale_set_id.cdc
MarketScriptsGetSaleSetId []byte
//go:embed transactions/market/scripts/get_sale_price.cdc
MarketScriptsGetSalePrice []byte
//go:embed transactions/market/scripts/get_sale_len.cdc
MarketScriptsGetSaleLen []byte
// market
//go:embed transactions/market/start_sale.cdc
MarketStartSale []byte
//go:embed transactions/market/create_start_sale.cdc
MarketCreateStartSale []byte
)