UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

16 lines (15 loc) 717 B
/** * Contains passphrases for common networks: * * `Networks.PUBLIC`: `Public Global Stellar Network ; September 2015` * * `Networks.TESTNET`: `Test SDF Network ; September 2015` * * `Networks.FUTURENET`: `Test SDF Future Network ; October 2022` * * `Networks.SANDBOX`: `Local Sandbox Stellar Network ; September 2022` * * `Networks.STANDALONE`: `Standalone Network ; February 2017` */ export declare enum Networks { PUBLIC = "Public Global Stellar Network ; September 2015", TESTNET = "Test SDF Network ; September 2015", FUTURENET = "Test SDF Future Network ; October 2022", SANDBOX = "Local Sandbox Stellar Network ; September 2022", STANDALONE = "Standalone Network ; February 2017" }