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
- Install dependencies
yarn add @allfeat/sdk-core
- 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.