Evgenii Stratonikov
d1bc4351c3
All checks were successful
DCO action / DCO (pull_request) Successful in 4m46s
Vulncheck / Vulncheck (pull_request) Successful in 5m22s
Build / Build Components (pull_request) Successful in 6m12s
Pre-commit hooks / Pre-commit (pull_request) Successful in 6m10s
Tests and linters / Run gofumpt (pull_request) Successful in 6m16s
Tests and linters / gopls check (pull_request) Successful in 6m19s
Tests and linters / Staticcheck (pull_request) Successful in 6m25s
Tests and linters / Lint (pull_request) Successful in 6m59s
Tests and linters / Tests (pull_request) Successful in 7m38s
Tests and linters / Tests with -race (pull_request) Successful in 8m37s
Tests and linters / Run gofumpt (push) Successful in 1m16s
Tests and linters / Staticcheck (push) Successful in 3m15s
Vulncheck / Vulncheck (push) Successful in 4m7s
Build / Build Components (push) Successful in 4m32s
Tests and linters / Lint (push) Successful in 4m50s
Pre-commit hooks / Pre-commit (push) Successful in 5m1s
Tests and linters / Tests (push) Successful in 5m14s
Tests and linters / Tests with -race (push) Successful in 5m54s
Tests and linters / gopls check (push) Successful in 6m2s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package frostfs
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-contract/rpcclient/frostfs"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event"
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
// Cheque structure of frostfs.Cheque notification from mainnet chain.
|
|
type Cheque struct {
|
|
IDValue []byte
|
|
AmountValue int64 // Fixed8
|
|
UserValue util.Uint160
|
|
LockValue util.Uint160
|
|
}
|
|
|
|
// MorphEvent implements Neo:Morph Event interface.
|
|
func (Cheque) MorphEvent() {}
|
|
|
|
// ID is a withdraw transaction hash.
|
|
func (c Cheque) ID() []byte { return c.IDValue }
|
|
|
|
// User returns withdraw receiver script hash from main net.
|
|
func (c Cheque) User() util.Uint160 { return c.UserValue }
|
|
|
|
// Amount of the sent assets.
|
|
func (c Cheque) Amount() int64 { return c.AmountValue }
|
|
|
|
// LockAccount return script hash for balance contract wallet.
|
|
func (c Cheque) LockAccount() util.Uint160 { return c.LockValue }
|
|
|
|
// ParseCheque from notification into cheque structure.
|
|
func ParseCheque(e *state.ContainedNotificationEvent) (event.Event, error) {
|
|
var ce frostfs.ChequeEvent
|
|
if err := ce.FromStackItem(e.Item); err != nil {
|
|
return nil, fmt.Errorf("parse frostfs.ChequeEvent: %w", err)
|
|
}
|
|
|
|
lock, err := util.Uint160DecodeBytesBE(ce.LockAccount)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parse frostfs.ChequeEvent: field LockAccount: %w", err)
|
|
}
|
|
|
|
return Cheque{
|
|
IDValue: ce.Id,
|
|
AmountValue: ce.Amount.Int64(),
|
|
UserValue: ce.User,
|
|
LockValue: lock,
|
|
}, nil
|
|
}
|