From 8380412cdd547fe8ad5d926a9b7a24f85659d978 Mon Sep 17 00:00:00 2001 From: Deepu Date: Wed, 6 Mar 2024 03:03:28 +0530 Subject: [PATCH 1/2] closes #197 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 00ad580..5658cb3 100644 --- a/package.json +++ b/package.json @@ -30,10 +30,10 @@ "compile": "npx hardhat compile", "test": "npx hardhat test", "docs": "npx hardhat docgen", - "testnet": "npx hardhat test --network $1", - "deploy": "npx hardhat run scripts/deploy.ts --network $1", + "deploy:swaplace": "npx hardhat run scripts/deploy.ts --network $1", "compile-echidna": "crytic-compile . && slither . --print echidna", "fuzz-p": "echidna . --contract TestSwaplace --test-mode property --config echidna.config.yml", - "fuzz-a": "echidna . --contract TestSwaplace --test-mode assertion --config echidna.config.yml" + "fuzz-a": "echidna . --contract TestSwaplace --test-mode assertion --config echidna.config.yml", + "deploy:mocks": "npx hardhat run scripts/deployMock.ts --network $1" } } From fcb1a82bb03f8edfa03fdc6d9e6815cadff9c907 Mon Sep 17 00:00:00 2001 From: Deepu Date: Wed, 6 Mar 2024 17:18:09 +0530 Subject: [PATCH 2/2] changes made #197 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5658cb3..60b3a11 100644 --- a/package.json +++ b/package.json @@ -30,10 +30,10 @@ "compile": "npx hardhat compile", "test": "npx hardhat test", "docs": "npx hardhat docgen", + "deploy:mocks": "npx hardhat run scripts/deployMock.ts --network $1", "deploy:swaplace": "npx hardhat run scripts/deploy.ts --network $1", "compile-echidna": "crytic-compile . && slither . --print echidna", "fuzz-p": "echidna . --contract TestSwaplace --test-mode property --config echidna.config.yml", - "fuzz-a": "echidna . --contract TestSwaplace --test-mode assertion --config echidna.config.yml", - "deploy:mocks": "npx hardhat run scripts/deployMock.ts --network $1" + "fuzz-a": "echidna . --contract TestSwaplace --test-mode assertion --config echidna.config.yml" } }