-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathembed.go
46 lines (42 loc) · 1.55 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
package nfl
import (
_ "embed"
)
// scripts is a list of all the scripts we export with imports mapped
var (
//go:embed scripts/user/account_is_all_setup.cdc
UserAccountIsAllSetup []byte
//go:embed scripts/user/account_is_setup.cdc
UserAccountIsSetup []byte
)
// Transactions is a list of all the transactions we export with imports mapped
var (
//go:embed transactions/admin/editions/close_edition.cdc
EditionsCloseEdition []byte
//go:embed transactions/admin/editions/create_edition.cdc
EditionsCreateEdition []byte
//go:embed transactions/admin/nfts/mint_moment_nft.cdc
NftsMintMomentNft []byte
//go:embed transactions/admin/nfts/mint_moment_nfts_multi.cdc
NftsBatchMintMomentNfts []byte
//go:embed transactions/admin/plays/create_play.cdc
PlaysCreatePlay []byte
//go:embed transactions/admin/plays/update_play_description.cdc
PlaysUpdatePlayDescription []byte
//go:embed transactions/admin/plays/update_play_dynamic_metadata.cdc
PlaysUpdatePlayDynamicMetadata []byte
//go:embed transactions/admin/series/close_series.cdc
SeriesCloseSeries []byte
//go:embed transactions/admin/series/create_series.cdc
SeriesCreateSeries []byte
//go:embed transactions/admin/sets/create_set.cdc
SetsCreateSet []byte
//go:embed transactions/user/setup_allday_account.cdc
UserSetupAllDayAccount []byte
//go:embed transactions/user/transfer_moment_nft.cdc
UserTransferMomentNft []byte
//go:embed transactions/user/batch_transfer_moment_nfts.cdc
UserBatchTransferMomentNfts []byte
//go:embed transactions/user/setup_all_collections.cdc
UserSetUpAllCollections []byte
)