core: add NEP11 to nonfungible supported standards list

This commit is contained in:
Anna Shaleva 2021-04-26 17:56:02 +03:00
parent b0e8e37b99
commit 0632e15f06

View file

@ -67,6 +67,7 @@ func newNonFungible(name string, id int32, symbol string, decimals byte) *nonfun
return new(state.NFTTokenState)
},
}
n.Manifest.SupportedStandards = []string{manifest.NEP11StandardName}
desc := newDescriptor("symbol", smartcontract.StringType)
md := newMethodAndPrice(n.symbol, 0, callflag.NoneFlag)