2022-12-23 17:35:35 +00:00
|
|
|
package frostfs
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"fmt"
|
|
|
|
|
2024-12-06 10:59:15 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-contract/rpcclient/frostfs"
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event"
|
2022-07-28 16:22:32 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
)
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
// Deposit structure of frostfs.Deposit notification from mainnet chain.
|
2020-07-24 13:54:03 +00:00
|
|
|
type Deposit struct {
|
2023-04-26 13:25:50 +00:00
|
|
|
IDValue []byte
|
|
|
|
AmountValue int64 // Fixed8
|
|
|
|
FromValue util.Uint160
|
|
|
|
ToValue util.Uint160
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
|
|
func (Deposit) MorphEvent() {}
|
|
|
|
|
|
|
|
// ID is a deposit transaction hash.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (d Deposit) ID() []byte { return d.IDValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// From is a script hash of asset sender in main net.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (d Deposit) From() util.Uint160 { return d.FromValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// To is a script hash of asset receiver in balance contract.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (d Deposit) To() util.Uint160 { return d.ToValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// Amount of transferred assets.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (d Deposit) Amount() int64 { return d.AmountValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// ParseDeposit notification into deposit structure.
|
2022-07-28 16:22:32 +00:00
|
|
|
func ParseDeposit(e *state.ContainedNotificationEvent) (event.Event, error) {
|
2024-12-06 10:59:15 +00:00
|
|
|
var de frostfs.DepositEvent
|
|
|
|
if err := de.FromStackItem(e.Item); err != nil {
|
|
|
|
return nil, fmt.Errorf("parse frostfs.DepositEvent: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-06 10:59:15 +00:00
|
|
|
return Deposit{
|
|
|
|
IDValue: de.TxHash[:],
|
|
|
|
AmountValue: de.Amount.Int64(),
|
|
|
|
FromValue: de.From,
|
|
|
|
ToValue: de.Receiver,
|
|
|
|
}, nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|