chore: remove scripts

This commit is contained in:
PacificYield
2024-11-21 16:36:07 +01:00
parent 2ff952e8e0
commit 8b7b040963
2 changed files with 0 additions and 35 deletions

View File

@@ -1,25 +0,0 @@
import { ethers } from 'hardhat';
async function main() {
const currentTimestampInSeconds = Math.round(Date.now() / 1000);
const unlockTime = currentTimestampInSeconds + 60;
const lockedAmount = ethers.parseEther('0.001');
const lock = await ethers.deployContract('Lock', [unlockTime], {
value: lockedAmount,
});
await lock.waitForDeployment();
console.log(
`Lock with ${ethers.formatEther(lockedAmount)}ETH and unlock timestamp ${unlockTime} deployed to ${lock.target}`,
);
}
// We recommend this pattern to be able to use async/await everywhere
// and properly handle errors.
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});

View File

@@ -1,10 +0,0 @@
#!/bin/bash
# Alice
npm run fhevm:faucet
sleep 8
npm run fhevm:faucet:bob
sleep 8
npm run fhevm:faucet:carol