You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we have many symbol names containing the word eth referring to the Ethereum L1. ETH is the symbol for the Ether token, while Ethereum is the correct name for the network.
We should use something like l1 and l2 to refer to the blockchain layers, and use eth only when we are talking about the token.
As an example:
ZKSWallet.eth_balance() returns the ETH balance on the layer-1.
ZKSWallet.era_balance() returns the ETH balance for the layer-2.
ZKSWallet.eth_provider is a layer-1 middleware, not something that provides Ether.
The text was updated successfully, but these errors were encountered:
Currently, we have many symbol names containing the word
eth
referring to the Ethereum L1. ETH is the symbol for the Ether token, while Ethereum is the correct name for the network.We should use something like
l1
andl2
to refer to the blockchain layers, and useeth
only when we are talking about the token.As an example:
ZKSWallet.eth_balance()
returns the ETH balance on the layer-1.ZKSWallet.era_balance()
returns the ETH balance for the layer-2.ZKSWallet.eth_provider
is a layer-1 middleware, not something that provides Ether.The text was updated successfully, but these errors were encountered: