compiler: check supported standards

Check that emitted manifest complies with supported standards.
This can be made a separate flag.
This commit is contained in:
Evgenii Stratonikov 2020-11-24 13:38:24 +03:00
parent 279b769fa3
commit 25f1db6de0
7 changed files with 90 additions and 14 deletions

View file

@ -48,7 +48,7 @@ func TotalSupply() int {
}
// BalanceOf returns the amount of token on the specified address
func BalanceOf(holder interop.Hash160) interface{} {
func BalanceOf(holder interop.Hash160) int {
return token.BalanceOf(ctx, holder)
}
@ -58,6 +58,6 @@ func Transfer(from interop.Hash160, to interop.Hash160, amount int, data interfa
}
// Mint initial supply of tokens
func Mint(to []byte) bool {
func Mint(to interop.Hash160) bool {
return token.Mint(ctx, to)
}