Skip to content

Commit

Permalink
feat(kandel): Split Geometric Kandel from core kandel and allow usage…
Browse files Browse the repository at this point in the history
… of specialized populate function (#1617)
  • Loading branch information
lnist authored Nov 24, 2023
1 parent 5191e20 commit 745a21a
Show file tree
Hide file tree
Showing 38 changed files with 4,979 additions and 3,922 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Next version

- feat: Add usage of Geometric Kandel's call-data-reducing function

# 2.0.0-4

- fix: For prereleases of contract packages, include deployments of earlier prereleases of those packages.
Expand Down
14 changes: 10 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ import KandelStrategies from "./kandelStrategies";
import * as mgvTestUtil from "./util/test/mgvIntegrationTestUtil";
import { typechain } from "./types";
import KandelDistribution from "./kandel/kandelDistribution";
import KandelDistributionGenerator from "./kandel/kandelDistributionGenerator";
import GeometricKandelDistributionGenerator from "./kandel/geometricKandel/geometricKandelDistributionGenerator";
import KandelFarm from "./kandel/kandelFarm";
import KandelSeeder from "./kandel/kandelSeeder";
import KandelInstance from "./kandel/kandelInstance";
import CoreKandelInstance from "./kandel/coreKandelInstance";
import OfferMaker from "./offerMaker";
import { enableLogging } from "./util/logger";
import { addressesConfiguration, tokensConfiguration } from "./configuration";
import GeometricKandelDistribution from "./kandel/geometricKandel/geometricKandelDistribution";
import GeneralKandelDistribution from "./kandel/generalKandelDistribution";
import GeometricKandelInstance from "./kandel/geometricKandel/geometricKandelInstance";

// Turn off Ethers.js warnings
// ethers.utils.Logger.setLogLevel(ethers.utils.Logger.levels.ERROR);
Expand All @@ -42,10 +45,13 @@ export {
mgvTestUtil,
KandelStrategies,
KandelDistribution,
KandelDistributionGenerator,
GeneralKandelDistribution,
GeometricKandelDistributionGenerator,
GeometricKandelDistribution,
KandelFarm,
KandelSeeder,
KandelInstance,
CoreKandelInstance,
GeometricKandelInstance,
OfferMaker,
enableLogging,
addressesConfiguration,
Expand Down
Loading

0 comments on commit 745a21a

Please sign in to comment.