Name
Get the name of the NFT collection (ERC-721 name()).
func Name(
contractAddress string,
) (name string, err error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
name, err := alchemy.Nft.Name(contractAddress)
}
Get the name of the NFT collection (ERC-721 name()).
func Name(
contractAddress string,
) (name string, err error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
name, err := alchemy.Nft.Name(contractAddress)
}