per-asset fees

This commit is contained in:
tim
2025-10-29 18:22:23 -04:00
parent 86410c9a91
commit 20758cfb35
18 changed files with 475 additions and 164 deletions

View File

@@ -16,7 +16,7 @@ interface IPartyPoolDeployer {
string memory symbol_,
IERC20[] memory tokens_,
int128 kappa_,
uint256 swapFeePpm_,
uint256[] memory fees_,
uint256 flashFeePpm_,
uint256 protocolFeePpm_,
address protocolFeeAddress_,
@@ -33,7 +33,7 @@ contract PartyPoolDeployer is IPartyPoolDeployer {
string memory symbol_,
IERC20[] memory tokens_,
int128 kappa_,
uint256 swapFeePpm_,
uint256[] memory fees_,
uint256 flashFeePpm_,
uint256 protocolFeePpm_,
address protocolFeeAddress_,
@@ -47,7 +47,7 @@ contract PartyPoolDeployer is IPartyPoolDeployer {
symbol_,
tokens_,
kappa_,
swapFeePpm_,
fees_,
flashFeePpm_,
protocolFeePpm_,
protocolFeeAddress_,
@@ -65,7 +65,7 @@ contract PartyPoolBalancedPairDeployer is IPartyPoolDeployer {
string memory symbol_,
IERC20[] memory tokens_,
int128 kappa_,
uint256 swapFeePpm_,
uint256[] memory fees_,
uint256 flashFeePpm_,
uint256 protocolFeePpm_,
address protocolFeeAddress_,
@@ -79,7 +79,7 @@ contract PartyPoolBalancedPairDeployer is IPartyPoolDeployer {
symbol_,
tokens_,
kappa_,
swapFeePpm_,
fees_,
flashFeePpm_,
protocolFeePpm_,
protocolFeeAddress_,