Skip to content

Commit

Permalink
don't ref sdk if not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
hudeintres committed Jan 17, 2024
1 parent 7dfb3dc commit cba9872
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
import { getParamPerNetwork } from "../../helpers/contracts-helpers";
import { ExternalRewardsAddress, IExternalRewardsAddress, eNetwork } from "../../helpers/types";
import { waitForTx } from "../../helpers/misc-utils";
import { ZERO_ADDRESS } from "@vmexfinance/sdk";

task(`add-setStakingTypes`, `setup staking and begin staking for tranche 0`)
.addParam('pool', `Pool name to retrieve configuration, supported: ${Object.values(ConfigNames)}`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
import { getParamPerNetwork } from "../../helpers/contracts-helpers";
import { ExternalRewardsAddress, IExternalRewardsAddress, eNetwork } from "../../helpers/types";
import { waitForTx } from "../../helpers/misc-utils";
import { ZERO_ADDRESS } from "@vmexfinance/sdk";
import { ZERO_ADDRESS } from "../../helpers/constants";

task(`add-beginStaking`, `setup staking and begin staking for tranche 0`)
.addParam('pool', `Pool name to retrieve configuration, supported: ${Object.values(ConfigNames)}`)
Expand Down

0 comments on commit cba9872

Please sign in to comment.