UNPKG

@devasher/kuru-sdk

Version:

Ethers v6 SDK to interact with Kuru (forked from @kuru-labs/kuru-sdk)

14 lines 741 B
import { ethers } from 'ethers'; import { TokenInfo } from '../types'; export declare abstract class TokenDetailsReader { /** * @dev Gets details for multiple tokens for a specific holder * @param provider - The ethers.js provider to interact with the blockchain * @param kuruUtilsAddress - The address of the KuruUtils contract * @param tokens - Array of token addresses to query * @param holder - Address of the token holder * @returns Promise resolving to an array of TokenInfo objects */ static getTokensInfo(providerOrSigner: ethers.JsonRpcProvider | ethers.Signer, kuruUtilsAddress: string, tokens: string[], holder: string): Promise<TokenInfo[]>; } //# sourceMappingURL=tokenDetails.d.ts.map