1.0.1 • Published 23 days ago

@pendulum-chain/api-derive v1.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
23 days ago

license

@pendulum-chain/api-derive

Derived API calls that combine several queries to provide convinient results. This package is part of the Pendulum SDK.

Example

import { ApiPromise, WsProvider } from '@polkadot/api';
import { options } from '@pendulum-chain/api';
import '@pendulum-chain/api-derive/augmentDerives';

const getAddressEnum = (address: string) => ({ Evm: address });

const endpoint = 'wss://shiden.api.onfinality.io/public-ws';
const provider = new WsProvider(endpoint);
const address = '0x072416b9df2382a62Df34956DffB7B0aDdf668F9';
const api = new ApiPromise(options({ provider }));

(async function main() {
  await api.isReadyOrError;
  const stakers = await api.derive.dappStaking.stakers(getAddressEnum(address));
  console.log({ stakers: stakers.map((s: any) => s.toHuman()) });
})()
  .then(() => api.disconnect())
  .then(() => process.exit());

Development

Clone the repo, run yarn and you should be good to go.

Issues

Please see the COMMUNITY docs for contact and communication channels.

1.0.1

23 days ago

0.3.6

9 months ago

0.3.5

9 months ago

0.3.8

8 months ago

0.3.7

9 months ago

0.3.4

10 months ago

0.3.3

10 months ago

0.3.2

12 months ago

0.3.1

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago