1.0.0 • Published 2 years ago

solana-account-loader v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

solana-account-loader

Simple package for loading solana accounts via getMultipleAccounts in a more fancy way

Usage:

const batchSize = 100; // number of accounts to pass in a single getMultipleAccounts request
const pollInterval = 10; // time in ms to store keys in queue before requests
let loader = new AccountLoader(conn, batchSize, pollInterval);

let infos = await Promise.all(
  keys.map(async key => loader.load(key))
);
1.0.0

2 years ago