mirror of
https://github.com/alexgo-io/gaze-indexer.git
synced 2026-05-01 05:01:59 +08:00
28 lines
610 B
Go
28 lines
610 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 EventInscribeTransfer 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
|
|
OutputIndex uint32
|
|
SatsAmount uint64
|
|
Amount decimal.Decimal
|
|
}
|