Skip to content

Commit

Permalink
Merge pull request #66 from stabilitydao/change_author_username
Browse files Browse the repository at this point in the history
Change author username
  • Loading branch information
0xhokugava authored Dec 1, 2023
2 parents b1b6107 + 48337da commit a283c69
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/Platform.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import "../interfaces/IVault.sol";
/// @author Alien Deployer (https://github.com/a17)
/// @author Jude (https://github.com/iammrjude)
/// @author JodsMigel (https://github.com/JodsMigel)
/// @author 0x6c71777172656474 (https://github.com/0x6c71777172656474)
/// @author 0xhokugava (https://github.com/0xhokugava)
contract Platform is Controllable, IPlatform {
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableMap for EnumerableMap.AddressToUintMap;
Expand Down
2 changes: 1 addition & 1 deletion src/core/base/Controllable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import "../../interfaces/IPlatform.sol";
/// @dev Base core contract.
/// It store an immutable platform proxy address in the storage and provides access control to inherited contracts.
/// @author Alien Deployer (https://github.com/a17)
/// @author 0x6c71777172656474 (https://github.com/0x6c71777172656474)
/// @author 0xhokugava (https://github.com/0xhokugava)
abstract contract Controllable is Initializable, IControllable, ERC165 {
using SlotsLib for bytes32;

Expand Down
2 changes: 1 addition & 1 deletion src/core/base/RVaultBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import "../../interfaces/IPlatform.sol";
/// Rewards are distributed smoothly by vesting with variable periods.
/// @author Alien Deployer (https://github.com/a17)
/// @author JodsMigel (https://github.com/JodsMigel)
/// @author 0x6c71777172656474 (https://github.com/0x6c71777172656474)
/// @author 0xhokugava (https://github.com/0xhokugava)
abstract contract RVaultBase is VaultBase, IRVault {
using SafeERC20 for IERC20;

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IRVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "./IVault.sol";
/// @notice Interface of Rewarding Vault
/// @author Alien Deployer (https://github.com/a17)
/// @author JodsMigel (https://github.com/JodsMigel)
/// @author 0x6c71777172656474 (https://github.com/0x6c71777172656474)
/// @author 0xhokugava (https://github.com/0xhokugava)
interface IRVault is IVault {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* CUSTOM ERRORS */
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/ISwapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.8.22;
/// @author Alien Deployer (https://github.com/a17)
/// @author Jude (https://github.com/iammrjude)
/// @author JodsMigel (https://github.com/JodsMigel)
/// @author 0x6c71777172656474 (https://github.com/0x6c71777172656474)
/// @author 0xhokugava (https://github.com/0xhokugava)
interface ISwapper {
event Swap(address indexed tokenIn, address indexed tokenOut, uint amount);
event PoolAdded(PoolData poolData, bool assetAdded);
Expand Down

0 comments on commit a283c69

Please sign in to comment.