cfecb093a0
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
244 lines
5.7 KiB
Go
244 lines
5.7 KiB
Go
package alphabetcontract
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/contract"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/crypto"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/gas"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/management"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/neo"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/storage"
|
|
"github.com/nspcc-dev/neofs-contract/common"
|
|
)
|
|
|
|
const (
|
|
netmapKey = "netmapScriptHash"
|
|
proxyKey = "proxyScriptHash"
|
|
|
|
indexKey = "index"
|
|
totalKey = "threshold"
|
|
nameKey = "name"
|
|
|
|
notaryDisabledKey = "notary"
|
|
|
|
version = 1
|
|
)
|
|
|
|
// OnNEP17Payment is a callback for NEP-17 compatible native GAS and NEO contracts.
|
|
func OnNEP17Payment(from interop.Hash160, amount int, data interface{}) {
|
|
caller := runtime.GetCallingScriptHash()
|
|
if !common.BytesEqual(caller, []byte(gas.Hash)) && !common.BytesEqual(caller, []byte(neo.Hash)) {
|
|
panic("onNEP17Payment: alphabet contract accepts GAS and NEO only")
|
|
}
|
|
}
|
|
|
|
func _deploy(data interface{}, isUpdate bool) {
|
|
args := data.([]interface{})
|
|
notaryDisabled := args[0].(bool)
|
|
owner := args[1].(interop.Hash160)
|
|
addrNetmap := args[2].(interop.Hash160)
|
|
addrProxy := args[3].(interop.Hash160)
|
|
name := args[4].(string)
|
|
index := args[5].(int)
|
|
total := args[6].(int)
|
|
|
|
ctx := storage.GetContext()
|
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
panic("only owner can reinitialize contract")
|
|
}
|
|
|
|
if len(addrNetmap) != 20 || len(addrProxy) != 20 {
|
|
panic("incorrect length of contract script hash")
|
|
}
|
|
|
|
storage.Put(ctx, common.OwnerKey, owner)
|
|
storage.Put(ctx, netmapKey, addrNetmap)
|
|
storage.Put(ctx, proxyKey, addrProxy)
|
|
storage.Put(ctx, nameKey, name)
|
|
storage.Put(ctx, indexKey, index)
|
|
storage.Put(ctx, totalKey, total)
|
|
|
|
// initialize the way to collect signatures
|
|
storage.Put(ctx, notaryDisabledKey, notaryDisabled)
|
|
if notaryDisabled {
|
|
common.InitVote(ctx)
|
|
runtime.Log(name + " notary disabled")
|
|
}
|
|
|
|
runtime.Log(name + " contract initialized")
|
|
}
|
|
|
|
func Migrate(script []byte, manifest []byte) bool {
|
|
ctx := storage.GetReadOnlyContext()
|
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
runtime.Log("only owner can update contract")
|
|
return false
|
|
}
|
|
|
|
management.Update(script, manifest)
|
|
runtime.Log("alphabet contract updated")
|
|
|
|
return true
|
|
}
|
|
|
|
func Gas() int {
|
|
return gas.BalanceOf(runtime.GetExecutingScriptHash())
|
|
}
|
|
|
|
func Neo() int {
|
|
return neo.BalanceOf(runtime.GetExecutingScriptHash())
|
|
}
|
|
|
|
func currentEpoch(ctx storage.Context) int {
|
|
netmapContractAddr := storage.Get(ctx, netmapKey).(interop.Hash160)
|
|
return contract.Call(netmapContractAddr, "epoch", contract.ReadOnly).(int)
|
|
}
|
|
|
|
func name(ctx storage.Context) string {
|
|
return storage.Get(ctx, nameKey).(string)
|
|
}
|
|
|
|
func index(ctx storage.Context) int {
|
|
return storage.Get(ctx, indexKey).(int)
|
|
}
|
|
|
|
func checkPermission(ir []common.IRNode) bool {
|
|
ctx := storage.GetReadOnlyContext()
|
|
index := index(ctx) // read from contract memory
|
|
|
|
if len(ir) <= index {
|
|
return false
|
|
}
|
|
|
|
node := ir[index]
|
|
return runtime.CheckWitness(node.PublicKey)
|
|
}
|
|
|
|
func Emit() bool {
|
|
ctx := storage.GetReadOnlyContext()
|
|
notaryDisabled := storage.Get(ctx, notaryDisabledKey).(bool)
|
|
|
|
alphabet := common.AlphabetNodes()
|
|
if !checkPermission(alphabet) {
|
|
panic("invalid invoker")
|
|
}
|
|
|
|
contractHash := runtime.GetExecutingScriptHash()
|
|
|
|
neo.Transfer(contractHash, contractHash, neo.BalanceOf(contractHash), nil)
|
|
|
|
gasBalance := gas.BalanceOf(contractHash)
|
|
proxyAddr := storage.Get(ctx, proxyKey).(interop.Hash160)
|
|
|
|
proxyGas := gasBalance / 2
|
|
if proxyGas == 0 {
|
|
runtime.Log("no gas to emit")
|
|
return false
|
|
}
|
|
|
|
gas.Transfer(contractHash, proxyAddr, proxyGas, nil)
|
|
runtime.Log("utility token has been emitted to proxy contract")
|
|
|
|
var innerRing []common.IRNode
|
|
|
|
if notaryDisabled {
|
|
netmapContract := storage.Get(ctx, netmapKey).(interop.Hash160)
|
|
innerRing = common.InnerRingNodesFromNetmap(netmapContract)
|
|
} else {
|
|
innerRing = common.InnerRingNodes()
|
|
}
|
|
|
|
gasPerNode := gasBalance / 2 * 7 / 8 / len(innerRing)
|
|
|
|
if gasPerNode != 0 {
|
|
for _, node := range innerRing {
|
|
address := contract.CreateStandardAccount(node.PublicKey)
|
|
gas.Transfer(contractHash, address, gasPerNode, nil)
|
|
}
|
|
|
|
runtime.Log("utility token has been emitted to inner ring nodes")
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func Vote(epoch int, candidates []interop.PublicKey) {
|
|
ctx := storage.GetContext()
|
|
notaryDisabled := storage.Get(ctx, notaryDisabledKey).(bool)
|
|
index := index(ctx)
|
|
name := name(ctx)
|
|
|
|
var ( // for invocation collection without notary
|
|
alphabet []common.IRNode
|
|
nodeKey []byte
|
|
)
|
|
|
|
if notaryDisabled {
|
|
alphabet = common.AlphabetNodes()
|
|
nodeKey = common.InnerRingInvoker(alphabet)
|
|
if len(nodeKey) == 0 {
|
|
panic("invalid invoker")
|
|
}
|
|
} else {
|
|
multiaddr := common.AlphabetAddress()
|
|
if !runtime.CheckWitness(multiaddr) {
|
|
panic("invalid invoker")
|
|
}
|
|
}
|
|
|
|
curEpoch := currentEpoch(ctx)
|
|
if epoch != curEpoch {
|
|
panic("invalid epoch")
|
|
}
|
|
|
|
candidate := candidates[index%len(candidates)]
|
|
address := runtime.GetExecutingScriptHash()
|
|
|
|
if notaryDisabled {
|
|
threshold := len(alphabet)*2/3 + 1
|
|
id := voteID(epoch, candidates)
|
|
|
|
n := common.Vote(ctx, id, nodeKey)
|
|
if n < threshold {
|
|
return
|
|
}
|
|
|
|
common.RemoveVotes(ctx, id)
|
|
}
|
|
|
|
ok := neo.Vote(address, candidate)
|
|
if ok {
|
|
runtime.Log(name + ": successfully voted for validator")
|
|
} else {
|
|
runtime.Log(name + ": vote has been failed")
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func voteID(epoch interface{}, args []interop.PublicKey) []byte {
|
|
var (
|
|
result []byte
|
|
epochBytes = epoch.([]byte)
|
|
)
|
|
|
|
result = append(result, epochBytes...)
|
|
|
|
for i := range args {
|
|
result = append(result, args[i]...)
|
|
}
|
|
|
|
return crypto.Sha256(result)
|
|
}
|
|
|
|
func Name() string {
|
|
ctx := storage.GetReadOnlyContext()
|
|
return name(ctx)
|
|
}
|
|
|
|
func Version() int {
|
|
return version
|
|
}
|