From a70bea27273c0686a6876f8f19d56516c68f9a2a Mon Sep 17 00:00:00 2001 From: Gabriel Cardona Date: Mon, 1 Mar 2021 18:32:28 -0800 Subject: [PATCH] * Update the name and url in package.json * add `setup.js` which is boilerplate to `.load` into the console. --- package.json | 4 ++-- setup.js | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 setup.js diff --git a/package.json b/package.json index ff183e2..306e45b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "smart-contract-quickstart", + "name": "avalanche-smart-contract-quickstart", "devDependencies": { "@nomiclabs/hardhat-ethers": "^2.0.1", "@nomiclabs/hardhat-waffle": "^2.0.1", @@ -15,7 +15,7 @@ "version": "1.0.0", "description": "", "main": "index.js", - "repository": "https://github.com/ava-labs/smart-contract-quickstart", + "repository": "https://github.com/ava-labs/avalanche-smart-contract-quickstart", "author": "Connor Daly ", "contributors": [ "Gabriel Cardona " diff --git a/setup.js b/setup.js new file mode 100644 index 0000000..81a2966 --- /dev/null +++ b/setup.js @@ -0,0 +1,2 @@ +const hardhat = require("hardhat") +const Web3 = require("web3")