🔵How To Claim

Claiming your tokens is quick and easy! Simply visit our verified contract on BaseScan, connect your wallet, and click claim. This seamless process will automatically send you the tokens owed based on your holdings. Take advantage of this opportunity to access your dividends and start earning passive income today.

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount;
        bool paid;
        for (uint256 i; i < rewardTokens.length; i++){
            amount = _withdrawDividendOfUser(account, rewardTokens[i]);
            if(amount > 0) {
        		lastClaimTimes[account] = block.timestamp;
                emit Claim(account, amount, automatic);
                paid = true;
    	    }
        }
        return paid;
    }

Last updated