Subscribe to Wild Hunch
Subscribe to Wild Hunch
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers


pretty easy to use and really like the command keyboard shortcut
Lots of tools and commands to choose from and bring life to the page
I’ve always been interested in using mathematics to make the world work better.
— Alvin E. Roth, American academic
Clap
Jump
Climb
Stretch
// scripts/deploy.js
async function main () {
// We get the contract to deploy
const Box = await ethers.getContractFactory('Box');
console.log('Deploying Box...');
const box = await Box.deploy();
await box.waitForDeployment();
console.log('Box deployed to:', await box.getAddress());
}
main()
.then(() => process.exit(0))
.catch(error => {
console.error(error);
process.exit(1);
});to
the
point
CATEGORY | GRADE |
|---|---|
Simplicity | A |
Power | A |
Ease | A |
Total | A |
pretty easy to use and really like the command keyboard shortcut
Lots of tools and commands to choose from and bring life to the page
I’ve always been interested in using mathematics to make the world work better.
— Alvin E. Roth, American academic
Clap
Jump
Climb
Stretch
// scripts/deploy.js
async function main () {
// We get the contract to deploy
const Box = await ethers.getContractFactory('Box');
console.log('Deploying Box...');
const box = await Box.deploy();
await box.waitForDeployment();
console.log('Box deployed to:', await box.getAddress());
}
main()
.then(() => process.exit(0))
.catch(error => {
console.error(error);
process.exit(1);
});to
the
point
CATEGORY | GRADE |
|---|---|
Simplicity | A |
Power | A |
Ease | A |
Total | A |
1 comment
nice post!