2021-07-04 11:00:56 +00:00
|
|
|
package proxy
|
2021-02-19 14:47:41 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
2021-06-30 10:59:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/contract"
|
2021-02-19 14:47:41 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/gas"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/management"
|
2021-03-24 08:12:44 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/neo"
|
2021-02-19 14:47:41 +00:00
|
|
|
"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 (
|
|
|
|
netmapContractKey = "netmapScriptHash"
|
|
|
|
)
|
|
|
|
|
2021-07-07 15:34:03 +00:00
|
|
|
// OnNEP17Payment is a callback for NEP-17 compatible native GAS contract.
|
2021-02-19 14:47:41 +00:00
|
|
|
func OnNEP17Payment(from interop.Hash160, amount int, data interface{}) {
|
|
|
|
caller := runtime.GetCallingScriptHash()
|
|
|
|
if !common.BytesEqual(caller, []byte(gas.Hash)) {
|
2021-04-20 14:45:22 +00:00
|
|
|
panic("onNEP17Payment: proxy contract accepts GAS only")
|
2021-02-19 14:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-12 08:31:07 +00:00
|
|
|
func _deploy(data interface{}, isUpdate bool) {
|
2021-06-03 07:49:07 +00:00
|
|
|
if isUpdate {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-12 08:31:07 +00:00
|
|
|
args := data.([]interface{})
|
|
|
|
owner := args[0].(interop.Hash160)
|
|
|
|
addrNetmap := args[1].(interop.Hash160)
|
|
|
|
|
2021-03-09 19:15:58 +00:00
|
|
|
ctx := storage.GetContext()
|
|
|
|
|
2021-02-19 14:47:41 +00:00
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
|
|
panic("only owner can reinitialize contract")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(addrNetmap) != 20 {
|
|
|
|
panic("init: incorrect length of contract script hash")
|
|
|
|
}
|
|
|
|
|
|
|
|
storage.Put(ctx, common.OwnerKey, owner)
|
|
|
|
storage.Put(ctx, netmapContractKey, addrNetmap)
|
|
|
|
|
|
|
|
runtime.Log("proxy contract initialized")
|
|
|
|
}
|
|
|
|
|
2021-07-07 15:34:03 +00:00
|
|
|
// Migrate method updates contract source code and manifest. Can be invoked
|
|
|
|
// only by contract owner.
|
2021-06-03 07:49:07 +00:00
|
|
|
func Migrate(script []byte, manifest []byte, data interface{}) bool {
|
2021-03-09 19:15:58 +00:00
|
|
|
ctx := storage.GetReadOnlyContext()
|
|
|
|
|
2021-02-19 14:47:41 +00:00
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
|
|
runtime.Log("only owner can update contract")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-06-30 10:59:32 +00:00
|
|
|
contract.Call(interop.Hash160(management.Hash), "update", contract.All, script, manifest, data)
|
2021-02-19 14:47:41 +00:00
|
|
|
runtime.Log("proxy contract updated")
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-07-07 15:34:03 +00:00
|
|
|
// Verify method returns true if transaction contains valid multi signature of
|
|
|
|
// Alphabet nodes of the Inner Ring.
|
2021-02-19 14:47:41 +00:00
|
|
|
func Verify() bool {
|
2021-03-24 08:12:44 +00:00
|
|
|
alphabet := neo.GetCommittee()
|
|
|
|
sig := common.Multiaddress(alphabet, false)
|
2021-03-09 19:15:58 +00:00
|
|
|
|
2021-03-10 14:01:57 +00:00
|
|
|
if !runtime.CheckWitness(sig) {
|
2021-03-24 08:12:44 +00:00
|
|
|
sig = common.Multiaddress(alphabet, true)
|
2021-03-10 14:01:57 +00:00
|
|
|
return runtime.CheckWitness(sig)
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2021-02-19 14:47:41 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 15:34:03 +00:00
|
|
|
// Version returns version of the contract.
|
2021-02-19 14:47:41 +00:00
|
|
|
func Version() int {
|
2021-07-29 11:44:53 +00:00
|
|
|
return common.Version
|
2021-02-19 14:47:41 +00:00
|
|
|
}
|