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
|
|
|
// Cheque structure of frostfs.Cheque notification from mainnet chain.
|
2020-07-24 13:54:03 +00:00
|
|
|
type Cheque struct {
|
2023-04-26 13:25:50 +00:00
|
|
|
IDValue []byte
|
|
|
|
AmountValue int64 // Fixed8
|
|
|
|
UserValue util.Uint160
|
|
|
|
LockValue util.Uint160
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
|
|
func (Cheque) MorphEvent() {}
|
|
|
|
|
|
|
|
// ID is a withdraw transaction hash.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (c Cheque) ID() []byte { return c.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 (c Cheque) User() util.Uint160 { return c.UserValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// Amount of the sent assets.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (c Cheque) Amount() int64 { return c.AmountValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// LockAccount return script hash for balance contract wallet.
|
2023-04-26 13:25:50 +00:00
|
|
|
func (c Cheque) LockAccount() util.Uint160 { return c.LockValue }
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// ParseCheque from notification into cheque structure.
|
2022-07-28 16:22:32 +00:00
|
|
|
func ParseCheque(e *state.ContainedNotificationEvent) (event.Event, error) {
|
2024-12-06 10:59:15 +00:00
|
|
|
var ce frostfs.ChequeEvent
|
|
|
|
if err := ce.FromStackItem(e.Item); err != nil {
|
|
|
|
return nil, fmt.Errorf("parse frostfs.ChequeEvent: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-06 10:59:15 +00:00
|
|
|
lock, err := util.Uint160DecodeBytesBE(ce.LockAccount)
|
2020-07-24 13:54:03 +00:00
|
|
|
if err != nil {
|
2024-12-06 10:59:15 +00:00
|
|
|
return nil, fmt.Errorf("parse frostfs.ChequeEvent: field LockAccount: %w", err)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-06 10:59:15 +00:00
|
|
|
return Cheque{
|
|
|
|
IDValue: ce.Id,
|
|
|
|
AmountValue: ce.Amount.Int64(),
|
|
|
|
UserValue: ce.User,
|
|
|
|
LockValue: lock,
|
|
|
|
}, nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|