
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
@polkadot/networks
Advanced tools
A list of all available Substrate networks and their applicable prefixes
@polkadot/networks is a utility package that provides information about various networks in the Polkadot ecosystem. It includes details such as network names, prefixes, and other relevant metadata.
Get Network Information
This feature allows you to retrieve information about a specific network in the Polkadot ecosystem. In this example, we fetch details about the Polkadot network.
const { knownSubstrate } = require('@polkadot/networks');
const networkInfo = knownSubstrate.find(network => network.network === 'polkadot');
console.log(networkInfo);
List All Networks
This feature allows you to list all available networks in the Polkadot ecosystem. The code sample demonstrates how to extract and print the names of all networks.
const { knownSubstrate } = require('@polkadot/networks');
const allNetworks = knownSubstrate.map(network => network.network);
console.log(allNetworks);
Get Network Prefix
This feature allows you to retrieve the prefix of a specific network. In this example, we fetch the prefix for the Kusama network.
const { knownSubstrate } = require('@polkadot/networks');
const networkPrefix = knownSubstrate.find(network => network.network === 'kusama').prefix;
console.log(networkPrefix);
A list of all available Substrate networks and their applicable prefixes.
This list is periodically checked against the master list available at https://github.com/paritytech/ss58-registry/blob/main/ss58-registry.json
FAQs
A list of all available Substrate networks and their applicable prefixes
The npm package @polkadot/networks receives a total of 147,617 weekly downloads. As such, @polkadot/networks popularity was classified as popular.
We found that @polkadot/networks demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.