-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathens.go
More file actions
132 lines (112 loc) · 3.71 KB
/
ens.go
File metadata and controls
132 lines (112 loc) · 3.71 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Copyright 2017 Weald Technology Trading
//
// 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 ethrpc
import (
"context"
"fmt"
"strings"
"github.com/0xsequence/ethkit/go-ethereum/common"
"golang.org/x/crypto/sha3"
"golang.org/x/net/idna"
)
// TODO: Add a cachestore to cache the results of the ENS lookups
const ENSContractAddress = "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"
var p = idna.New(idna.MapForLookup(), idna.StrictDomainName(false), idna.Transitional(false))
func ResolveEnsAddress(ctx context.Context, ens string, provider *Provider) (common.Address, bool, error) {
// check if it's an address
ensAddress := common.HexToAddress(ens)
if ensAddress.Hex() == ens {
return ensAddress, true, nil
}
chainId, err := provider.ChainID(ctx)
if err != nil {
return common.Address{}, false, fmt.Errorf("ethrpc: failed to get chainId of the passed provider")
}
if chainId.Int64() != 1 {
return common.Address{}, false, fmt.Errorf("ethrpc: only ENS on mainnet is supported")
}
namehash, err := NameHash(ens)
if err != nil {
return common.Address{}, false, fmt.Errorf("ethrpc: failed to generate namehash: %w", err)
}
res, err := provider.contractQuery(ctx, ENSContractAddress, "resolver(bytes32)", "address", []interface{}{namehash})
if err != nil {
return common.Address{}, false, fmt.Errorf("ethrpc: failed to query resolver address: %w", err)
}
if len(res) < 1 {
return common.Address{}, false, nil
}
resolverAddress, ok := res[0].(common.Address)
if !ok || resolverAddress.Hex() == (common.Address{}).Hex() {
return common.Address{}, false, nil
}
res, err = provider.contractQuery(ctx, resolverAddress.Hex(), "addr(bytes32)", "address", []interface{}{namehash})
if err != nil {
return common.Address{}, false, fmt.Errorf("ethrpc: failed to query resolver address: %w", err)
}
if len(res) < 1 {
return common.Address{}, false, nil
}
contractAddress, ok := res[0].(common.Address)
if !ok || contractAddress.Hex() == (common.Address{}).Hex() {
return common.Address{}, false, nil
}
return contractAddress, true, nil
}
// NameHash generates a hash from a name that can be used to
// look up the name in ENS
func NameHash(name string) (hash [32]byte, err error) {
if name == "" {
return
}
normalizedName, err := Normalize(name)
if err != nil {
return
}
parts := strings.Split(normalizedName, ".")
for i := len(parts) - 1; i >= 0; i-- {
if hash, err = nameHashPart(hash, parts[i]); err != nil {
return
}
}
return
}
// Normalize normalizes a name according to the ENS rules
func Normalize(input string) (output string, err error) {
output, err = p.ToUnicode(input)
if err != nil {
return
}
// If the name started with a period then ToUnicode() removes it, but we want to keep it
if strings.HasPrefix(input, ".") && !strings.HasPrefix(output, ".") {
output = "." + output
}
return
}
func nameHashPart(currentHash [32]byte, name string) (hash [32]byte, err error) {
sha := sha3.NewLegacyKeccak256()
if _, err = sha.Write(currentHash[:]); err != nil {
return
}
nameSha := sha3.NewLegacyKeccak256()
if _, err = nameSha.Write([]byte(name)); err != nil {
return
}
nameHash := nameSha.Sum(nil)
if _, err = sha.Write(nameHash); err != nil {
return
}
sha.Sum(hash[:0])
return
}