I saw there is an example of decoding token metadata in README:
borshDec := bin.NewBorshDecoder(resp.GetBinary())
var meta token_metadata.Metadata
err = borshDec.Decode(&meta)
if err != nil {
panic(err)
}
but I can't find the Metadata type, either in this repo or in metaplex-go repo.
I saw there is an example of decoding token metadata in README:
but I can't find the Metadata type, either in this repo or in metaplex-go repo.