
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@substrate/connect
Advanced tools
Substrate-connect to Smoldot clients. Using either substrate extension with predefined clients or an internal smoldot client based on chainSpecs provided.
This is a prototype for using @polkadot/api with the smoldot WASM light client either by passing chainspecs or using the extension by predefined chains (e.g. westend, kusama).
Detector check existence of substrate extension. If it is installed and activated then smoldot clients of extension will be used. If not, a new smoldot client will start and sync with given chainspecs.
Provide a known Chain Name ('kusama', 'polkadot', 'westend'):
import { Detector } from '@substrate/connect';
const detect = new Detector('my cool unstoppable app');
const api = await detect.connect('westend');
or provide your custom substrate chain's name and chainspec:
import { Detector } from '@substrate/connect';
import mySubstrateChainSpec from './mySubstrateChainSpec.json';
const chainSpec = JSON.stringify(mySubstrateChainSpec);
const detect = new Detector('my cool unstoppable app');
const api = await detect.connect('mySubstrateChainName', chainSpec());
In addition besides substrate chain's name and/or chainspec, a list of options can be passed to Detector, same way as in as passed in @polkadot/api. Without chainspec:
import { Detector } from '@substrate/connect';
const detect = new Detector('my cool unstoppable app');
const options = { /* the options as per polkadot/api */ } as ApiOptions;
const api = await detect.connect('mySubstrateChainName', undefined, options);
or with:
import { Detector } from '@substrate/connect';
import mySubstrateChainSpec from './mySubstrateChainSpec.json';
const chainSpec = JSON.stringify(mySubstrateChainSpec);
const detect = new Detector('my cool unstoppable app');
const options = { /* the options as per polkadot/api */ } as ApiOptions;
const api = await detect.connect('mySubstrateChainName', chainSpec(), options);
yarn test
to run the unit testsyarn build
to build @substrate-connectyarn lint
to run linter for @substrate-connectFAQs
Substrate-connect to Smoldot clients. Using either substrate extension with predefined clients or an internal smoldot client based on chainSpecs provided.
The npm package @substrate/connect receives a total of 126,518 weekly downloads. As such, @substrate/connect popularity was classified as popular.
We found that @substrate/connect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.