체인의정석

hardhat에서 스마트컨트렉트 console 찍기 본문

블록체인/Ethers & web3

hardhat에서 스마트컨트렉트 console 찍기

체인의정석 2022. 2. 22. 15:12
728x90
반응형

https://hardhat.org/tutorial/debugging-with-hardhat-network.html

 

Ethereum development environment for professionals by Nomic Labs

Compile, deploy, test and debug your Ethereum software. Get Solidity stack traces, console.log, mainnet forking and more.

hardhat.org

pragma solidity ^0.6.0;

import "hardhat/console.sol";

contract Token {
  //...
}

테스트때 쓰려고 막상 찾으려니 찾는데 해메서 글로 올린다.

위와 같이 import를 선언하여 hardhat에서 테스트를 하면 스마트컨트렉트에 console log를 하여서 확인이 가능하다.

728x90
반응형
Comments