Connect to network
After setting up your project & installing dedot packages, let's connect to the network to make some on-chain interactions. You can connect to the network using a WebSocket (wss://) connection or via light client (smoldot).
Initializing DedotClient and interact with Polkadot network
DedotClient and interact with Polkadot networkimport { DedotClient, WsProvider } from 'dedot';
import type { PolkadotApi } from '@dedot/chaintypes';
// Initialize providers & clients
const provider = new WsProvider('wss://rpc.polkadot.io');
const client = await DedotClient.new<PolkadotApi>(provider);
// Call rpc `state_getMetadata` to fetch raw scale-encoded metadata and decode it.
const metadata = await client.rpc.state_getMetadata();
console.log('Metadata:', metadata);
// Query on-chain storage
const balance = await client.query.system.account(<address>);
console.log('Balance:', balance);
// Subscribe to on-chain storage changes
const unsub = await client.query.system.number((blockNumber) => {
console.log(`Current block number: ${blockNumber}`);
});
// Get pallet constants
const ss58Prefix = client.consts.system.ss58Prefix;
console.log('Polkadot ss58Prefix:', ss58Prefix);
// Call runtime api
const pendingRewards = await client.call.nominationPoolsApi.pendingRewards(<address>)
console.log('Pending rewards:', pendingRewards);
// Unsubcribe to storage changes & disconnect from the network
// await unsub();
// await client.disconnect();Preparing a chainSpec.json file for the network that you want to connect to, you can find the chain spec for well-known chains by installing @dedot/chain-specs package.
Next, initialize SmoldotProvider and DedotClient instances to connect to network
Preparing a chainSpec.json file for the network that you want to connect to, you can find the chain spec for well-known chains by installing @dedot/chain-specs package.
Start a smoldot client within a WebWorker, then initialize SmoldotProvider & DedotClient to connect to the network
Note, for instruction on how to connect to a parachain, check out this example on Dedot repository.
Pick ChainApi interface for the network you're working with
ChainApi interface for the network you're working withWe recommend specifying the ChainApi interface (e.g: PolkadotApi in the example above) of the chain that you want to interact with. This enable Types & APIs suggestion/autocompletion for that particular chain (via IntelliSense). If you don't specify a ChainApi interface, the default SubstrateApi interface will be used.
Caching metadata
In the bootstrapping/intialization process, clients have to download metadata from the network to prepare for on-chain interactions. Downloading a big metadata blob can take a large amount of time, depending on the JSON-RPC server that dapps are connecting to, it might potentially take longer if the connection is via a light client. For example, downloading Polkadot metadata (~500 kB) can take up to 500ms or ~1s or even longer depends on the network conditions.
Clients have an option to cache the downloaded metadata and using it again next time the dapp is loaded without having to download again. By default, Dedot save the cached metadata to localStorage in browser environment.
Enable caching metadata when initialize Dedot's clients:
Dedot supports CommonJS
Dedot supports CommonJS, so you can use require to import primitives & APIs.
Connect to network via legacy JSON-RPC APIs
If the JSON-RPC server doesn't support new JSON-RPC APIs yet, you can connect to the network using the legacy JSON-RPC APIs. Dedot provides a unified client interface for both new and legacy JSON-RPC specs.
When to use JSON-RPC v2 or legacy?
Last updated
Was this helpful?