Skip to main content

Allfeat.js

Disclaimer

For now, Allfeat.js only implement an override to the Polkadot.js API with all the stuff compatible for the Allfeat blockchain.

Getting started

  1. Install dependencies
yarn add @allfeat/sdk-core
  1. Create API instance
import { connection } from "@allfeat/sdk-core"

async function main() {
const endpoint = "wss://127.0.0.1:9944"
const api = await connection(endpoint)

// use api
}

main()

Using api. gives you autocompletion ✨.

See more examples.