2025-12-22 17:56:40 +08:00
|
|
|
package parser
|
2025-11-20 17:56:45 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/thloyi/pump-parser"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type BlockInfo struct {
|
|
|
|
|
Slot uint64
|
|
|
|
|
BlockTime int64
|
|
|
|
|
BlockHash string
|
|
|
|
|
Height uint64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SubscriptionMessage struct {
|
|
|
|
|
EstimateDelaySecond int64
|
|
|
|
|
|
|
|
|
|
Reconnect bool
|
|
|
|
|
|
|
|
|
|
Block *BlockInfo
|
|
|
|
|
Tx *pump_parser.Tx
|
|
|
|
|
}
|