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
Ethereum's chain list standard prefers dashes instead of underscores for naming the networks. We're currently using underscores, because dashes are interpreted as minus in javascript and you would need to put the network name inside quotes then. However, this seems to become standard in the Ethereum world, so make it consistent.
Replace:
emerald_mainnet -> emerald
emerald_testnet -> emerald-testnet
emerald_localnet -> emerald-localnet
sapphire_mainnet -> sapphire
sapphire_testnet -> sapphire-testnet
sapphire_localnet -> sapphire-localnet
Replace the network names in the truffle/hardhat configurations in the docs, sapphire-paratime, playground and all demo- repos.
The text was updated successfully, but these errors were encountered:
Ethereum's chain list standard prefers dashes instead of underscores for naming the networks. We're currently using underscores, because dashes are interpreted as minus in javascript and you would need to put the network name inside quotes then. However, this seems to become standard in the Ethereum world, so make it consistent.
Replace:
emerald_mainnet
->emerald
emerald_testnet
->emerald-testnet
emerald_localnet
->emerald-localnet
sapphire_mainnet
->sapphire
sapphire_testnet
->sapphire-testnet
sapphire_localnet
->sapphire-localnet
Replace the network names in the truffle/hardhat configurations in the docs, sapphire-paratime, playground and all
demo-
repos.The text was updated successfully, but these errors were encountered: