-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5984bd0
commit 3936a86
Showing
3 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,9 @@ import {IERC20} from "src/interfaces/token/IERC20.sol"; | |
import {V3Path} from "src/utils/uniswap/V3Path.sol"; | ||
|
||
/// @title Kwenta Smart Margin Account Implementation | ||
/// @author JaredBorders ([email protected]), JChiaramonte7 ([email protected]) | ||
/// @author JaredBorders ([email protected]) | ||
/// @author JChiaramonte7 ([email protected]) | ||
/// @author Flocqst ([email protected]) | ||
/// @notice flexible smart margin account enabling users to trade on-chain derivatives | ||
contract Account is IAccount, Auth, OpsReady { | ||
using V3Path for bytes; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ import {IFactory} from "./interfaces/IFactory.sol"; | |
/// @title Consolidates all events emitted by the Smart Margin Accounts | ||
/// @dev restricted to only Smart Margin Accounts | ||
/// @author JaredBorders ([email protected]) | ||
/// @author Flocqst ([email protected]) | ||
contract Events is IEvents { | ||
/*////////////////////////////////////////////////////////////// | ||
IMMUTABLES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ import {Owned} from "src/utils/Owned.sol"; | |
|
||
/// @title Kwenta Smart Margin Account Settings | ||
/// @author JaredBorders ([email protected]) | ||
/// @author Flocqst ([email protected]) | ||
/// @notice This contract is used to manage the settings of the Kwenta Smart Margin Account | ||
/// @custom:caution Changes to this contract will effectively clear any existing settings. | ||
/// Post update, the owner will need to reconfigure the settings either in the deploy script or | ||
|