NPM Package that allows you to interact with the Fragnova Blockchain
npm install @fragnova/api-augment@fragnova/api-augmentJavaScript/TypeScript SDK for interacting with the Fragnova Blockchain
- npm install @fragnova/api-augment (API Augmentation Library)
- npm install @polkadot/api@9.14.2 (Polkadot API Library)
For details on use, see the Polkadot API library documentation.
``typescript
import { options } from "@fragnova/api-augment";
import { ApiPromise, WsProvider } from '@polkadot/api';
// ...
const api = await ApiPromise.create({
provider: new WsProvider("ws://ws.fragnova.network"),
...options,
});
``