Skip to content

Commit

Permalink
update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
killroy192 committed Dec 7, 2023
1 parent 7ea099b commit 4384c72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ abi :; npx hardhat export-abi

network?=hardhat

deploy-demo :; npx hardhat run --network $(network) deploy:demo
deploy-demo :; npx hardhat --network $(network) deploy:demo

amount?=1
oracle?=Oracle

refund :; npx hardhat run --network $(network) refund --amount $(amount) --oracle $(oracle)
refund :; npx hardhat --network $(network) refund --amount $(amount) --oracle $(oracle)

refund-demo :; npx hardhat run --network $(network) refund --amount $(amount) --oracle FakedOracle
refund-demo :; npx hardhat --network $(network) refund --amount $(amount) --oracle FakedOracle

onRegister :; npx hardhat run --network $(network) refund --id $(id) --oracle $(oracle)
onRegister :; npx hardhat --network $(network) refund --id $(id) --oracle $(oracle)

onRegister-demo :; npx hardhat run --network $(network) refund --id $(id) --oracle FakedOracle
onRegister-demo :; npx hardhat --network $(network) refund --id $(id) --oracle FakedOracle

eth?=0.001

Expand Down

0 comments on commit 4384c72

Please sign in to comment.