-
Ganache또는 Ganache-cli를 localhost에 가동 후 account를 넣어서 조회한 Ex
const Web3 = require('web3'); let w3ht = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); async function Afunc() { let balance = await w3ht.eth.getBalance('0x80457210257e06B7693DBdB33EE90442f4e29276'); console.log(balance); }; Afunc();
'Blockchain' 카테고리의 다른 글
Ethereum Block 최대 GAS 용량 (0) 2023.01.28 Ethereum GAS Limit, GAS Price, Block GAS Limit, Total fee (0) 2023.01.28 Ethereum network 정보 사이트 (0) 2023.01.28 Ethereum network node의 ip와 port (0) 2023.01.28 Remix 에서 Abi 얻기 (0) 2023.01.08 Remix Ganache 연결 (0) 2023.01.08 Metamask 계정 다시 만들기(지갑 초기화) (0) 2023.01.08 Metamask Ganache 연결 (0) 2023.01.08