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-03-24 08:00:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/ledger"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/neo"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/native/roles"
|
2021-04-29 13:02:33 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
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
|
|
|
}
|
|
|
|
|
2021-04-29 13:02:33 +00:00
|
|
|
const irListMethod = "innerRingList"
|
|
|
|
|
|
|
|
// InnerRingInvoker returns public key of inner ring node that invoked contract.
|
|
|
|
// Work around for environments without notary support.
|
2022-03-21 11:01:45 +00:00
|
|
|
func InnerRingInvoker(ir []interop.PublicKey) interop.PublicKey {
|
2021-04-29 13:02:33 +00:00
|
|
|
for i := 0; i < len(ir); i++ {
|
|
|
|
node := ir[i]
|
2022-03-21 11:01:45 +00:00
|
|
|
if runtime.CheckWitness(node) {
|
|
|
|
return node
|
2021-04-29 13:02:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-24 08:00:35 +00:00
|
|
|
// InnerRingNodes return list of inner ring nodes from state validator role
|
|
|
|
// in side chain.
|
2022-03-21 11:01:45 +00:00
|
|
|
func InnerRingNodes() []interop.PublicKey {
|
2021-03-24 08:00:35 +00:00
|
|
|
blockHeight := ledger.CurrentIndex()
|
2022-03-21 11:01:45 +00:00
|
|
|
return roles.GetDesignatedByRole(roles.NeoFSAlphabet, uint32(blockHeight+1))
|
2021-03-24 08:00:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 13:02:33 +00:00
|
|
|
// InnerRingNodesFromNetmap gets list of inner ring through
|
|
|
|
// calling "innerRingList" method of smart contract.
|
|
|
|
// Work around for environments without notary support.
|
2022-03-21 11:01:45 +00:00
|
|
|
func InnerRingNodesFromNetmap(sc interop.Hash160) []interop.PublicKey {
|
|
|
|
nodes := contract.Call(sc, irListMethod, contract.ReadOnly).([]IRNode)
|
|
|
|
pubs := []interop.PublicKey{}
|
|
|
|
for i := range nodes {
|
|
|
|
pubs = append(pubs, nodes[i].PublicKey)
|
|
|
|
}
|
|
|
|
return pubs
|
2021-04-29 13:02:33 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 08:00:35 +00:00
|
|
|
// AlphabetNodes return list of alphabet nodes from committee in side chain.
|
2022-03-21 11:01:45 +00:00
|
|
|
func AlphabetNodes() []interop.PublicKey {
|
|
|
|
return neo.GetCommittee()
|
2021-03-24 08:00:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AlphabetAddress returns multi address of alphabet public keys.
|
|
|
|
func AlphabetAddress() []byte {
|
|
|
|
alphabet := neo.GetCommittee()
|
|
|
|
return Multiaddress(alphabet, false)
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:05:49 +00:00
|
|
|
// CommitteeAddress returns multi address of committee.
|
|
|
|
func CommitteeAddress() []byte {
|
|
|
|
committee := neo.GetCommittee()
|
|
|
|
return Multiaddress(committee, true)
|
|
|
|
}
|
|
|
|
|
2021-03-24 08:00:35 +00:00
|
|
|
// Multiaddress returns default multi signature account address for N keys.
|
|
|
|
// If committee set to true, then it is `M = N/2+1` committee account.
|
|
|
|
func Multiaddress(n []interop.PublicKey, committee bool) []byte {
|
2021-03-25 17:57:46 +00:00
|
|
|
threshold := len(n)*2/3 + 1
|
2021-03-24 08:00:35 +00:00
|
|
|
if committee {
|
|
|
|
threshold = len(n)/2 + 1
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:05:49 +00:00
|
|
|
return contract.CreateMultisigAccount(threshold, n)
|
2021-03-24 08:00:35 +00:00
|
|
|
}
|