From 5903edaed0c5f04dd3d5a645e201ae3eb4a8a95e Mon Sep 17 00:00:00 2001
From: Vitally Marinchenko <vitally.marinchenko@gmail.com>
Date: Mon, 30 Sep 2024 20:50:44 +0200
Subject: [PATCH] test commands added

---
 package.json | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package.json b/package.json
index 470a177..7efec55 100644
--- a/package.json
+++ b/package.json
@@ -9,6 +9,7 @@
 		"test-token": "npx hardhat test test/token.test.js",
 		"test-farms": "npx hardhat test test/farms.test.js",
 		"test-farms-dual": "npx hardhat test test/dual-reward-farm.test.js",
+		"test-farms-dynamic": "npx hardhat test test/dynamic-reward-farm.test.js",
 		"test-private": "npx hardhat test test/private.test.js",
 		"test-private-v2": "npx hardhat test test/private-v2.test.js",
 		"test-timelock": "npx hardhat test test/timelock.test.js",
@@ -20,6 +21,7 @@
 		"foundry-test-rewards": "forget test --no-match-test Rewards --gas-report -vv",
 		"foundry-test-default": "forge test --gas-report -vv",
 		"foundry-test-dual-v2": "forge test --match-contract TimeLockFarmV2DualTest --gas-report -vv",
+		"foundry-test-dynamic-token": "forge test --match-contract DynamicRewardFarmTest --gas-report -vv",
 		"foundry-test-migration": "forge test --match-contract MigrationSetupTest --gas-report -vv",
 		"foundry-test-migration-live": "forge test --match-contract MigrationSetupLive --gas-report -vv",
 		"foundry-test-reports": "forge test --gas-report > gasreport.ansi -vvv",
@@ -30,6 +32,7 @@
 		"deploy-rescue": "forge script contracts/Scripts/Deployer.s.sol:DeployRescue --with-gas-price 40000000000 --slow --broadcast --verify --rpc-url polygon",
 		"deploy-manager": "forge script contracts/Scripts/Deployer.s.sol:DeployManager --with-gas-price 130000000000 --slow --broadcast --verify --rpc-url polygon",
 		"deploy-simple-farm": "forge script contracts/Scripts/Deployer.s.sol:DeploySimpleFarm --broadcast --legacy --verify --rpc-url mainnet",
+		"deploy-dynamic-farm": "forge script contracts/Scripts/Deployer.s.sol:DeployDynamicFarm --broadcast --legacy --verify --rpc-url mainnet",
 		"deploy-farm-factory": "forge script contracts/Scripts/Deployer.s.sol:DeployFarmFactory --slow --broadcast --legacy --verify --rpc-url mainnet"
 	},
 	"repository": {