NodeKit Documentation
  • Learn
    • Welcome
  • Core Advantages
    • Composability
    • Revenue
    • Benefits
  • Architecture
    • Overview
    • Javelin
    • L1
    • Sidecar
      • Technical Overview
    • Shared Auction
  • Builders Guide
    • Javelin
      • Bundle API
  • JSON RPC Methods
    • Common Variables
    • SubmitMsgTx
    • getBlockHeadersByHeight
    • getBlockHeadersId
    • getBlockHeadersByStart
    • getBlockTransactions
    • getCommitmentBlocks
    • getBlockTransactionsByNamespace
  • Technical Documentation
  • Social
    • Twitter
    • Telegram
    • Discord
Powered by GitBook
On this page
  1. JSON RPC Methods

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"`
}
PreviousgetCommitmentBlocks

Last updated 10 months ago