0.0.1 • Published 11 months ago

karmachain-js v0.0.1

Weekly downloads
-
License
LicenseRef-LICENS...
Repository
github
Last release
11 months ago

Karmachain.js

An npm package providing the Karmachain api to javascript clients and beyond

Generating karmachain.json

  1. Run a local Karmachain node.

  2. From this repo root dir run the following to set the content of karmachain.json with metadata from a karmachain node:

yarn load:meta

Generating types

yarn generate
yarn lint

docs and tutorial

https://polkadot.js.org/docs/api/examples/promise/typegen/

Testing

  1. Run a local Karmachain node in verifier mode and with an enabled offchain worker.

  2. Run the tests

yarn test

Note that the tests config adds verifier and offchain keys using these commands so there's no need to manually run them.

curl --location 'http://localhost:9933/' \
--header 'Content-Type: application/json' \
--data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "author_insertKey",
    "params": {
        "key_type": "Veri",
        "suri": "//Alice",
        "public": "0xd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d"
    }
}'
curl --location 'http://localhost:9933/' \
--header 'Content-Type: application/json' \
--data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "author_insertKey",
    "params": {
        "key_type": "rewa",
        "suri": "//Alice",
        "public": "0xd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d"
    }
}'