Documentation ¶
Index ¶
- Variables
- func EnsNode(name string) common.Hash
- type ENS
- func (self *ENS) Addr(name string) (common.Address, error)
- func (self *ENS) Register(name string) (*types.Transaction, error)
- func (self *ENS) Resolve(name string) (common.Hash, error)
- func (self *ENS) SetAddr(name string, addr common.Address) (*types.Transaction, error)
- func (self *ENS) SetContentHash(name string, hash common.Hash) (*types.Transaction, error)
Constants ¶
This section is empty.
Variables ¶
var ( MainNetAddress = common.HexToAddress("0x314159265dD8dbb310642f98f50C066173C1259b") TestNetAddress = common.HexToAddress("0x112234455c3a32fd11230c42e7bccd4a84e02010") )
Functions ¶
Types ¶
type ENS ¶
type ENS struct { *contract.ENSSession // contains filtered or unexported fields }
swarm domain name registry and resolver
func DeployENS ¶
func DeployENS(transactOpts *bind.TransactOpts, contractBackend bind.ContractBackend) (common.Address, *ENS, error)
DeployENS deploys an instance of the ENS nameservice, with a 'first-in, first-served' root registrar.
func NewENS ¶
func NewENS(transactOpts *bind.TransactOpts, contractAddr common.Address, contractBackend bind.ContractBackend) (*ENS, error)
NewENS creates a struct exposing convenient high-level operations for interacting with the Ethereum Name Service.
func (*ENS) Addr ¶ added in v1.8.17
Addr is a non-transactional call that returns the address associated with a name.
func (*ENS) Register ¶
func (self *ENS) Register(name string) (*types.Transaction, error)
Register registers a new domain name for the caller, making them the owner of the new name. Only works if the registrar for the parent domain implements the FIFS registrar protocol.
func (*ENS) Resolve ¶
Resolve is a non-transactional call that returns the content hash associated with a name.
func (*ENS) SetAddr ¶ added in v1.8.17
SetAddress sets the address associated with a name. Only works if the caller owns the name, and the associated resolver implements a `setAddress` function.
func (*ENS) SetContentHash ¶
SetContentHash sets the content hash associated with a name. Only works if the caller owns the name, and the associated resolver implements a `setContent` function.