# Ethers.js极简入门

By [WODECHE](https://paragraph.com/@wodeche-2) · 2023-02-16

---

运行环境 playcode

HelloVitalik.js 查询V神的钱包ETH余额

    import {ethers} from "ethers";
    const provider = ethers.getDefaultProvider();
    const main = async() =>{
        const balance = await provider.getBalance(`vitalik.eth`);
        console.log(`V神的钱包余额为：${ethers.utils.formatEther(balance)}ETH`);
    }
    main()

---

*Originally published on [WODECHE](https://paragraph.com/@wodeche-2/ethers-js)*
