Get the user subscription status for a dapp

Get the user subscription status for a dapp-

function isSubscribed(
	bytes32 _dappId, 
	uint256 listID, 
	address _user
) view external returns (bool);

The function will return a boolean value:

  • true if the user is subscribed

  • false if the user is not subscribed

Last updated