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
|
|
|
// Withdraw structure of frostfs.Withdraw notification from mainnet chain.
|
2020-07-24 13:54:03 +00:00
|
|
|
type Withdraw struct {
|
2023-04-26 13:25:50 +00:00
|
|
|
IDValue []byte
|
|
|
|
AmountValue int64 // Fixed8
|
|
|
|
UserValue util.Uint160
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
|
|
func (Withdraw) MorphEvent() {}
|
|
|
|
|
|
|
|
// ID is a withdraw transaction hash.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (w Withdraw) ID() []byte { return w.IDValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// User returns withdraw receiver script hash from main net.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (w Withdraw) User() util.Uint160 { return w.UserValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// Amount of the withdraw assets.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (w Withdraw) Amount() int64 { return w.AmountValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// ParseWithdraw notification into withdraw structure.
|
2022-07-28 16:22:32 +00:00
|
|
|
func ParseWithdraw(e *state.ContainedNotificationEvent) (event.Event, error) {
|
2024-12-06 10:59:15 +00:00
|
|
|
var we frostfs.WithdrawEvent
|
|
|
|
if err := we.FromStackItem(e.Item); err != nil {
|
|
|
|
return nil, fmt.Errorf("parse frostfs.WithdrawEvent: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-06 10:59:15 +00:00
|
|
|
return Withdraw{
|
|
|
|
IDValue: we.TxHash[:],
|
|
|
|
AmountValue: we.Amount.Int64(),
|
|
|
|
UserValue: we.User,
|
|
|
|
}, nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|