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

getBlockTransactions

Retrieves the block for the ID given in Args and all the transactions for this block.

type GetBlockTransactionsArgs struct {
    ID string `json:"block_id"`
}

Response: type TransactionResponse struct {
    Txs     []*chain.Transaction `json:"txs"`
    BlockId string               `json:"id"`
}
PreviousgetBlockHeadersByStartNextgetCommitmentBlocks

Last updated 9 months ago