Leszek Wiesner fdbaae4da5 Pioneer proposals hotfix пре 2 година
..
augment fdbaae4da5 Pioneer proposals hotfix пре 2 година
augment-codec aaeb89561a add @polkadot/metadata to package.json resolutions and rebuild augment types пре 3 година
src fdbaae4da5 Pioneer proposals hotfix пре 2 година
.eslintignore ea9098d587 Full typegen support, tooling, linter fixes пре 4 година
.eslintrc.js e13f39412e Make defs.json fully runtime-compatible пре 4 година
.gitignore be66c5e9fe @joystream/types - checks config, CI, linter fixes пре 4 година
.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 3a00ea1516 eslint and prettier linting fixes пре 3 година
tsconfig-augment-codec.json af0fa72f42 generate:augment-codec пре 4 година
tsconfig-augment.json ea9098d587 Full typegen support, tooling, linter fixes пре 4 година
tsconfig-base.json ea9098d587 Full typegen support, tooling, linter fixes пре 4 година
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()