UNPKG

@vechain/sdk-network

Version:

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

12 lines (9 loc) 169 B
/** * HTTP regex. */ const HTTP_REGEX: RegExp = /^http:\/\//; /** * HTTPS regex. */ const HTTPS_REGEX: RegExp = /^https:\/\//; export { HTTP_REGEX, HTTPS_REGEX };