Commit bde6afc8 authored by Chris's avatar Chris
Browse files

wip on hardhat tutorial work

parent 9ffde43f
Loading
Loading
Loading
Loading

.gitmodules

0 → 100644
+3 −0
Original line number Diff line number Diff line
[submodule "hardhat-tutorial/hardhat-boilerplate"]
	path = hardhat-tutorial/hardhat-boilerplate
	url = https://github.com/NomicFoundation/hardhat-boilerplate.git
+3 −3
Original line number Diff line number Diff line
@@ -1357,12 +1357,12 @@
    "5777": {
      "events": {},
      "links": {},
      "address": "0xa7e41d3C8CEbB43d677d8fc519930455ED46e3F3",
      "transactionHash": "0x4a279d7e3f83e4e1ff88523dd2e0dc7700d236427a9fd667c859f48a98e290e1"
      "address": "0xDeD7e49d56FC1F21e3E9771a93d03BCeF321E0Ed",
      "transactionHash": "0xc5048568041aba0b25523015e5a50c4a748fddb22787e752924433f00455a66c"
    }
  },
  "schemaVersion": "3.4.16",
  "updatedAt": "2024-10-26T17:20:07.004Z",
  "updatedAt": "2024-11-13T03:35:14.883Z",
  "networkType": "ethereum",
  "devdoc": {
    "kind": "dev",
+4 −4
Original line number Diff line number Diff line
@@ -3909,14 +3909,14 @@
    "5777": {
      "events": {},
      "links": {
        "ConvertLib": "0xa7e41d3C8CEbB43d677d8fc519930455ED46e3F3"
        "ConvertLib": "0xDeD7e49d56FC1F21e3E9771a93d03BCeF321E0Ed"
      },
      "address": "0xaaC3f0A6DCb663d2070760F3025EF1Baaf415d77",
      "transactionHash": "0x01d11b6ea9801b237b92a254a639b09581dc6582914d6435a77c2eea46fbcc92"
      "address": "0xcB8630c1923302d66aAEF4fF8C178131d65f650e",
      "transactionHash": "0x62e25eff5e61d4f64cf7eb5b65c64574a0efb8e0a196f598e58dcadaa899fdc7"
    }
  },
  "schemaVersion": "3.4.16",
  "updatedAt": "2024-10-26T17:20:07.006Z",
  "updatedAt": "2024-11-13T03:35:14.885Z",
  "networkType": "ethereum",
  "devdoc": {
    "kind": "dev",
+2 −0
Original line number Diff line number Diff line
const ConvertLib = artifacts.require("ConvertLib");
const MetaCoin = artifacts.require("MetaCoin");
const CMCoin = artifacts.require("CMCoin");

module.exports = function(deployer) {
  // This block is for deploying MetaCoin.
  deployer.deploy(ConvertLib);
  deployer.link(ConvertLib, MetaCoin);
  deployer.deploy(MetaCoin);