forked from TrueCloudLab/neoneo-go
7b4ca57e33
NEO3 uses new prefix for address (53 = 0x35), thus string representations as well as encrypted WIFs should be changed.
44 lines
973 B
Go
44 lines
973 B
Go
package runtimecontract
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/util"
|
|
)
|
|
|
|
// Check if the invoker of the contract is the specified owner
|
|
var owner = util.FromAddress("Nis7Cu1Qn6iBb8kbeQ5HgdZT7AsQPqywTC")
|
|
|
|
// Main is something to be ran from outside.
|
|
func Main(operation string, args []interface{}) bool {
|
|
trigger := runtime.GetTrigger()
|
|
|
|
// Log owner upon Verification trigger
|
|
if trigger == runtime.Verification() {
|
|
if runtime.CheckWitness(owner) {
|
|
runtime.Log("Verified Owner")
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Discerns between log and notify for this test
|
|
if trigger == runtime.Application() {
|
|
return handleOperation(operation, args)
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func handleOperation(operation string, args []interface{}) bool {
|
|
if operation == "log" {
|
|
message := args[0].(string)
|
|
runtime.Log(message)
|
|
return true
|
|
}
|
|
|
|
if operation == "notify" {
|
|
runtime.Notify(args[0])
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|