Leszek Wiesner bb2b87a98a Types and metadata-protobuf: Patch to target es2017 2 лет назад
..
augment 815c615db0 types: Update StorageBucket. 2 лет назад
src 815c615db0 types: Update StorageBucket. 2 лет назад
.eslintignore ea9098d587 Full typegen support, tooling, linter fixes 4 лет назад
.eslintrc.js e13f39412e Make defs.json fully runtime-compatible 4 лет назад
.gitignore a3326cd323 Chain metadata as static file: scripts, @joystream/types and query-node build adjustments, removal of autogenerated types augment files from the repo 2 лет назад
.npmignore 639a9475cb @joystream/types: keep src/ in published npm packages, it gets built on install 4 лет назад
.prettierignore 6d90afa998 Linter: Manual fixes 4 лет назад
README.md 122b09371e revert change to example for ApiPromise in types/README.md 3 лет назад
package.json bb2b87a98a Types and metadata-protobuf: Patch to target es2017 2 лет назад
tsconfig-augment-codec.json af0fa72f42 generate:augment-codec 4 лет назад
tsconfig-augment.json ea9098d587 Full typegen support, tooling, linter fixes 4 лет назад
tsconfig-base.json bb2b87a98a Types and metadata-protobuf: Patch to target es2017 2 лет назад
tsconfig.json ecea87a58a Tooling for api.createType augmentation 4 лет назад

README.md

@joystream/types

The types package is required to register the custom Substrate runtime types when working with @polkadot/api to communicate with a Joystream full node.

Installation

Add the package as a dependency in your project.

yarn add @joystream/types

# or

npm install --save @joystream/types

Example usage

import { types } from '@joystream/types'
import { ApiPromise, WsProvider } from '@polkadot/api'

async function main() {
  // Initialise the provider to connect to the local node
  const provider = new WsProvider('ws://127.0.0.1:9944')

  // Create the API and wait until ready
  const api = await ApiPromise.create({ provider, types })

  // Retrieve the chain & node information information via rpc calls
  const [chain, nodeName, nodeVersion] = await Promise.all([
    api.rpc.system.chain(),
    api.rpc.system.name(),
    api.rpc.system.version(),
  ])

  console.log(`Chain ${chain} using ${nodeName} v${nodeVersion}`)
}

main()