Ensure that the token ID is associated with the account prior to calling the deposit function. Failure to do so will result in a TOKEN_NOT_ASSOCIATED_TO_ACCOUNT error
Function name: deposit
Solidity Function Body
//WhbarHelper.sol
function deposit() public payable {
IWHBAR(whbarContract).deposit{value: msg.value}(msg.sender, msg.sender);
}