storj/satellite/payments/storjscan/paymentsdb.go
Yaroslav Vorobiov ad7c5b1483 satellite/payments/monetary: remove pkg and all its references
Remove pkg satellite/payments/monetary as it moved to storj.io/common.
Update all code pkg references from monetary to common/currency.

Change-Id: If2519f4c80cf315a9299e6521a6b9bbc6c399156
2022-09-07 12:58:00 +00:00

51 lines
2.0 KiB
Go

// Copyright (C) 2022 Storj Labs, Inc.
// See LICENSE for copying information.
package storjscan
import (
"context"
"time"
"github.com/zeebo/errs"
"storj.io/common/currency"
"storj.io/storj/private/blockchain"
"storj.io/storj/satellite/payments"
)
// ErrNoPayments represents err when there is no payments in the DB.
var ErrNoPayments = errs.New("no payments in the database")
// PaymentsDB is storjscan payments DB interface.
//
// architecture: Database
type PaymentsDB interface {
// InsertBatch inserts list of payments into DB.
InsertBatch(ctx context.Context, payments []CachedPayment) error
// List returns list of all storjscan payments order by block number and log index desc mainly for testing.
List(ctx context.Context) ([]CachedPayment, error)
// ListWallet returns list of storjscan payments order by block number and log index desc.
ListWallet(ctx context.Context, wallet blockchain.Address, limit int, offset int64) ([]CachedPayment, error)
// LastBlock returns the highest block known to DB for specified payment status.
LastBlock(ctx context.Context, status payments.PaymentStatus) (int64, error)
// DeletePending removes all pending transactions from the DB.
DeletePending(ctx context.Context) error
// ListConfirmed returns list of confirmed storjscan payments greater than the given timestamp.
ListConfirmed(ctx context.Context, blockNumber int64, logIndex int) ([]CachedPayment, error)
}
// CachedPayment holds cached data of storjscan payment.
type CachedPayment struct {
From blockchain.Address `json:"from"`
To blockchain.Address `json:"to"`
TokenValue currency.Amount `json:"tokenValue"`
USDValue currency.Amount `json:"usdValue"`
Status payments.PaymentStatus `json:"status"`
BlockHash blockchain.Hash `json:"blockHash"`
BlockNumber int64 `json:"blockNumber"`
Transaction blockchain.Hash `json:"transaction"`
LogIndex int `json:"logIndex"`
Timestamp time.Time `json:"timestamp"`
}