declare const DEFAULT_PROJECT_NAME = "shelby"; declare const DEFAULT_PROJECT_DESCRIPTION = "High performance, decentralized storage"; declare const NetworkToShelbyRPCBaseUrl: { readonly shelbynet: "https://shelby.shelbynet.shelby.xyz/shelby"; readonly netna: undefined; readonly devnet: undefined; readonly testnet: undefined; readonly mainnet: undefined; readonly local: "http://localhost:9090"; readonly custom: undefined; }; /** * Mapping of Aptos networks to Shelby Blob indexer services. */ declare const NetworkToShelbyBlobIndexerBaseUrl: { readonly shelbynet: "https://api.shelbynet.aptoslabs.com/v1/graphql"; readonly netna: undefined; readonly devnet: undefined; readonly testnet: undefined; readonly mainnet: undefined; readonly local: "http://localhost:8091/v1/graphql"; readonly custom: undefined; }; /** * Mapping of Aptos networks to gas station URL. */ declare const NetworkToGasStationBaseUrl: { readonly shelbynet: "https://api.shelbynet.shelby.xyz/gs/v1"; readonly netna: undefined; readonly devnet: undefined; readonly testnet: undefined; readonly mainnet: undefined; readonly local: undefined; readonly custom: undefined; }; /** * Mapping of Aptos networks to their default Shelby write-location hint. * Use `ShelbyMetadataClient.getLocationNames()` to discover every location * available on a particular deployment. */ declare const NetworkToDefaultLocationHint: { readonly shelbynet: "shelbynet-1"; readonly netna: undefined; readonly devnet: undefined; readonly testnet: undefined; readonly mainnet: undefined; readonly local: "localnet-1"; readonly custom: undefined; }; declare const SHELBY_DEPLOYER = "0x85fdb9a176ab8ef1d9d9c1b60d60b3924f0800ac1de1cc2085fb0b8bb4988e6a"; declare const MICROPAYMENTS_DEPLOYER = "0x1ae7275148bf6ef742b658fd9cbcc2e094201606f4a7bc707bab0201da8043ee"; declare const TOKEN_DEPLOYER = "0x33009e852be7f93762dd0bf303383c2cb2c5cab7a30d8238ca5f9f177ae75124"; declare const SHELBYUSD_TOKEN_ADDRESS = "0x33009e852be7f93762dd0bf303383c2cb2c5cab7a30d8238ca5f9f177ae75124"; declare const SHELBYUSD_TOKEN_MODULE = "shelby_usd"; declare const SHELBYUSD_TOKEN_NAME = "ShelbyUSD"; declare const SHELBYUSD_FA_METADATA_ADDRESS = "0x77d85d72f484a3284a2838de007e220a6587b95a535d1844c53c387afb23b0b6"; export { DEFAULT_PROJECT_DESCRIPTION, DEFAULT_PROJECT_NAME, MICROPAYMENTS_DEPLOYER, NetworkToDefaultLocationHint, NetworkToGasStationBaseUrl, NetworkToShelbyBlobIndexerBaseUrl, NetworkToShelbyRPCBaseUrl, SHELBYUSD_FA_METADATA_ADDRESS, SHELBYUSD_TOKEN_ADDRESS, SHELBYUSD_TOKEN_MODULE, SHELBYUSD_TOKEN_NAME, SHELBY_DEPLOYER, TOKEN_DEPLOYER };