edd4864e39
There is no practical cases not to panic at contract update routine. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
package processing
|
|
|
|
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/gas"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/management"
|
|
"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 (
|
|
neofsContractKey = "neofsScriptHash"
|
|
|
|
multiaddrMethod = "alphabetAddress"
|
|
)
|
|
|
|
// OnNEP17Payment is a callback for NEP-17 compatible native GAS contract.
|
|
func OnNEP17Payment(from interop.Hash160, amount int, data interface{}) {
|
|
caller := runtime.GetCallingScriptHash()
|
|
if !common.BytesEqual(caller, []byte(gas.Hash)) {
|
|
panic("onNEP17Payment: processing contract accepts GAS only")
|
|
}
|
|
}
|
|
|
|
func _deploy(data interface{}, isUpdate bool) {
|
|
if isUpdate {
|
|
return
|
|
}
|
|
|
|
arr := data.([]interop.Hash160)
|
|
owner := arr[0]
|
|
addrNeoFS := arr[1]
|
|
|
|
ctx := storage.GetContext()
|
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
panic("only owner can reinitialize contract")
|
|
}
|
|
|
|
if len(addrNeoFS) != 20 {
|
|
panic("init: incorrect length of contract script hash")
|
|
}
|
|
|
|
storage.Put(ctx, common.OwnerKey, owner)
|
|
storage.Put(ctx, neofsContractKey, addrNeoFS)
|
|
|
|
runtime.Log("processing contract initialized")
|
|
}
|
|
|
|
// Update method updates contract source code and manifest. Can be invoked
|
|
// only by contract owner.
|
|
func Update(script []byte, manifest []byte, data interface{}) {
|
|
ctx := storage.GetReadOnlyContext()
|
|
|
|
if !common.HasUpdateAccess(ctx) {
|
|
panic("only owner can update contract")
|
|
}
|
|
|
|
contract.Call(interop.Hash160(management.Hash), "update", contract.All, script, manifest, data)
|
|
runtime.Log("processing contract updated")
|
|
}
|
|
|
|
// Verify method returns true if transaction contains valid multi signature of
|
|
// Alphabet nodes of the Inner Ring.
|
|
func Verify() bool {
|
|
ctx := storage.GetContext()
|
|
neofsContractAddr := storage.Get(ctx, neofsContractKey).(interop.Hash160)
|
|
multiaddr := contract.Call(neofsContractAddr, multiaddrMethod, contract.ReadOnly).(interop.Hash160)
|
|
|
|
return runtime.CheckWitness(multiaddr)
|
|
}
|
|
|
|
// Version returns version of the contract.
|
|
func Version() int {
|
|
return common.Version
|
|
}
|