UNPKG

@cheqd/sdk

Version:

A TypeScript SDK built with CosmJS to interact with the cheqd network ledger

9 lines 384 B
import { Registry } from '@cosmjs/proto-signing'; import { defaultRegistryTypes } from '@cosmjs/stargate'; export function createDefaultCheqdRegistry(customTypes) { if (!customTypes) customTypes = []; return new Registry([...defaultRegistryTypes, ...customTypes]); } export const CheqdRegistry = new Registry(defaultRegistryTypes); //# sourceMappingURL=registry.js.map