### Recommendation
Consider using latestRoundData and check timestamp is not stale.

## [L-03] Insufficient staleness check for `bendNFTOracle`/`bendTokenOracle`
- src/PriceOracle.sol
- Instances(2)

Simply checking the timestamp !=0, doesn't prevent stale price. PriceOracle's checking that latestTimestamp !=0 is insufficient.

Note that in 07 audit, an insufficient staleness check was raised for a different method `getAssetPriceFromChainlink`. The vulnerable code below in question is added post 07 audit.

1. [PriceOracle.sol#L190](https://github.com/code-423n4/2024-12-benddao/blob/489f8dd0f8e86e5a7550cc6b81f9edfe79efbf4e/src/PriceOracle.sol#L190):
```solidity
    function getAssetPriceFromBendNFTOracle(address asset) public view returns (uint256) {
    
            uint256 updatedAt = bendNFTOracle.getLatestTimestamp(asset);
        require(updatedAt != 0, Errors.ORACLE_PRICE_IS_STALE);
