forked from TrueCloudLab/frostfs-node
62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package neofs
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Withdraw structure of neofs.Withdraw notification from mainnet chain.
|
|
type Withdraw struct {
|
|
id []byte
|
|
amount int64 // Fixed8
|
|
user util.Uint160
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (Withdraw) MorphEvent() {}
|
|
|
|
// ID is a withdraw transaction hash.
|
|
func (w Withdraw) ID() []byte { return w.id }
|
|
|
|
// User returns withdraw receiver script hash from main net.
|
|
func (w Withdraw) User() util.Uint160 { return w.user }
|
|
|
|
// Amount of the withdraw assets.
|
|
func (w Withdraw) Amount() int64 { return w.amount }
|
|
|
|
// ParseWithdraw notification into withdraw structure.
|
|
func ParseWithdraw(params []smartcontract.Parameter) (event.Event, error) {
|
|
var ev Withdraw
|
|
|
|
if ln := len(params); ln != 3 {
|
|
return nil, event.WrongNumberOfParameters(3, ln)
|
|
}
|
|
|
|
// parse user
|
|
user, err := client.BytesFromStackParameter(params[0])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get withdraw user")
|
|
}
|
|
|
|
ev.user, err = util.Uint160DecodeBytesBE(user)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not convert withdraw user to uint160")
|
|
}
|
|
|
|
// parse amount
|
|
ev.amount, err = client.IntFromStackParameter(params[1])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get withdraw amount")
|
|
}
|
|
|
|
// parse id
|
|
ev.id, err = client.BytesFromStackParameter(params[2])
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not get withdraw id")
|
|
}
|
|
|
|
return ev, nil
|
|
}
|