Skip to content

Commit

Permalink
chore: add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
iavl committed May 30, 2024
1 parent 0f065ff commit 6488639
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/PowerToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ contract PowerToken is ERC20Upgradeable, IPowerToken, AccessControlEnumerable {

mapping(bytes32 feedId => uint256) internal _pointsBalances;

/// @inheritdoc IPowerToken
function initialize(
string calldata name_,
string calldata symbol_
Expand All @@ -22,16 +23,20 @@ contract PowerToken is ERC20Upgradeable, IPowerToken, AccessControlEnumerable {
_grantRole(APP_ADMIN_ROLE, _msgSender());
}

/// @inheritdoc IPowerToken
function mint(address to) external override onlyRole(APP_ADMIN_ROLE) {}

/// @inheritdoc IPowerToken
function tip(
uint256 amount,
address to,
bytes32 feedId
) external override onlyRole(APP_ADMIN_ROLE) {}

/// @inheritdoc IPowerToken
function withdraw(address to, bytes32 feedId) external override onlyRole(APP_ADMIN_ROLE) {}

/// @inheritdoc IPowerToken
function balanceOfPoins(address owner) external view override returns (uint256) {}

/* ContextUpgradeable */
Expand Down

0 comments on commit 6488639

Please sign in to comment.