Mokhtar Naamani aaeb89561a add @polkadot/metadata to package.json resolutions and rebuild augment types il y a 3 ans
..
augment aaeb89561a add @polkadot/metadata to package.json resolutions and rebuild augment types il y a 3 ans
augment-codec aaeb89561a add @polkadot/metadata to package.json resolutions and rebuild augment types il y a 3 ans
src 3a00ea1516 eslint and prettier linting fixes il y a 3 ans
.eslintignore ea9098d587 Full typegen support, tooling, linter fixes il y a 4 ans
.eslintrc.js e13f39412e Make defs.json fully runtime-compatible il y a 4 ans
.gitignore be66c5e9fe @joystream/types - checks config, CI, linter fixes il y a 4 ans
.npmignore 639a9475cb @joystream/types: keep src/ in published npm packages, it gets built on install il y a 4 ans
.prettierignore 6d90afa998 Linter: Manual fixes il y a 4 ans
README.md 122b09371e revert change to example for ApiPromise in types/README.md il y a 3 ans
package.json 3a00ea1516 eslint and prettier linting fixes il y a 3 ans
tsconfig-augment-codec.json af0fa72f42 generate:augment-codec il y a 4 ans
tsconfig-augment.json ea9098d587 Full typegen support, tooling, linter fixes il y a 4 ans
tsconfig-base.json ea9098d587 Full typegen support, tooling, linter fixes il y a 4 ans
tsconfig.json ecea87a58a Tooling for api.createType augmentation il y a 4 ans

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()