Go-Ethereum

乙太坊地址驗證

  • October 24, 2018

目前,我正在使用 web.utils.isAddress 函式來檢查 ETH 地址是否有效。這樣對嗎?

提前致謝。

是的!如果您使用的是 web3 版本 1.x,那麼web3.utils.isAddress這是正確的方法。

https://web3js.readthedocs.io/en/1.0/web3-utils.html#isaddress

如果您使用的是 web3 的舊版本(0.2xx),那麼web3.isAddress這是確定給定十六進製字元串是否為有效乙太坊地址的正確方法。

https://github.com/ethereum/wiki/wiki/JavaScript-API#web3isaddress

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