“Web3.js Tuperials” Ответ

Web3.js Tuperials

const Web3 = require('web3')
const rpcURL = '' // Your RPC URL goes here
const web3 = new Web3(rpcURL)
const address = '' // Your account address goes here
web3.eth.getBalance(address, (err, wei) => {
  balance = web3.utils.fromWei(wei, 'ether')
})
Parshant Dayanand

Web3.js Tuperials

web3.eth.getBalance(address, (err, wei) => {
  balance = web3.utils.fromWei(wei, 'ether')
})
Parshant Dayanand

Ответы похожие на “Web3.js Tuperials”

Вопросы похожие на “Web3.js Tuperials”

Смотреть популярные ответы по языку

Смотреть другие языки программирования