Ether

乙太幣的最小單位是10^-18嗎?

  • July 24, 2021

如何檢查?程式碼是公開的嗎?

是的。又叫魏。ETH上有幾個子單元,最小的一個是WEI,等於10^-18 ETH

您可以從這裡了解所有具有價值的子單元, https://etherchain.org/tools/unitConverter

幫助自己。

是的,程式碼是公開的:

const (
   Wei   = 1
   GWei  = 1e9
   Ether = 1e18
)

https://github.com/ethereum/go-ethereum/blob/a1f16bc74c7efb593db2982c92222d1e4a201c25/params/denomination.go#L24

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