Skip to content

Commit

Permalink
chore: visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
CanvasL committed Aug 6, 2024
1 parent 88086b1 commit f1f4e9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/Marketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ import {IMarketplace} from "./interfaces/IMarketplace.sol";
contract Marketplace is IMarketplace, Ownable {
using SafeERC20 for IERC20;

address private constant NATIVE_TOKEN = address(0);
address public constant NATIVE_TOKEN = address(0);

uint256 public constant MAX_POINTS = 10000;

AccessTokenFactory public immutable ACCESS_TOKEN_FACTORY;

address payable private _treasury;
address payable internal _treasury;

uint256 private _feePoints;
uint256 internal _feePoints;

/**
* @notice rent currency => is supported
Expand Down

0 comments on commit f1f4e9b

Please sign in to comment.