mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 13:58:05 +00:00
31 lines
597 B
Go
31 lines
597 B
Go
|
package standard
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
||
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
||
|
)
|
||
|
|
||
|
var decimalTokenBase = &Standard{
|
||
|
Manifest: manifest.Manifest{
|
||
|
ABI: manifest.ABI{
|
||
|
Methods: []manifest.Method{
|
||
|
{
|
||
|
Name: "decimals",
|
||
|
ReturnType: smartcontract.IntegerType,
|
||
|
Safe: true,
|
||
|
},
|
||
|
{
|
||
|
Name: "symbol",
|
||
|
ReturnType: smartcontract.StringType,
|
||
|
Safe: true,
|
||
|
},
|
||
|
{
|
||
|
Name: "totalSupply",
|
||
|
ReturnType: smartcontract.IntegerType,
|
||
|
Safe: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|