export declare const gamisodesRawInitPart = "\n //Gamisodes INIT PART START\n if acct.borrow<&Gamisodes.Collection>(from: Gamisodes.COLLECTION_STORAGE_PATH) == nil {\n let collection <- Gamisodes.createEmptyCollection()\n acct.save(<-collection, to: Gamisodes.COLLECTION_STORAGE_PATH)\n }\n if (acct.getCapability<&Gamisodes.Collection{NiftoryNonFungibleToken.CollectionPublic,NonFungibleToken.CollectionPublic,NonFungibleToken.Receiver,MetadataViews.ResolverCollection}>(Gamisodes.COLLECTION_PUBLIC_PATH).borrow() == nil) {\n acct.unlink(Gamisodes.COLLECTION_PUBLIC_PATH)\n acct.link<&Gamisodes.Collection{NiftoryNonFungibleToken.CollectionPublic,NonFungibleToken.CollectionPublic,NonFungibleToken.Receiver,MetadataViews.ResolverCollection}>(Gamisodes.COLLECTION_PUBLIC_PATH, target: Gamisodes.COLLECTION_STORAGE_PATH)\n }\n\n if (acct.getCapability<&Gamisodes.Collection{NiftoryNonFungibleToken.CollectionPublic,NonFungibleToken.CollectionPublic,NonFungibleToken.Provider,MetadataViews.ResolverCollection}>(Gamisodes.COLLECTION_PRIVATE_PATH).borrow() == nil) {\n acct.unlink(Gamisodes.COLLECTION_PRIVATE_PATH)\n acct.link<&Gamisodes.Collection{NiftoryNonFungibleToken.CollectionPublic,NonFungibleToken.CollectionPublic,NonFungibleToken.Provider,MetadataViews.ResolverCollection}>(Gamisodes.COLLECTION_PRIVATE_PATH, target: Gamisodes.COLLECTION_STORAGE_PATH)\n }\n\n if acct.storage.borrow<&NFTStorefrontV2.Storefront>(from: NFTStorefrontV2.StorefrontStoragePath) == nil {\n // Create a new empty Storefront\n let storefront: @NFTStorefrontV2.Storefront <- NFTStorefrontV2.createStorefront()\n\n // save it to the account\n acct.storage.save(<-storefront, to: NFTStorefrontV2.StorefrontStoragePath)\n\n // create a public capability for the Storefront\n let storefrontPublicCap: Capability<&{NFTStorefrontV2.StorefrontPublic}> = acct.capabilities.storage.issue<&{NFTStorefrontV2.StorefrontPublic}>(\n NFTStorefrontV2.StorefrontStoragePath\n )\n acct.capabilities.publish(storefrontPublicCap, at: NFTStorefrontV2.StorefrontPublicPath)\n }\n //Gamisodes INIT PART END\n"; export declare const txInitGamisodesContractsAndStorefrontV2: string;