Skip to content

Commit

Permalink
Improve docs around EVM address
Browse files Browse the repository at this point in the history
Signed-off-by: Miroslav Gatsanoga <[email protected]>
  • Loading branch information
MiroslavGatsanoga committed Nov 23, 2022
1 parent f423962 commit e676c94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions services/basic_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ message AccountID {
* address may be either the encoded form of the shard.realm.num or the keccak-256 hash of a ECDSA_SECP256K1 primitive key.
*
* If a transaction lazily-creates this account, a subsequent transaction will be required containing the public key bytes
* that map to the EVM address bytes.
* that map to the EVM address bytes. Lazy account creates will only support the keccak-256 hash of a ECDSA_SECP256K1 primitive key form.
*/
bytes evm_address = 5;
}
Expand Down Expand Up @@ -1597,7 +1597,7 @@ message StakingInfo {

message VirtualAddress {
/**
* The 20-byte EVM address.
* The 20-byte EVM address that is derived from the keccak-256 hash of a ECDSA_SECP256K1 primitive key.
*/
bytes address = 1;

Expand Down
2 changes: 1 addition & 1 deletion services/crypto_create.proto
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ message CryptoCreateTransactionBody {
AccountID auto_renew_account = 19;

/**
* EOA 20-byte address to create.
* EOA 20-byte address to create that is derived from the keccak-256 hash of a ECDSA_SECP256K1 primitive key.
*/
bytes evm_address = 20;
}

0 comments on commit e676c94

Please sign in to comment.