Web3js

如何使用 web3js 將其放入 json 中?

  • October 8, 2018

我以 node(npm) 的形式使用 web3js。但我不知道如何提取從節點生成的一些數據。

有誰知道這個 web3js,所以結果可以更改為 json 形式?因為我需要這個,以便可以將生成的數據輸入到變數中,以便我可以將變數處理到程序中。

就像假設我使用 web3-eth-accounts 包如下(使用帶有 cmd 的節點):

var Accounts = require('web3-eth-accounts')
var accounts = new Accounts('https://rinkeby.infura.io/')
accounts.create()

來自節點的範例結果: 在此處輸入圖像描述

那麼,對於上面有沒有人知道要轉換成json形式?

var Accounts = require('web3-eth-accounts')
var accounts = new Accounts('https://rinkeby.infura.io/')
var account = accounts.create()

console.log(account.address, account.privateKey)

引用自:https://ethereum.stackexchange.com/questions/60195