Versions in this module Expand all Collapse all v0 v0.1.1 Mar 6, 2024 v0.1.0 Mar 1, 2024 Changes in this version + var ErrUnknownAddress = errors.New("address not found") + var ErrUnknownDomain = errors.New("domain not found") + type Client struct + func NewClient(infura config.Infura) (*Client, error) + func (c *Client) ResolveAddress(address string) (string, error) + func (c *Client) ResolveAddresses([]string) ([]models.ResolvedModel, error) + func (c *Client) ResolveDomain(domain string) (string, error) + func (c *Client) ResolveDomains([]string) ([]models.ResolvedModel, error)