91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在weex 中的引入Ethereum -web3.js

發布時間:2021-12-13 21:46:03 來源:億速云 閱讀:174 作者:柒染 欄目:互聯網科技

怎么在weex 中的引入Ethereum -web3.js ,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

<script>
require("babel-core/register");
require("babel-polyfill");
import Web3 from 'web3'

export default {
  name: "testWeb3",
  data() {
    return {
       web3: {},
       host: "http://127.0.0.1:7545", 
       address: '0x50b04982c7a08De4Fe3e9F34dcEC1b06b835aE13',
       nonce: '',
       balanceWei:null
    };
  },
  methods: {
     createWeb3 () {
        let web3 = new Web3()
        let provider = new Web3.providers.HttpProvider(this.host)
        web3.setProvider(provider)
        return web3
    }
  },
  created() {
      this.web3 = this.createWeb3();
      // if (!this.web3.currentProvider.connected) {
      //   throw new Error('請檢查區塊鏈的host或者interenet!')
      // }

      this.web3.eth.net.isListening((err, res) => {
          console.log(res)      
      });

     //測試
      this.web3.eth.net.isListening().then((data) =>{
          if(data){
            console.log('isconnected:',data)
           
          }
       }).catch( (err) => {
           throw new Error('請檢查區塊鏈的host或者interenet!')
       });
      

      //獲取當前 network ID
      this.web3.eth.net.getId((err, res) => {
          console.log(res)  //5777        
      });

      // 查看賬號列表
      this.web3.eth.getAccounts( (err,res) => {
       console.log("查看賬號列表:",res)
      })

      //查詢礦工賬號
      this.web3.eth.getCoinbase(
          function(error, result){ 
          if (error) {
              console.error(error);
          } else {
              console.log("查詢礦工賬號:",result); 
          }
      })
      
      // 獲得余額 方法一
      this.web3.eth.getBalance(this.coinbase ,(err, res) => {
          
          if(!err)  {
            let balance = this.web3.utils.fromWei(res, 'ether');
            console.log("this coinbase1: ",this.coinbase )  
            console.log("getBalance1:",balance)   //100
            this.balanceWei = balance
          }else{
             console.log(err);
          }
        
      });

      // 獲得余額 方法二
       let _self = this;
       async function getBalance (coinbase){
            try{
                let rs = await _self.web3.eth.getBalance(coinbase);
                return rs;
            } catch(err){
                console.error("error:",err);
            }
        }
      getBalance(this.coinbase).then(res => console.log('this.coinbase的余額:',res));
      //100000000000000000000;

      //新建賬戶
      let newAccount = this.web3.eth.accounts.create();
      console.log("新建賬戶:",newAccount)
    
      let info = this.web3.eth.accounts.encrypt(newAccount.privateKey, '12345678');
      console.log("新建賬戶的encrypt 信息:",info);

     //新建賬戶 personal.newAccount 
      this.web3.eth.personal.newAccount('!@superpassword', (err, res) => {
            let newAddress  = res;   
            console.log('personal創建的新賬戶:',newAddress)
            //賬戶解鎖
           this.web3.eth.personal.unlockAccount(newAddress, "!@superpassword",(err, res) => {
              console.log(newAddress+"解鎖成功否:",res)  //true
           });         
     });
    
      // 查看賬號列表
      this.web3.eth.getAccounts( (err,res) => {
       console.log("查看賬號列表:",res)
      });
     
    
      
    
  }
};
</script>

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

全州县| 龙州县| 清徐县| 新邵县| 武威市| 亚东县| 铜梁县| 平远县| 宁化县| 根河市| 惠州市| 定远县| 宣威市| 鄄城县| 科技| 沐川县| 登封市| 房产| 集安市| 吉木乃县| 临海市| 丰顺县| 项城市| 永寿县| 孝感市| 上高县| 汝阳县| 简阳市| 宜川县| 兴海县| 长顺县| 惠安县| 高清| 牡丹江市| 遂溪县| 枝江市| 巴彦淖尔市| 苗栗市| 平定县| 怀远县| 丰城市|