Naming problem with Ether

Wouldn’t it make more sense if Ethereum was named Ethereum and not Ether, so as to be compatible with other services such as coingecko? right now I’m having to patch the output of getAllERC20 like this ;

Preformatted text

async getUsersTokens(address,chain = 'Eth'){

		let tokens = await Moralis.Web3.getAllERC20({chain:chain,address:address})

     	tokens.forEach(token =>{

			if (token.name == 'Ether')
			{
				token.name = 'Ethereum'
			}

		})

		return tokens
	},

Makes sense, the correct name is Ether though :sweat_smile:
We will consider changing thanks