github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/p/demo/grc/exts/token_metadata.gno (about) 1 package exts 2 3 type TokenMetadata interface { 4 // Returns the name of the token. 5 GetName() string 6 7 // Returns the symbol of the token, usually a shorter version of the 8 // name. 9 GetSymbol() string 10 11 // Returns the decimals places of the token. 12 GetDecimals() uint 13 }