2021-02-02 19:20:31 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/contract"
|
2021-02-04 07:22:54 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
2021-02-02 19:20:31 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/storage"
|
|
|
|
)
|
|
|
|
|
2021-02-19 14:47:41 +00:00
|
|
|
const (
|
|
|
|
irListMethod = "innerRingList"
|
|
|
|
multiaddrMethod = "multiaddress"
|
2021-03-10 14:01:57 +00:00
|
|
|
committeeMethod = "committee"
|
2021-02-19 14:47:41 +00:00
|
|
|
)
|
2021-02-02 19:20:31 +00:00
|
|
|
|
2021-02-04 07:22:54 +00:00
|
|
|
type IRNode struct {
|
2021-03-04 19:21:49 +00:00
|
|
|
PublicKey interop.PublicKey
|
2021-02-04 07:22:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InnerRingInvoker returns public key of inner ring node that invoked contract.
|
2021-03-04 19:21:49 +00:00
|
|
|
func InnerRingInvoker(ir []IRNode) interop.PublicKey {
|
2021-02-04 07:22:54 +00:00
|
|
|
for i := 0; i < len(ir); i++ {
|
|
|
|
node := ir[i]
|
|
|
|
if runtime.CheckWitness(node.PublicKey) {
|
|
|
|
return node.PublicKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-02 19:20:31 +00:00
|
|
|
// InnerRingList returns list of inner ring nodes through calling
|
|
|
|
// "innerRingList" method of smart contract.
|
|
|
|
//
|
|
|
|
// Address of smart contract is received from storage by key.
|
|
|
|
func InnerRingListViaStorage(ctx storage.Context, key interface{}) []IRNode {
|
2021-03-04 19:21:49 +00:00
|
|
|
sc := storage.Get(ctx, key).(interop.Hash160)
|
2021-02-02 19:20:31 +00:00
|
|
|
return InnerRingList(sc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InnerRingList gets list of inner ring through
|
|
|
|
// calling "innerRingList" method of smart contract.
|
|
|
|
func InnerRingList(sc interop.Hash160) []IRNode {
|
2021-02-08 15:32:38 +00:00
|
|
|
return contract.Call(sc, irListMethod, contract.ReadOnly).([]IRNode)
|
2021-02-02 19:20:31 +00:00
|
|
|
}
|
2021-02-19 14:47:41 +00:00
|
|
|
|
|
|
|
// InnerRingMultiAddressViaStorage returns multiaddress of inner ring public
|
|
|
|
// keys by invoking netmap contract, which scripthash stored in the contract
|
|
|
|
// storage by the key `key`.
|
|
|
|
func InnerRingMultiAddressViaStorage(ctx storage.Context, key interface{}) []byte {
|
2021-03-04 19:21:49 +00:00
|
|
|
sc := storage.Get(ctx, key).(interop.Hash160)
|
2021-02-19 14:47:41 +00:00
|
|
|
return InnerRingMultiAddress(sc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InnerRingMultiAddress returns multiaddress of inner ring public keys by
|
|
|
|
// invoking netmap contract.
|
|
|
|
func InnerRingMultiAddress(sc interop.Hash160) []byte {
|
|
|
|
return contract.Call(sc, multiaddrMethod, contract.ReadOnly).([]byte)
|
|
|
|
}
|
2021-03-10 14:01:57 +00:00
|
|
|
|
|
|
|
// CommitteeMultiAddressViaStorage returns multiaddress of committee public
|
|
|
|
// keys by invoking netmap contract, which scripthash stored in the contract
|
|
|
|
// storage by the key `key`.
|
|
|
|
func CommitteeMultiAddressViaStorage(ctx storage.Context, key interface{}) []byte {
|
|
|
|
sc := storage.Get(ctx, key).(interop.Hash160)
|
|
|
|
return CommitteeMultiAddress(sc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CommitteeMultiAddress returns multiaddress of committee public keys by
|
|
|
|
// invoking netmap contract.
|
|
|
|
func CommitteeMultiAddress(sc interop.Hash160) []byte {
|
|
|
|
return contract.Call(sc, committeeMethod, contract.ReadOnly).([]byte)
|
|
|
|
}
|