radix-utils
Version:
Utility functions for Radix DLT blockchain development
11 lines • 655 B
TypeScript
import { GatewayApiClient, LedgerStateSelector } from '@radixdlt/babylon-gateway-api-sdk';
import { WalletBalances } from '../types';
/**
* Fetch complete wallet balances including fungible and non-fungible tokens
* @param gatewayApi - Gateway API client instance
* @param walletAddress - The wallet address to fetch balances for
* @param ledgerState - Optional ledger state selector for historical data
* @returns Complete wallet balance information
*/
export declare const fetchWalletBalances: (gatewayApi: GatewayApiClient, walletAddress: string, ledgerState?: LedgerStateSelector) => Promise<WalletBalances>;
//# sourceMappingURL=wallet.d.ts.map