import type { FlowAddress } from "@rarible/types"; import type { FlowContractAddressName } from "../common/flow-address"; import type { FlowContractName, FlowFee, FlowNetwork, NonFungibleContract } from "../types"; export declare const NODE_TRANSPORT_CONFIG: Record; export declare const METADATA_HOST = "https://gateway.pinata.cloud"; export declare const MIN_ORDER_PRICE = "0.0001"; export type FlowNftFeatures = "MINT" | "BURN" | "TRANSFER"; export type FlowConfigData = { /** * additional contracts deployed in main collection */ contractsNames: FlowContractAddressName[]; /** * is mint/burn/transfer avaliable in collection */ features: FlowNftFeatures[]; }; export declare const flowCollectionsConfig: Record; export declare const CONFIGS: Record; type Config = { protocolFee: FlowFee; mainAddressMap: Record; }; export declare enum EmulatorCollections { RARIBLE = "A.0xf8d6e0586b0a20c7.RaribleNFT", MOTOGP = "A.0xf8d6e0586b0a20c7.MotoGPCard", EVOLUTION = "A.0xf8d6e0586b0a20c7.Evolution", TOPSHOT = "A.0xf8d6e0586b0a20c7.TopShot", MUGENNFT = "A.0xf8d6e0586b0a20c7.MugenNFT", CNNNFT = "A.0xf8d6e0586b0a20c7.CNN_NFT", MATRIXFEST = "A.0xf8d6e0586b0a20c7.MatrixWorldFlowFestNFT", MATRIXLANDVAUCHER = "A.0xf8d6e0586b0a20c7.MatrixWorldVoucher" } export declare enum TestnetCollections { RARIBLE = "A.ebf4ae01d1284af8.RaribleNFT", MOTOGP = "A.01658d9b94068f3c.MotoGPCard", EVOLUTION = "A.01658d9b94068f3c.Evolution", TOPSHOT = "A.01658d9b94068f3c.TopShot", MUGENNFT = "A.ebf4ae01d1284af8.MugenNFT", CNNNFT = "A.ebf4ae01d1284af8.CNN_NFT", MATRIXFEST = "A.e2f1b000e0203c1d.MatrixWorldFlowFestNFT", HWGarageCard = "A.0x1c3aa9059373c4ed.HWGarageCard", HWGaragePack = "A.0x1c3aa9059373c4ed.HWGaragePack", HWGarageCardV2 = "A.0x1c3aa9059373c4ed.HWGarageCardV2", HWGaragePackV2 = "A.0x1c3aa9059373c4ed.HWGaragePackV2", HWGarageTokenV2 = "A.0x1c3aa9059373c4ed.HWGarageTokenV2", BBxBarbiePack = "A.0x6b3176ca674d7fec.BBxBarbiePack", BBxBarbieCard = "A.0x6b3176ca674d7fec.BBxBarbieCard", BBxBarbieToken = "A.0x6b3176ca674d7fec.BBxBarbieToken", Gamisodes = "A.0x371ebe4bc55f8925.Gamisodes" } export declare enum MainnetCollections { RARIBLE = "A.01ab36aaf654a13e.RaribleNFT", MOTOGP = "A.a49cc0ee46c54bfb.MotoGPCard", EVOLUTION = "A.f4264ac8f3256818.Evolution", TOPSHOT = "A.0b2a3299cc857e29.TopShot", MUGENNFT = "A.2cd46d41da4ce262.MugenNFT", CNNNFT = "A.329feb3ab062d289.CNN_NFT", MATRIXFEST = "A.2d2750f240198f91.MatrixWorldFlowFestNFT", MATRIXLANDVAUCHER = "A.0d77ec47bbad8ef6.MatrixWorldVoucher" } export {};