@polkadot/api-provider
Version:
Transport providers for the API
33 lines (23 loc) • 2.02 kB
Markdown
[](https://polkadot.js.org)

[](https://github.com/Flet/semistandard)
[](https://www.npmjs.com/package/@polkadot/api-provider)
[](https://travis-ci.org/polkadot-js/api)
[](https://codeclimate.com/github/polkadot-js/api/maintainability)
[](https://coveralls.io/github/polkadot-js/api?branch=master)
[](https://david-dm.org/polkadot-js/api?path=packages/api-provider)
[](https://david-dm.org/polkadot-js/api?path=packages/api-provider#info=devDependencies)
# @polkadot/api-provider
Generic transport providers to handle the transport of method calls to and from Polkadot clients from applications interacting with it. Generally, unless you are operating at a low-level and taking care of encoding and decoding of parameters/results, it won't be directly used. API interfaces building on top these providers can support various transports with the same underlying interfaces.
## Usage
Installation -
```
npm install --save @polkadot/api-provider
```
Initialisation -
```js
import WsProvider from '@polkadot/api-provider/ws';
const provider = new WsProvider('http://127.0.0.1:9944');
const version = await provider.send('client_version', []);
console.log('clientVersion', version);
```