| 12345678910111213141516171819202122 |
- import { web3 } from "hardhat";
- import deployer from '../.secret'
- const hre = require('hardhat')
- describe('Univ3 Test', () => {
- it('Parse ether test', async () => {
- console.log(web3.utils.toWei('1', 'gwei'))
- })
- it('Get block number test', async () => {
- console.log(await web3.eth.getBlockNumber())
- })
- it('Get balance test', async () => {
- console.log(hre.network)
- console.log(deployer)
- // console.log(await web3.eth.getBalance(accountList[0]))
- })
- it('Transfer test')
- })
|