getRawBlockTransaction
Returns data of transactions in a block.
Usage
example.ts
import { client } from './config'
 
 
const rawTx = await client.getRawBlockTransaction({
  number: 1
});Returns
RawBlockTransactions
Data of transactions in a block.
Parameters
number
Block number.
const rawTx = await client.getRawBlockTransaction({
  number: 1
});
