slp-list
Version:
List token holders and balances at any block height
9 lines (8 loc) • 326 B
TypeScript
import { GenesisInfo } from ".";
export declare class Nft1List {
static SearchForNftsInGroup(groupIdHex: string, options?: {
createdAfterHeight: number;
createdBeforeHeight: number;
}): Promise<GenesisInfo[]>;
static GetConfirmedNftTokenHolders(groupIdHex: string): Promise<Map<string, string>>;
}