Split.balanceOf() method
Get Funds owed to a particular wallet
Example
// The address to check the funds of
const address = "{{wallet_address}}";
const funds = await contract.balanceOf(address);
console.log(funds);
Signature:
balanceOf(address: string): Promise<BigNumber>;
Parameters
Parameter | Type | Description |
---|---|---|
address | string |
Returns:
Promise<BigNumber>
Remarks
Get the amount of funds in the native currency held by the contract that is owed to a specific recipient.