forked from wealdtech/go-ens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reverseregistrar.go
84 lines (73 loc) · 2.5 KB
/
reverseregistrar.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
76
77
78
79
80
81
82
83
84
// Copyright 2017-2019 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 ens
import (
"errors"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/wealdtech/go-ens/v3/contracts/reverseregistrar"
)
// ReverseRegistrar is the structure for the reverse registrar.
type ReverseRegistrar struct {
Contract *reverseregistrar.Contract
ContractAddr common.Address
}
var registryAddress map[ChainId]string = map[ChainId]string{
EthereumMainnet: "addr.reverse",
BaseMainnet: "80002105.reverse",
}
func getRegistryAddress(chainId ChainId) string {
n, ok := registryAddress[chainId]
if !ok {
n = "addr.reverse"
}
return n
}
// NewReverseRegistrar obtains the reverse registrar.
func NewReverseRegistrar(backend bind.ContractBackend, chainId ChainId) (*ReverseRegistrar, error) {
registry, err := NewRegistry(backend, chainId)
if err != nil {
return nil, err
}
// Obtain the registry address from the registrar.
n := getRegistryAddress(chainId)
address, err := registry.Owner(n)
if err != nil {
return nil, err
}
if address == UnknownAddress {
return nil, errors.New("no registrar for that network")
}
return NewReverseRegistrarAt(backend, address)
}
// NewReverseRegistrarAt obtains the reverse registrar at a given address.
func NewReverseRegistrarAt(backend bind.ContractBackend, address common.Address) (*ReverseRegistrar, error) {
contract, err := reverseregistrar.NewContract(address, backend)
if err != nil {
return nil, err
}
return &ReverseRegistrar{
Contract: contract,
ContractAddr: address,
}, nil
}
// SetName sets the name.
func (r *ReverseRegistrar) SetName(opts *bind.TransactOpts, name string) (*types.Transaction, error) {
return r.Contract.SetName(opts, name)
}
// DefaultResolverAddress obtains the default resolver address.
func (r *ReverseRegistrar) DefaultResolverAddress() (common.Address, error) {
return r.Contract.DefaultResolver(nil)
}