Documentation ¶
Overview ¶
Package txdb provides a database implementation that simplements the submitter db service.
Index ¶
- Constants
- func GetAllModels() (allModels []interface{})
- type ETHTX
- type Store
- func (s Store) DB() *gorm.DB
- func (s *Store) DBTransaction(parentCtx context.Context, f db.TransactionFunc) (err error)
- func (s *Store) GetAllTXAttemptByStatus(ctx context.Context, fromAddress common.Address, chainID *big.Int, ...) (txs []db.TX, err error)
- func (s *Store) GetNonceForChainID(ctx context.Context, fromAddress common.Address, chainID *big.Int) (nonce uint64, err error)
- func (s *Store) GetTXS(ctx context.Context, fromAddress common.Address, chainID *big.Int, ...) (txs []db.TX, err error)
- func (s *Store) MarkAllBeforeOrAtNonceReplacedOrConfirmed(ctx context.Context, signer common.Address, chainID *big.Int, nonce uint64) error
- func (s Store) PutTXS(ctx context.Context, txs ...db.TX) error
Constants ¶
const MaxResultsPerChain = 50
MaxResultsPerChain is the maximum number of transactions to return per chain id. it is exported for testing. TODO: this should be an option passed to the GetTXs function.
Variables ¶
This section is empty.
Functions ¶
func GetAllModels ¶
func GetAllModels() (allModels []interface{})
GetAllModels gets all models to migrate see: https://medium.com/@SaifAbid/slice-interfaces-8c78f8b6345d for an explanation of why we can't do this at initialization time
Types ¶
type ETHTX ¶
type ETHTX struct { ID uint64 `gorm:"column:id;primaryKey;autoIncrement:true"` // CreatedAt is the time the transaction was created CreatedAt time.Time // TXHash is the hash of the transaction TXHash string `gorm:"column:tx_hash;uniqueIndex;size:256"` // From is the sender of the transaction From string `gorm:"column:from;index"` // ChainID is the chain id the transaction hash will be sent on ChainID uint64 `gorm:"column:chain_id;index"` // Nonce is the nonce of the raw evm tx Nonce uint64 `gorm:"column:nonce;index"` // RawTx is the raw serialized transaction RawTx []byte `gorm:"column:raw_tx"` // Status is the status of the transaction Status db.Status `gorm:"column:status;index"` }
ETHTX contains a raw evm transaction that is unsigned.
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is the sqlite store. It extends the base store for sqlite specific queries.
func NewTXStore ¶
NewTXStore creates a new transaction store.
func (*Store) DBTransaction ¶
DBTransaction is a function that can be used to execute a transaction on the database.
func (*Store) GetAllTXAttemptByStatus ¶
func (s *Store) GetAllTXAttemptByStatus(ctx context.Context, fromAddress common.Address, chainID *big.Int, matchStatuses ...db.Status) (txs []db.TX, err error)
GetAllTXAttemptByStatus returns all transactions for a given address on a given (or any) chain id that match a given status.
func (*Store) GetNonceForChainID ¶
func (s *Store) GetNonceForChainID(ctx context.Context, fromAddress common.Address, chainID *big.Int) (nonce uint64, err error)
GetNonceForChainID gets the nonce for the given chain id.
func (*Store) GetTXS ¶
func (s *Store) GetTXS(ctx context.Context, fromAddress common.Address, chainID *big.Int, matchStatuses ...db.Status) (txs []db.TX, err error)
GetTXS returns all transactions for a given address on a given (or any) chain id that match a given status. there is a limit of 50 transactions per chain id. The limit does not make any guarantees about the number of nonces per chain. the submitter will get only the most recent tx submitted for each chain so this can be used for gas pricing.
func (*Store) MarkAllBeforeOrAtNonceReplacedOrConfirmed ¶
func (s *Store) MarkAllBeforeOrAtNonceReplacedOrConfirmed(ctx context.Context, signer common.Address, chainID *big.Int, nonce uint64) error
MarkAllBeforeOrAtNonceReplacedOrConfirmed marks all transactions before or at the given nonce as replaced or confirmed.