Skip to main content

Symbol

Get the symbol of the NFT collection (ERC-721 symbol()).

func Symbol(
contractAddress string,
) (symbol string, err error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
symbol, err := alchemy.Nft.Symbol(contractAddress)
}