mirror of
https://github.com/alexgo-io/gaze-brc20-indexer.git
synced 2026-04-30 20:43:11 +08:00
27 lines
583 B
Go
27 lines
583 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
"github.com/gaze-network/indexer-network/modules/brc20/internal/ordinals"
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
type EventMint struct {
|
|
Id int64
|
|
InscriptionId ordinals.InscriptionId
|
|
InscriptionNumber int64
|
|
Tick string
|
|
OriginalTick string
|
|
TxHash chainhash.Hash
|
|
BlockHeight uint64
|
|
TxIndex uint32
|
|
Timestamp time.Time
|
|
|
|
PkScript []byte
|
|
SatPoint ordinals.SatPoint
|
|
Amount decimal.Decimal
|
|
ParentId *ordinals.InscriptionId
|
|
}
|