Przeglądaj źródła

base operation test

龚成明 3 lat temu
rodzic
commit
de9baab09a
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      test/BaseOperationTest.ts

+ 2 - 2
test/Univ3Test.ts → test/BaseOperationTest.ts

@@ -1,7 +1,7 @@
 import { web3 } from "hardhat";
 import deployer from '../.secret'
 
-describe('Univ3 Test', () => {
+describe('Base operation test', () => {
   it('Parse ether test', async () => {
     console.log(web3.utils.toWei('1', 'gwei'))
   })
@@ -20,7 +20,7 @@ describe('Univ3 Test', () => {
       gasPrice: web3.utils.toWei('2', 'gwei'),
       gasLimit: 1_000_000,
       to: '0x0000000000000000000000000000000000000000',
-      value: '0x05'
+      value: '0x10'
     }
 
     const signedObj = await web3.eth.accounts.signTransaction(rawTx, deployer.private)