Files
gaze-indexer/modules/runes/internal/entity/indexed_block.go
2024-04-15 15:01:50 +07:00

12 lines
270 B
Go

package entity
import "github.com/btcsuite/btcd/chaincfg/chainhash"
type IndexedBlock struct {
Height int64
Hash chainhash.Hash
PrevHash chainhash.Hash
EventHash chainhash.Hash
CumulativeEventHash chainhash.Hash
}