Home > @3rdweb/sdk > SplitsModule > balanceOf
Get Funds
Signature:
balanceOf(address: string): Promise<BigNumber>;
Parameter | Type | Description |
---|---|---|
address | string |
Returns:
Promise<BigNumber>
Get the amount of funds in the native currency held by the module thats owed to a specific recipient.
// The address to check the funds of
const address = "";
const funds = await module.balanceOf(address);
console.log(funds);