neo-go/examples/token/token.go

64 lines
1.4 KiB
Go
Raw Normal View History

package tokencontract
import (
"github.com/nspcc-dev/neo-go/examples/token/nep17"
"github.com/nspcc-dev/neo-go/pkg/interop"
"github.com/nspcc-dev/neo-go/pkg/interop/storage"
"github.com/nspcc-dev/neo-go/pkg/interop/util"
)
const (
decimals = 8
multiplier = 100000000
)
2020-08-10 10:42:02 +00:00
var (
owner = util.FromAddress("NbrUYaZgyhSkNoRo9ugRyEMdUZxrhkNaWB")
token nep17.Token
2020-08-10 10:42:02 +00:00
ctx storage.Context
)
// init initializes Token Interface and storage context for the Smart
2020-08-10 10:42:02 +00:00
// Contract to operate with
func init() {
token = nep17.Token{
Name: "Awesome NEO Token",
Symbol: "ANT",
Decimals: decimals,
Owner: owner,
TotalSupply: 11000000 * multiplier,
CirculationKey: "TokenCirculation",
}
2020-08-10 10:42:02 +00:00
ctx = storage.GetContext()
}
// Symbol returns the token symbol
func Symbol() string {
2020-08-10 10:42:02 +00:00
return token.Symbol
}
// Decimals returns the token decimals
func Decimals() int {
2020-08-10 10:42:02 +00:00
return token.Decimals
}
// TotalSupply returns the token total supply value
2020-08-10 10:42:02 +00:00
func TotalSupply() int {
return token.GetSupply(ctx)
}
// BalanceOf returns the amount of token on the specified address
func BalanceOf(holder interop.Hash160) int {
2020-08-10 10:42:02 +00:00
return token.BalanceOf(ctx, holder)
}
// Transfer token from one user to another
2020-11-19 15:01:42 +00:00
func Transfer(from interop.Hash160, to interop.Hash160, amount int, data interface{}) bool {
return token.Transfer(ctx, from, to, amount, data)
}
// Mint initial supply of tokens
func Mint(to interop.Hash160) bool {
2020-08-10 10:42:02 +00:00
return token.Mint(ctx, to)
}