2020-03-25 10:00:11 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
2020-07-13 09:59:41 +00:00
|
|
|
"crypto/elliptic"
|
2020-03-25 10:00:11 +00:00
|
|
|
"math/big"
|
|
|
|
"sort"
|
2020-05-29 08:02:26 +00:00
|
|
|
"strings"
|
2020-06-24 10:20:59 +00:00
|
|
|
"sync/atomic"
|
2020-03-25 10:00:11 +00:00
|
|
|
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/blockchainer"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/dao"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/runtime"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2020-06-23 15:30:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
2020-03-25 10:00:11 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-06-03 12:55:06 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-03-25 10:00:11 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NEO represents NEO native contract.
|
|
|
|
type NEO struct {
|
|
|
|
nep5TokenNative
|
|
|
|
GAS *GAS
|
2020-06-24 10:20:59 +00:00
|
|
|
|
|
|
|
validators atomic.Value
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-25 21:23:30 +00:00
|
|
|
// keyWithVotes is a serialized key with votes balance. It's not deserialized
|
|
|
|
// because some uses of it imply serialized-only usage and converting to
|
|
|
|
// PublicKey is quite expensive.
|
|
|
|
type keyWithVotes struct {
|
|
|
|
Key string
|
|
|
|
Votes *big.Int
|
|
|
|
}
|
2020-03-25 10:00:11 +00:00
|
|
|
|
2020-04-25 21:23:30 +00:00
|
|
|
const (
|
2020-07-22 16:03:05 +00:00
|
|
|
neoName = "NEO"
|
|
|
|
neoContractID = -1
|
2020-04-25 21:23:30 +00:00
|
|
|
// NEOTotalSupply is the total amount of NEO in the system.
|
|
|
|
NEOTotalSupply = 100000000
|
2020-08-03 08:43:51 +00:00
|
|
|
// prefixCandidate is a prefix used to store validator's data.
|
|
|
|
prefixCandidate = 33
|
2020-08-03 12:00:27 +00:00
|
|
|
// prefixVotersCount is a prefix for storing total amount of NEO of voters.
|
|
|
|
prefixVotersCount = 1
|
|
|
|
// effectiveVoterTurnout represents minimal ratio of total supply to total amount voted value
|
|
|
|
// which is require to use non-standby validators.
|
|
|
|
effectiveVoterTurnout = 5
|
2020-04-25 21:23:30 +00:00
|
|
|
)
|
|
|
|
|
2020-04-26 07:15:59 +00:00
|
|
|
var (
|
|
|
|
// nextValidatorsKey is a key used to store validators for the
|
|
|
|
// next block.
|
|
|
|
nextValidatorsKey = []byte{14}
|
|
|
|
)
|
|
|
|
|
2020-04-25 21:23:30 +00:00
|
|
|
// makeValidatorKey creates a key from account script hash.
|
|
|
|
func makeValidatorKey(key *keys.PublicKey) []byte {
|
|
|
|
b := key.Bytes()
|
|
|
|
// Don't create a new buffer.
|
|
|
|
b = append(b, 0)
|
|
|
|
copy(b[1:], b[0:])
|
2020-08-03 08:43:51 +00:00
|
|
|
b[0] = prefixCandidate
|
2020-04-25 21:23:30 +00:00
|
|
|
return b
|
|
|
|
}
|
2020-04-22 20:00:18 +00:00
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
// NewNEO returns NEO native contract.
|
|
|
|
func NewNEO() *NEO {
|
2020-05-14 18:01:56 +00:00
|
|
|
n := &NEO{}
|
2020-07-22 16:03:05 +00:00
|
|
|
nep5 := newNEP5Native(neoName)
|
2020-03-25 10:00:11 +00:00
|
|
|
nep5.symbol = "neo"
|
|
|
|
nep5.decimals = 0
|
|
|
|
nep5.factor = 1
|
2020-06-17 10:57:54 +00:00
|
|
|
nep5.onPersist = chainOnPersist(nep5.OnPersist, n.OnPersist)
|
2020-05-14 18:01:56 +00:00
|
|
|
nep5.incBalance = n.increaseBalance
|
2020-06-10 11:23:25 +00:00
|
|
|
nep5.ContractID = neoContractID
|
2020-03-25 10:00:11 +00:00
|
|
|
|
2020-05-14 18:01:56 +00:00
|
|
|
n.nep5TokenNative = *nep5
|
2020-06-29 07:36:44 +00:00
|
|
|
n.validators.Store(keys.PublicKeys(nil))
|
2020-03-25 10:00:11 +00:00
|
|
|
|
2020-06-17 10:57:54 +00:00
|
|
|
onp := n.Methods["onPersist"]
|
|
|
|
onp.Func = getOnPersistWrapper(n.onPersist)
|
|
|
|
n.Methods["onPersist"] = onp
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
desc := newDescriptor("unclaimedGas", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("account", smartcontract.Hash160Type),
|
|
|
|
manifest.NewParameter("end", smartcontract.IntegerType))
|
2020-06-17 13:50:13 +00:00
|
|
|
md := newMethodAndPrice(n.unclaimedGas, 3000000, smartcontract.AllowStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, true)
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
desc = newDescriptor("registerCandidate", smartcontract.BoolType,
|
2020-03-25 10:00:11 +00:00
|
|
|
manifest.NewParameter("pubkey", smartcontract.PublicKeyType))
|
2020-08-03 08:43:51 +00:00
|
|
|
md = newMethodAndPrice(n.registerCandidate, 5000000, smartcontract.AllowModifyStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, false)
|
|
|
|
|
|
|
|
desc = newDescriptor("vote", smartcontract.BoolType,
|
|
|
|
manifest.NewParameter("account", smartcontract.Hash160Type),
|
2020-08-03 12:00:27 +00:00
|
|
|
manifest.NewParameter("pubkey", smartcontract.PublicKeyType))
|
2020-06-17 13:50:13 +00:00
|
|
|
md = newMethodAndPrice(n.vote, 500000000, smartcontract.AllowModifyStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, false)
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
desc = newDescriptor("getCandidates", smartcontract.ArrayType)
|
|
|
|
md = newMethodAndPrice(n.getCandidatesCall, 100000000, smartcontract.AllowStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, true)
|
|
|
|
|
2020-08-03 12:00:27 +00:00
|
|
|
desc = newDescriptor("getСommittee", smartcontract.ArrayType)
|
|
|
|
md = newMethodAndPrice(n.getCommittee, 100000000, smartcontract.AllowStates)
|
|
|
|
n.AddMethod(md, desc, true)
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
desc = newDescriptor("getValidators", smartcontract.ArrayType)
|
2020-06-17 13:50:13 +00:00
|
|
|
md = newMethodAndPrice(n.getValidators, 100000000, smartcontract.AllowStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, true)
|
|
|
|
|
|
|
|
desc = newDescriptor("getNextBlockValidators", smartcontract.ArrayType)
|
2020-06-17 13:50:13 +00:00
|
|
|
md = newMethodAndPrice(n.getNextBlockValidators, 100000000, smartcontract.AllowStates)
|
2020-03-25 10:00:11 +00:00
|
|
|
n.AddMethod(md, desc, true)
|
|
|
|
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize initializes NEO contract.
|
|
|
|
func (n *NEO) Initialize(ic *interop.Context) error {
|
2020-04-22 20:00:18 +00:00
|
|
|
if err := n.nep5TokenNative.Initialize(ic); err != nil {
|
2020-03-25 10:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-03 11:31:42 +00:00
|
|
|
if n.nep5TokenNative.getTotalSupply(ic.DAO).Sign() != 0 {
|
2020-04-22 20:00:18 +00:00
|
|
|
return errors.New("already initialized")
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h, vs, err := getStandbyValidatorsHash(ic)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-04-22 20:00:18 +00:00
|
|
|
n.mint(ic, h, big.NewInt(NEOTotalSupply))
|
2020-03-25 10:00:11 +00:00
|
|
|
|
2020-08-03 12:00:27 +00:00
|
|
|
err = ic.DAO.PutStorageItem(n.ContractID, []byte{prefixVotersCount}, &state.StorageItem{Value: []byte{0}})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
for i := range vs {
|
2020-08-03 13:24:22 +00:00
|
|
|
if err := n.RegisterCandidateInternal(ic, vs[i]); err != nil {
|
2020-03-25 10:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnPersist implements Contract interface.
|
|
|
|
func (n *NEO) OnPersist(ic *interop.Context) error {
|
2020-07-11 09:29:06 +00:00
|
|
|
pubs, err := n.GetValidatorsInternal(ic.Chain, ic.DAO)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-04-26 10:42:05 +00:00
|
|
|
si := new(state.StorageItem)
|
|
|
|
si.Value = pubs.Bytes()
|
2020-06-18 10:50:30 +00:00
|
|
|
return ic.DAO.PutStorageItem(n.ContractID, nextValidatorsKey, si)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 18:28:37 +00:00
|
|
|
func (n *NEO) increaseBalance(ic *interop.Context, h util.Uint160, si *state.StorageItem, amount *big.Int) error {
|
|
|
|
acc, err := state.NEOBalanceStateFromBytes(si.Value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-04-26 09:51:17 +00:00
|
|
|
if amount.Sign() == -1 && acc.Balance.Cmp(new(big.Int).Neg(amount)) == -1 {
|
2020-03-25 10:00:11 +00:00
|
|
|
return errors.New("insufficient funds")
|
|
|
|
}
|
2020-04-23 18:28:37 +00:00
|
|
|
if err := n.distributeGas(ic, h, acc); err != nil {
|
2020-03-25 10:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-04-26 09:51:17 +00:00
|
|
|
if amount.Sign() == 0 {
|
2020-06-23 19:31:57 +00:00
|
|
|
si.Value = acc.Bytes()
|
2020-04-26 09:51:17 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
if err := n.ModifyAccountVotes(acc, ic.DAO, amount, modifyVoteTransfer); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if acc.VoteTo != nil {
|
|
|
|
if err := n.modifyVoterTurnout(ic.DAO, amount); err != nil {
|
2020-04-26 10:42:05 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-04-26 10:00:17 +00:00
|
|
|
}
|
2020-04-23 18:28:37 +00:00
|
|
|
acc.Balance.Add(&acc.Balance, amount)
|
2020-06-23 18:57:05 +00:00
|
|
|
if acc.Balance.Sign() != 0 {
|
|
|
|
si.Value = acc.Bytes()
|
|
|
|
} else {
|
|
|
|
si.Value = nil
|
|
|
|
}
|
2020-03-25 10:00:11 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-23 18:28:37 +00:00
|
|
|
func (n *NEO) distributeGas(ic *interop.Context, h util.Uint160, acc *state.NEOBalanceState) error {
|
2020-04-23 13:25:30 +00:00
|
|
|
if ic.Block == nil || ic.Block.Index == 0 {
|
2020-03-25 10:00:11 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-07-09 09:57:24 +00:00
|
|
|
gen := ic.Chain.CalculateClaimable(&acc.Balance, acc.BalanceHeight, ic.Block.Index)
|
2020-04-23 18:28:37 +00:00
|
|
|
acc.BalanceHeight = ic.Block.Index
|
2020-07-09 09:57:24 +00:00
|
|
|
n.GAS.mint(ic, h, gen)
|
2020-03-25 10:00:11 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func (n *NEO) unclaimedGas(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2020-03-25 10:00:11 +00:00
|
|
|
u := toUint160(args[0])
|
|
|
|
end := uint32(toBigInt(args[1]).Int64())
|
|
|
|
bs, err := ic.DAO.GetNEP5Balances(u)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-07-28 09:23:58 +00:00
|
|
|
tr := bs.Trackers[n.ContractID]
|
2020-03-25 10:00:11 +00:00
|
|
|
|
2020-07-09 09:57:24 +00:00
|
|
|
gen := ic.Chain.CalculateClaimable(&tr.Balance, tr.LastUpdatedBlock, end)
|
|
|
|
return stackitem.NewBigInteger(gen)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
func (n *NEO) registerCandidate(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2020-08-03 13:24:22 +00:00
|
|
|
err := n.RegisterCandidateInternal(ic, toPublicKey(args[0]))
|
2020-06-03 12:55:06 +00:00
|
|
|
return stackitem.NewBool(err == nil)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 13:24:22 +00:00
|
|
|
// RegisterCandidateInternal registers pub as a new candidate.
|
|
|
|
func (n *NEO) RegisterCandidateInternal(ic *interop.Context, pub *keys.PublicKey) error {
|
2020-04-25 21:23:30 +00:00
|
|
|
key := makeValidatorKey(pub)
|
2020-06-18 10:50:30 +00:00
|
|
|
si := ic.DAO.GetStorageItem(n.ContractID, key)
|
2020-08-03 12:00:27 +00:00
|
|
|
if si == nil {
|
|
|
|
si = new(state.StorageItem)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
c := &candidate{Registered: true}
|
|
|
|
si.Value = c.Bytes()
|
2020-06-18 10:50:30 +00:00
|
|
|
return ic.DAO.PutStorageItem(n.ContractID, key, si)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func (n *NEO) vote(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2020-03-25 10:00:11 +00:00
|
|
|
acc := toUint160(args[0])
|
2020-08-03 12:00:27 +00:00
|
|
|
var pub *keys.PublicKey
|
|
|
|
if _, ok := args[1].(stackitem.Null); !ok {
|
|
|
|
pub = toPublicKey(args[1])
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
err := n.VoteInternal(ic, acc, pub)
|
2020-06-03 12:55:06 +00:00
|
|
|
return stackitem.NewBool(err == nil)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// VoteInternal votes from account h for validarors specified in pubs.
|
2020-08-03 12:00:27 +00:00
|
|
|
func (n *NEO) VoteInternal(ic *interop.Context, h util.Uint160, pub *keys.PublicKey) error {
|
2020-07-15 19:43:30 +00:00
|
|
|
ok, err := runtime.CheckHashedWitness(ic, h)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if !ok {
|
|
|
|
return errors.New("invalid signature")
|
|
|
|
}
|
2020-04-23 18:28:37 +00:00
|
|
|
key := makeAccountKey(h)
|
2020-06-18 10:50:30 +00:00
|
|
|
si := ic.DAO.GetStorageItem(n.ContractID, key)
|
2020-04-23 18:28:37 +00:00
|
|
|
if si == nil {
|
|
|
|
return errors.New("invalid account")
|
|
|
|
}
|
|
|
|
acc, err := state.NEOBalanceStateFromBytes(si.Value)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
if (acc.VoteTo == nil) != (pub == nil) {
|
|
|
|
val := &acc.Balance
|
|
|
|
if pub == nil {
|
|
|
|
val = new(big.Int).Neg(val)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
if err := n.modifyVoterTurnout(ic.DAO, val); err != nil {
|
2020-03-25 10:00:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
if err := n.ModifyAccountVotes(acc, ic.DAO, new(big.Int).Neg(&acc.Balance), modifyVoteOld); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
acc.VoteTo = pub
|
|
|
|
if err := n.ModifyAccountVotes(acc, ic.DAO, &acc.Balance, modifyVoteNew); err != nil {
|
2020-04-23 18:28:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-04-26 11:00:17 +00:00
|
|
|
si.Value = acc.Bytes()
|
2020-06-18 10:50:30 +00:00
|
|
|
return ic.DAO.PutStorageItem(n.ContractID, key, si)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 12:00:27 +00:00
|
|
|
const (
|
|
|
|
modifyVoteTransfer = iota
|
|
|
|
modifyVoteOld
|
|
|
|
modifyVoteNew
|
|
|
|
)
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
// ModifyAccountVotes modifies votes of the specified account by value (can be negative).
|
2020-08-03 12:00:27 +00:00
|
|
|
// typ specifies if this modify is occuring during transfer or vote (with old or new validator).
|
|
|
|
func (n *NEO) ModifyAccountVotes(acc *state.NEOBalanceState, d dao.DAO, value *big.Int, typ int) error {
|
|
|
|
if acc.VoteTo != nil {
|
|
|
|
key := makeValidatorKey(acc.VoteTo)
|
2020-06-18 10:50:30 +00:00
|
|
|
si := d.GetStorageItem(n.ContractID, key)
|
2020-04-25 21:23:30 +00:00
|
|
|
if si == nil {
|
|
|
|
return errors.New("invalid validator")
|
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
cd := new(candidate).FromBytes(si.Value)
|
|
|
|
cd.Votes.Add(&cd.Votes, value)
|
|
|
|
switch typ {
|
|
|
|
case modifyVoteOld:
|
|
|
|
if !cd.Registered && cd.Votes.Sign() == 0 {
|
|
|
|
return d.DeleteStorageItem(n.ContractID, key)
|
|
|
|
}
|
|
|
|
case modifyVoteNew:
|
|
|
|
if !cd.Registered {
|
|
|
|
return errors.New("validator must be registered")
|
|
|
|
}
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
n.validators.Store(keys.PublicKeys(nil))
|
|
|
|
si.Value = cd.Bytes()
|
|
|
|
return d.PutStorageItem(n.ContractID, key, si)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
func (n *NEO) getCandidates(d dao.DAO) ([]keyWithVotes, error) {
|
|
|
|
siMap, err := d.GetStorageItemsWithPrefix(n.ContractID, []byte{prefixCandidate})
|
2020-04-25 21:23:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
arr := make([]keyWithVotes, 0, len(siMap))
|
|
|
|
for key, si := range siMap {
|
2020-08-03 12:00:27 +00:00
|
|
|
c := new(candidate).FromBytes(si.Value)
|
|
|
|
if c.Registered {
|
|
|
|
arr = append(arr, keyWithVotes{key, &c.Votes})
|
|
|
|
}
|
2020-04-25 21:23:30 +00:00
|
|
|
}
|
2020-05-29 08:02:26 +00:00
|
|
|
sort.Slice(arr, func(i, j int) bool { return strings.Compare(arr[i].Key, arr[j].Key) == -1 })
|
2020-04-25 21:23:30 +00:00
|
|
|
return arr, nil
|
|
|
|
}
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
// GetCandidates returns current registered validators list with keys
|
2020-04-26 17:04:16 +00:00
|
|
|
// and votes.
|
2020-08-03 08:43:51 +00:00
|
|
|
func (n *NEO) GetCandidates(d dao.DAO) ([]state.Validator, error) {
|
|
|
|
kvs, err := n.getCandidates(d)
|
2020-04-26 17:04:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
arr := make([]state.Validator, len(kvs))
|
|
|
|
for i := range kvs {
|
2020-07-13 09:59:41 +00:00
|
|
|
arr[i].Key, err = keys.NewPublicKeyFromBytes([]byte(kvs[i].Key), elliptic.P256())
|
2020-04-26 17:04:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
arr[i].Votes = kvs[i].Votes
|
|
|
|
}
|
|
|
|
return arr, nil
|
|
|
|
}
|
|
|
|
|
2020-08-03 08:43:51 +00:00
|
|
|
func (n *NEO) getCandidatesCall(ic *interop.Context, _ []stackitem.Item) stackitem.Item {
|
|
|
|
validators, err := n.getCandidates(ic.DAO)
|
2020-04-25 21:23:30 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-06-03 12:55:06 +00:00
|
|
|
arr := make([]stackitem.Item, len(validators))
|
2020-04-25 21:23:30 +00:00
|
|
|
for i := range validators {
|
2020-06-03 12:55:06 +00:00
|
|
|
arr[i] = stackitem.NewStruct([]stackitem.Item{
|
|
|
|
stackitem.NewByteArray([]byte(validators[i].Key)),
|
|
|
|
stackitem.NewBigInteger(validators[i].Votes),
|
2020-03-25 10:00:11 +00:00
|
|
|
})
|
|
|
|
}
|
2020-06-03 12:55:06 +00:00
|
|
|
return stackitem.NewArray(arr)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-07-11 09:29:06 +00:00
|
|
|
// GetValidatorsInternal returns a list of current validators.
|
|
|
|
func (n *NEO) GetValidatorsInternal(bc blockchainer.Blockchainer, d dao.DAO) (keys.PublicKeys, error) {
|
2020-06-29 07:36:44 +00:00
|
|
|
if vals := n.validators.Load().(keys.PublicKeys); vals != nil {
|
2020-07-11 11:07:48 +00:00
|
|
|
return vals.Copy(), nil
|
2020-06-24 10:20:59 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
result, err := n.getCommitteeMembers(bc, d)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
count := bc.GetConfig().ValidatorsCount
|
|
|
|
if len(result) < count {
|
|
|
|
count = len(result)
|
2020-04-25 21:23:30 +00:00
|
|
|
}
|
2020-08-03 12:00:27 +00:00
|
|
|
result = result[:count]
|
2020-06-24 10:20:59 +00:00
|
|
|
n.validators.Store(result)
|
2020-03-25 10:00:11 +00:00
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func (n *NEO) getValidators(ic *interop.Context, _ []stackitem.Item) stackitem.Item {
|
2020-07-11 09:29:06 +00:00
|
|
|
result, err := n.GetValidatorsInternal(ic.Chain, ic.DAO)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return pubsToArray(result)
|
|
|
|
}
|
|
|
|
|
2020-08-03 12:00:27 +00:00
|
|
|
func (n *NEO) getCommittee(ic *interop.Context, _ []stackitem.Item) stackitem.Item {
|
|
|
|
pubs, err := n.getCommitteeMembers(ic.Chain, ic.DAO)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
sort.Sort(pubs)
|
|
|
|
return pubsToArray(pubs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *NEO) modifyVoterTurnout(d dao.DAO, amount *big.Int) error {
|
|
|
|
key := []byte{prefixVotersCount}
|
|
|
|
si := d.GetStorageItem(n.ContractID, key)
|
|
|
|
if si == nil {
|
|
|
|
return errors.New("voters count not found")
|
|
|
|
}
|
|
|
|
votersCount := bigint.FromBytes(si.Value)
|
|
|
|
votersCount.Add(votersCount, amount)
|
|
|
|
si.Value = bigint.ToBytes(votersCount)
|
|
|
|
return d.PutStorageItem(n.ContractID, key, si)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *NEO) getCommitteeMembers(bc blockchainer.Blockchainer, d dao.DAO) (keys.PublicKeys, error) {
|
|
|
|
key := []byte{prefixVotersCount}
|
|
|
|
si := d.GetStorageItem(n.ContractID, key)
|
|
|
|
if si == nil {
|
|
|
|
return nil, errors.New("voters count not found")
|
|
|
|
}
|
|
|
|
votersCount := bigint.FromBytes(si.Value)
|
|
|
|
// votersCount / totalSupply must be >= 0.2
|
|
|
|
votersCount.Mul(votersCount, big.NewInt(effectiveVoterTurnout))
|
|
|
|
voterTurnout := votersCount.Div(votersCount, n.getTotalSupply(d))
|
|
|
|
if voterTurnout.Sign() != 1 {
|
|
|
|
return bc.GetStandByValidators(), nil
|
|
|
|
}
|
|
|
|
cs, err := n.getCandidates(d)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
sbVals := bc.GetStandByValidators()
|
|
|
|
count := len(sbVals)
|
|
|
|
if len(cs) < count {
|
|
|
|
return sbVals, nil
|
|
|
|
}
|
|
|
|
sort.Slice(cs, func(i, j int) bool {
|
|
|
|
// The most-voted validators should end up in the front of the list.
|
|
|
|
cmp := cs[i].Votes.Cmp(cs[j].Votes)
|
|
|
|
if cmp != 0 {
|
|
|
|
return cmp > 0
|
|
|
|
}
|
|
|
|
// Ties are broken with public keys.
|
|
|
|
return strings.Compare(cs[i].Key, cs[j].Key) == -1
|
|
|
|
})
|
|
|
|
pubs := make(keys.PublicKeys, count)
|
|
|
|
for i := range pubs {
|
|
|
|
pubs[i], err = keys.NewPublicKeyFromBytes([]byte(cs[i].Key), elliptic.P256())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pubs, nil
|
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func (n *NEO) getNextBlockValidators(ic *interop.Context, _ []stackitem.Item) stackitem.Item {
|
2020-06-29 07:48:35 +00:00
|
|
|
result, err := n.getNextBlockValidatorsInternal(ic.Chain, ic.DAO)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return pubsToArray(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetNextBlockValidatorsInternal returns next block validators.
|
2020-04-26 10:42:05 +00:00
|
|
|
func (n *NEO) GetNextBlockValidatorsInternal(bc blockchainer.Blockchainer, d dao.DAO) (keys.PublicKeys, error) {
|
2020-06-29 07:48:35 +00:00
|
|
|
pubs, err := n.getNextBlockValidatorsInternal(bc, d)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return pubs.Copy(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// getNextBlockValidatorsInternal returns next block validators.
|
|
|
|
func (n *NEO) getNextBlockValidatorsInternal(bc blockchainer.Blockchainer, d dao.DAO) (keys.PublicKeys, error) {
|
2020-06-18 10:50:30 +00:00
|
|
|
si := d.GetStorageItem(n.ContractID, nextValidatorsKey)
|
2020-04-26 10:42:05 +00:00
|
|
|
if si == nil {
|
2020-07-11 09:29:06 +00:00
|
|
|
return n.GetValidatorsInternal(bc, d)
|
2020-04-26 10:42:05 +00:00
|
|
|
}
|
|
|
|
pubs := keys.PublicKeys{}
|
|
|
|
err := pubs.DecodeBytes(si.Value)
|
2020-03-25 10:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-04-26 10:42:05 +00:00
|
|
|
return pubs, nil
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func pubsToArray(pubs keys.PublicKeys) stackitem.Item {
|
|
|
|
arr := make([]stackitem.Item, len(pubs))
|
2020-03-25 10:00:11 +00:00
|
|
|
for i := range pubs {
|
2020-06-03 12:55:06 +00:00
|
|
|
arr[i] = stackitem.NewByteArray(pubs[i].Bytes())
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
2020-06-03 12:55:06 +00:00
|
|
|
return stackitem.NewArray(arr)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
func toPublicKey(s stackitem.Item) *keys.PublicKey {
|
2020-03-25 10:00:11 +00:00
|
|
|
buf, err := s.TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
pub := new(keys.PublicKey)
|
|
|
|
if err := pub.DecodeBytes(buf); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return pub
|
|
|
|
}
|