-
Notifications
You must be signed in to change notification settings - Fork 368
/
address.go
33 lines (26 loc) · 905 Bytes
/
address.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package types
import (
"fmt"
"github.com/ethereum/go-ethereum/common"
)
// InternalEVMAddress is a type alias of common.Address to represent an address
// on the Kava EVM.
type InternalEVMAddress struct {
common.Address
}
// NewInternalEVMAddress returns a new InternalEVMAddress from a common.Address.
func NewInternalEVMAddress(addr common.Address) InternalEVMAddress {
return InternalEVMAddress{
Address: addr,
}
}
// NewInternalEVMAddressFromString returns a new InternalEVMAddress from a hex
// string. Returns an error if hex string is invalid.
func NewInternalEVMAddressFromString(addrStr string) (InternalEVMAddress, error) {
if !common.IsHexAddress(addrStr) {
return InternalEVMAddress{}, fmt.Errorf("string is not a hex address %v", addrStr)
}
// common.HexToAddress ignores hex decoding errors
addr := common.HexToAddress(addrStr)
return NewInternalEVMAddress(addr), nil
}