0.0.8 • Published 16 days ago

@aptos-labs/aptos-fee-payer-library v0.0.8

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
16 days ago

Aptos Account Value

NPM Package Downloads

This library is experimental.

This library provides a way to calculate the total value of an Aptos account.

Installation

pnpm install @banool/aptos-account-value

Install TS SDK v2:

pnpm install @aptos-labs/ts-sdk@0.0.7

Usage

Create a client:

import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";

const config = new AptosConfig({ network: Network.MAINNET });
const client = new Aptos(config);

Use the library:

import { getAccountValueMany, OutputCurrency } from "@banool/aptos-account-value";

await getAccountValueMany({
  client: client,
  accountAddresses: ["0x1", "0x2"],
  outputCurrency: OutputCurrency.USD,
});
0.0.8

16 days ago

0.0.7

16 days ago

0.0.6

16 days ago

0.0.5

16 days ago

0.0.4

16 days ago

0.0.3

16 days ago

0.0.2

16 days ago