Skip to content

Commit 980ae87

Browse files
author
hectiik
authored
Feat: Add LiquidityInfo Struct
1 parent edb2ce0 commit 980ae87

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/FactoryTokenContractV2.sol

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,11 @@ contract FactoryTokenContractV2 is Ownable, ReentrancyGuard, Pausable {
7474
uint256 executedAt;
7575
uint256 liquidityProvided;
7676
}
77+
78+
struct LiquidityInfo {
79+
uint256 totalLiquidity;
80+
bool thresholdMet;
81+
address[] contributors;
82+
mapping(address => uint256) contributions;
83+
}
7784
}

0 commit comments

Comments
 (0)