truffle 部署到测试网

1、安装这个

npm install @truffle/hdwallet-provider

 然后发现报错的话试试下面这个

npm i @truffle/hdwallet-provider@next

2、在 truffle-config.js 文件添加火币测试网

hecotest:{
  provider: () => new HDWalletProvider
(['私钥'],

'https://http-testnet.hecochain.com'), netword_id: '256', },

上面那个私钥在 https://vanity-eth.tk/ 里面 generate 然后导入小狐狸钱包就可以了

3、然后再编译 

truffle compile

4、部署

truffle migrate --network hecotest

完成就可以看到

               

 

 在测试网上,通过上面图里面的 contract Address 可以在 https://testnet.hecoinfo.com/ 查到部署的合约地址

      

 

posted @ 2022-06-14 19:46  apeNote  阅读(133)  评论(0编辑  收藏  举报