You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 11, 2025. It is now read-only.
import "./FHEVMConfig.sol";
/// @title PaymentLimit
/// @notice A contract to demonstrate FHE gas limits in different scenarios
contract PaymentLimit {
/// @notice Constructor that sets up FHE configuration and deposits initial value
/// @dev Payable to allow initial deposit
constructor() {
FHE.setCoprocessor(FHEVMConfig.defaultConfig());
}