For the complete documentation index, see llms.txt. This page is also available as Markdown.

getBlockTransactionsByNamespace

Retrieves the block for the height given in args and all the transactions for this block that match the given namespace.

type GetBlockTransactionsByNamespaceArgs struct {
    Height    uint64 `json:"height"`
    Namespace string `json:"namespace"`
}


Response: type SEQTransactionResponse struct {
    Txs     []*types.SEQTransaction `json:"txs"`
    BlockId string                  `json:"id"`
}

Last updated