-
Notifications
You must be signed in to change notification settings - Fork 368
/
address.go
75 lines (61 loc) · 2.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package types
import (
"encoding/json"
"errors"
"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
}
// IsNil returns true when the address is the 0 address
func (a InternalEVMAddress) IsNil() bool {
return a.Address == common.Address{}
}
// NewInternalEVMAddress returns a new InternalEVMAddress from a common.Address.
func NewInternalEVMAddress(addr common.Address) InternalEVMAddress {
return InternalEVMAddress{
Address: addr,
}
}
// BytesToInternalEVMAddress creates an InternalEVMAddress from a slice of bytes
func BytesToInternalEVMAddress(bz []byte) InternalEVMAddress {
return NewInternalEVMAddress(common.BytesToAddress(bz))
}
// 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
}
// Equal checks if two InternalEVMAddress instances are equal.
func (addr InternalEVMAddress) Equal(other InternalEVMAddress) bool {
return addr.Address == other.Address
}
// MarshalTo implements the protobuf Marshaler interface.
func (addr InternalEVMAddress) MarshalTo(data []byte) (int, error) {
addressBytes := addr.Address.Bytes()
return copy(data, addressBytes[:]), nil
}
// MarshalJSON allows PrintProto to handle InternalEVMAddress
func (addr InternalEVMAddress) MarshalJSON() ([]byte, error) {
return json.Marshal(addr.Hex())
}
// Size implements protobuf Unmarshaler interface.
func (a InternalEVMAddress) Size() int {
return common.AddressLength
}
// Unmarshal implements the protobuf Unmarshaler interface.
func (addr *InternalEVMAddress) Unmarshal(data []byte) error {
if len(data) != common.AddressLength {
return errors.New("invalid data length for InternalEVMAddress")
}
addr.Address.SetBytes(data)
return nil
}