0.2.9 • Published 30 days ago

@astar-network/astar-api-derive v0.2.9

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

license

@astar-network/api-derive

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

Example

import { ApiPromise, WsProvider } from '@polkadot/api';
import { options } from '@astar-network/astar-api';
import '@astar-network/astar-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.

0.2.9

30 days ago

0.2.8

5 months ago

0.2.7

5 months ago

0.2.6

6 months ago

0.2.5

10 months ago

0.2.4

10 months ago

0.2.3

1 year ago

0.2.2

1 year ago

0.1.14

1 year ago

0.1.15

1 year ago

0.2.1

1 year ago

0.1.16

1 year ago

0.1.17

1 year ago

0.1.19

1 year ago

0.1.13

1 year ago

0.1.10

1 year ago

0.1.12

1 year ago

0.1.9

1 year ago

0.1.8

2 years ago

0.1.5-7

2 years ago

0.1.5-4

2 years ago

0.1.5-6

2 years ago

0.1.5-5

2 years ago

0.1.5-3

2 years ago

0.1.5-2

2 years ago

0.1.5-1

2 years ago

0.1.4-13

2 years ago