mirror of
https://github.com/alexgo-io/gaze-brc20-indexer.git
synced 2026-01-12 14:34:54 +08:00
28 lines
605 B
Go
28 lines
605 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
"github.com/gaze-network/indexer-network/modules/brc20/internal/ordinals"
|
|
"github.com/gaze-network/uint128"
|
|
)
|
|
|
|
type EventDeploy struct {
|
|
Id uint64
|
|
InscriptionId ordinals.InscriptionId
|
|
InscriptionNumber uint64
|
|
Tick string
|
|
OriginalTick string
|
|
TxHash chainhash.Hash
|
|
BlockHeight uint64
|
|
TxIndex uint32
|
|
Timestamp time.Time
|
|
|
|
PkScript []byte
|
|
TotalSupply uint128.Uint128
|
|
Decimals uint16
|
|
LimitPerMint uint128.Uint128
|
|
IsSelfMint bool
|
|
}
|