-
Notifications
You must be signed in to change notification settings - Fork 101
Description
I have a few questions/requests for clarification as to your specification
Amount.yaml
Amount is described as:
Amount is some Value of a Currency
Can it be changed to:
Amount is some Unit of Account
currency has legal implications, and strictly speaking, this is not entirely accurate for EVM chains as gas is the unit of account for EVM chains (typically) whereas ethereum
Account Identifier
currently reads:
- The account_identifier uniquely identifies an account within a network.
can it be expanded to fit a more approximate meaning of the word, as you can have a chain that uses the same derivation path in both instances but have assets in different addresses.
Also, can this be explicit in what it means as to what constitutes an "account"? Is it only EOA - Externally owned accounts only or can smart contract addresses be included with no distinction?
informative ref: eip1191.
example:
const hexChecksumChain = (name: string, coinType: number, chainId?: number) => ({
coinType, coinType,
decoder: decodeChecksummedHex, decoder: makeChecksummedHexDecoder(chainId),
encoder: encodeChecksummedHex, encoder: makeChecksummedHexEncoder(chainId),
name, name,
}); });example ref: ensdomains/address-encoder/commit/5bf53b13fa014646ea28c9e5f937361dc9b40590
Network Identifer.yaml
The network_identifier specifies which network a particular object is associated with.
"If a blockchain has a specific chain-id or network identifier, it
should go in this field."
Can we also provide an (optional) direct link to a repository containing the genesis file? This would be the least ambiguous as to
** Informative ** ethereum-listss/chains
Additional references and sources can be made available. A Java SDK would be trivial, I just would like to not have to make awkward choices if possible, these are the ones just most apparent.
Thank you.