web3js

    1熱度

    1回答

    我想將web3安裝到我的移動應用程序項目中。 但是我在訪問時遇到了一些問題,沒有一個紅色的屏幕說我不能訪問它們中的這些文件。我試圖手動更新路徑等。 我所做的是在我的應用程序文件夾:npm install web3 然後我看到node_modules夾在我的應用程序目錄...但是,我不能要求在該模塊中我index.js與文件一個簡單的: var Web3 = require('web3'); //

    0熱度

    2回答

    當前我正在使用web3j在我的私人區塊鏈中創建一個帳戶。 像: Web3j web3 = Web3j.build(new HttpService()); Web3ClientVersion web3ClientVersion; String walletFileName = WalletUtils.generateFullNewWalletFile("password",new Fi

    1熱度

    1回答

    美好的一天, 我正在寫一個節點API來暴露我的區塊鏈上的方法(部署和測試松露)。我使用web3.js,ethereumjs-tx,ethereum,松露和堅實作爲我的技術堆棧。 var txMethodData = masterKeyContract.myMethod.getData(myParams); 交易PARAMS是: const txParams = { nonce: we

    0熱度

    1回答

    我試圖獲取部署的HelloWorld協議在節點應用程序中運行。我想運行call()函數來檢查它像這樣: const deployed = helloWorldContract.new({ from: acct1, data: compiled.contracts[':HelloWorld'].bytecode, gas: 151972, gasPrice:

    3熱度

    1回答

    我想使用帶有節點和vuejs的web3連接到以太坊奇偶校驗節點。 我正在使用vue-cli和webpack。 奇偶校驗在本地主機上運行。 當我訪問http://localhost:8545我看到哪個告訴我Parity正在收聽。 我創建了以下Vue的組件: <template> <div class="hello"> <h1>{{ title }}</h1> <h2>{

    0熱度

    1回答

    上下文:我想使用塊在頁面上呈現identicon,我從web3獲取defaultAccount,因此,用戶必須使用選定的內容登錄到metamask從他的錢包地址。 問題:Web應用程序似乎未檢測到頁面加載事件上的web3對象,因此wchih是檢測它的推薦位置。 代碼:下面是建議的啓發: https://github.com/MetaMask/metamask-plugin/issues/1158

    1熱度

    1回答

    這是我正在嘗試的可靠代碼。編譯代碼工作正常。但是,當我通過JavaScript調用函數send()時,它會拋出異常:拋出新的錯誤('無效地址'); pragma solidity ^0.4.6; contract Agreement { address owner; address seller; uint amount; function Agreem

    1熱度

    2回答

    智能合約是否有可能查看過去完成的交易,換句話說,智能合約有可能自成立以來查看誰發送了Ether?

    0熱度

    1回答

    這是我在我的私人網絡 contract AB { /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; /* Initializes contract with initial supply tokens to the creator

    0熱度

    2回答

    這是我簡單的合同 contract Test { /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; /* Initializes contract with initial supply tokens to the creator