UNPKG

@vechain/sdk-network

Version:

This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain

18 lines (14 loc) 393 B
/** * Url of the mainnet */ const MAINNET_URL = 'https://mainnet.vechain.org'; /** * Url of the testnet */ const TESTNET_URL = 'https://testnet.vechain.org'; /** * Url of the solo network * Using explicit IPv4 (127.0.0.1) instead of localhost to avoid IPv6 resolution issues in CI */ const THOR_SOLO_URL = 'http://127.0.0.1:8669'; export { MAINNET_URL, TESTNET_URL, THOR_SOLO_URL };