mirror of
https://github.com/alexgo-io/gaze-brc20-indexer.git
synced 2026-01-12 14:34:54 +08:00
22 lines
506 B
Go
22 lines
506 B
Go
package entity
|
|
|
|
import (
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
"github.com/gaze-network/indexer-network/modules/brc20/internal/ordinals"
|
|
)
|
|
|
|
type InscriptionTransfer struct {
|
|
InscriptionId ordinals.InscriptionId
|
|
BlockHeight uint64
|
|
TxIndex uint32
|
|
TxHash chainhash.Hash
|
|
Content []byte
|
|
FromInputIndex uint32
|
|
OldSatPoint ordinals.SatPoint
|
|
NewSatPoint ordinals.SatPoint
|
|
NewPkScript []byte
|
|
NewOutputValue uint64
|
|
SentAsFee bool
|
|
TransferCount uint32
|
|
}
|