com.hedera.hashgraph.sdk.EvmAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
/*-
*
* Hedera Java SDK
*
* Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.hedera.hashgraph.sdk;
import com.google.protobuf.ByteString;
import com.google.protobuf.InvalidProtocolBufferException;
import com.hedera.hashgraph.sdk.proto.AccountID;
import org.bouncycastle.util.encoders.Hex;
import javax.annotation.Nonnegative;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.Objects;
import java.util.regex.Pattern;
/**
* The ID for a cryptocurrency account on Hedera.
*/
public final class EvmAddress extends Key {
private final byte[] bytes;
/**
* Constructor
*
* @param bytes the byte array representation of the address
*/
public EvmAddress(byte[] bytes) {
this.bytes = Arrays.copyOf(bytes, bytes.length);
}
/**
* Convert a string to an ethereum address.
*
* @param text the string
* @return the ethereum address
*/
public static EvmAddress fromString(String text) {
String address = text.startsWith("0x") ? text.substring(2) : text;
if (address.length() == 40) {
return new EvmAddress(Hex.decode(address));
}
return null;
}
@Nullable
static EvmAddress fromAliasBytes(ByteString aliasBytes) {
if (!aliasBytes.isEmpty() && aliasBytes.size() == 20) {
return new EvmAddress(aliasBytes.toByteArray());
}
return null;
}
/**
* Convert a byte array to an ethereum address.
*
* @param bytes the byte array
* @return the ethereum address
*/
public static EvmAddress fromBytes(byte[] bytes) {
return new EvmAddress(bytes);
}
@Override
com.hedera.hashgraph.sdk.proto.Key toProtobufKey() {
throw new UnsupportedOperationException("toProtobufKey() not implemented for EvmAddress");
}
public byte[] toBytes() {
return Arrays.copyOf(bytes, bytes.length);
}
@Override
public String toString() {
return Hex.toHexString(bytes);
}
@Override
public int hashCode() {
return Arrays.hashCode(bytes);
}
@Override
public boolean equals( Object o) {
if (this == o) {
return true;
}
if (!(o instanceof EvmAddress)) {
return false;
}
EvmAddress other = (EvmAddress) o;
return Arrays.equals(bytes, other.bytes);
}
}