2020-07-24 13:54:03 +00:00
|
|
|
package neofs
|
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"fmt"
|
|
|
|
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-10-26 14:46:15 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Deposit structure of neofs.Deposit notification from mainnet chain.
|
|
|
|
type Deposit struct {
|
|
|
|
id []byte
|
|
|
|
amount int64 // Fixed8
|
|
|
|
from util.Uint160
|
|
|
|
to util.Uint160
|
|
|
|
}
|
|
|
|
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
|
|
func (Deposit) MorphEvent() {}
|
|
|
|
|
|
|
|
// ID is a deposit transaction hash.
|
|
|
|
func (d Deposit) ID() []byte { return d.id }
|
|
|
|
|
|
|
|
// From is a script hash of asset sender in main net.
|
|
|
|
func (d Deposit) From() util.Uint160 { return d.from }
|
|
|
|
|
|
|
|
// To is a script hash of asset receiver in balance contract.
|
|
|
|
func (d Deposit) To() util.Uint160 { return d.to }
|
|
|
|
|
|
|
|
// Amount of transferred assets.
|
|
|
|
func (d Deposit) Amount() int64 { return d.amount }
|
|
|
|
|
|
|
|
// ParseDeposit notification into deposit structure.
|
2020-10-26 14:46:15 +00:00
|
|
|
func ParseDeposit(params []stackitem.Item) (event.Event, error) {
|
2020-07-24 13:54:03 +00:00
|
|
|
var ev Deposit
|
|
|
|
|
|
|
|
if ln := len(params); ln != 4 {
|
|
|
|
return nil, event.WrongNumberOfParameters(4, ln)
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse from
|
2020-10-26 14:46:15 +00:00
|
|
|
from, err := client.BytesFromStackItem(params[0])
|
2020-07-24 13:54:03 +00:00
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not get deposit sender: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ev.from, err = util.Uint160DecodeBytesBE(from)
|
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not convert deposit sender to uint160: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse amount
|
2020-10-26 14:46:15 +00:00
|
|
|
ev.amount, err = client.IntFromStackItem(params[1])
|
2020-07-24 13:54:03 +00:00
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not get deposit amount: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse to
|
2020-10-26 14:46:15 +00:00
|
|
|
to, err := client.BytesFromStackItem(params[2])
|
2020-07-24 13:54:03 +00:00
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not get deposit receiver: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ev.to, err = util.Uint160DecodeBytesBE(to)
|
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not convert deposit receiver to uint160: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse id
|
2020-10-26 14:46:15 +00:00
|
|
|
ev.id, err = client.BytesFromStackItem(params[3])
|
2020-07-24 13:54:03 +00:00
|
|
|
if err != nil {
|
2021-05-18 08:12:51 +00:00
|
|
|
return nil, fmt.Errorf("could not get deposit id: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ev, nil
|
|
|
|
}
|