Files
node/indexer/examples/x-chain-blocks/main.go
T
zeekayandHanzo Dev 51a304804c chore: migrate luxd HTTP routes /ext -> /v1
Drop the Avalanche-heritage /ext prefix; /v1 is the single canonical route
surface (one way, no backward compat). The node's baseURL is the source of
truth; clients, SDKs, CLI, indexer, maker, genesis, netrunner, and the
k8s/compose/gateway/explorer configs are updated to match.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-07-01 11:40:13 -07:00

57 lines
1.5 KiB
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package main
import (
"context"
"log"
"time"
"github.com/luxfi/ids"
"github.com/luxfi/node/indexer"
"github.com/luxfi/node/vms/proposervm/block"
"github.com/luxfi/node/wallet/chain/x/builder"
"github.com/luxfi/node/wallet/network/primary"
)
// This example program continuously polls for the next X-Chain block
// and prints the ID of the block and its transactions.
func main() {
var (
uri = primary.LocalAPIURI + "/v1/index/X/block"
xChainID = ids.FromStringOrPanic("2eNy1mUFdmaxXNj1eQHUe7Np4gju9sJsEtWQ4MX3ToiNKuADed")
client = indexer.NewClient(uri)
ctx = context.Background()
nextIndex uint64
)
for {
container, err := client.GetContainerByIndex(ctx, nextIndex)
if err != nil {
time.Sleep(time.Second)
log.Println("polling for next accepted block")
continue
}
proposerVMBlock, err := block.Parse(container.Bytes, xChainID)
if err != nil {
log.Fatalf("failed to parse proposervm block: %s\n", err)
}
xvmBlockBytes := proposerVMBlock.Block()
xvmBlock, err := builder.Parser.ParseBlock(xvmBlockBytes)
if err != nil {
log.Fatalf("failed to parse xvm block: %s\n", err)
}
acceptedTxs := xvmBlock.Txs()
log.Printf("accepted block %s with %d transactions\n", xvmBlock.ID(), len(acceptedTxs))
for _, tx := range acceptedTxs {
log.Printf("accepted transaction %s\n", tx.ID())
}
nextIndex++
}
}