Fetch Transaction Overview
These APIs are useful for fetching list of transactions by hash, category or sender/recipient address.
Fetch transactions API
- js
- react
- reactnative
// pushChain.tx.get(reference, {options?})
const transaction = await pushChain.tx.get('177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23');
// pushChain.tx.get(reference, {options?})
const transaction = await pushChain.tx.get('177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23');
// pushChain.tx.get(reference, {options?})
const transaction = await pushChain.tx.get('177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23');
Get Transactions parameters
Param | Type | Remarks | Default |
---|---|---|---|
reference | UniversalAccount , string , '*' | Specifies the query target: '*' for all transactions, a transaction hash, or a UniversalAccount. | * |
options.raw | boolean | If true , returns the raw BlockResponse . If false , returns a SimplifiedBlockResponse . For most cases use default raw = false . | false |
options.category | string | Filters transactions by category (e.g., application-specific tags). | undefined |
options.startTime | number (timestamp) | Fetches transactions starting from this timestamp. | Current timestamp |
options.order | Order ('ASC' or 'DESC' ) | Determines the sort order of transactions ('ASC' for ascending, 'DESC' for descending). | 'DESC' |
options.page | number | Specifies the page number for paginated results. | 1 |
options.limit | number | Sets the maximum number of transactions to fetch per page. | 30 |
options.filterMode | 'both' , 'sender' , 'recipient' | Determines the query type: 'both' fetches all, 'sender' fetches sent, 'recipient' fetches received. | 'both' |
Expected response
Retrieving by hash
Fetch a transaction that has the hash 177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23
.
const transaction = await pushChain.tx.get('177482c5a504f3922875c216f71a2b236f344cfbf334f97c8f59547e1e21fb23');
Retrieving by category
const transactionByCategory = await pushChain.tx.get('*', {
category: 'CUSTOM:SAMPLE_TX',
});
Retrieving by sender address
We will fetch transactions sent by this CAIP-10 address: push:devnet:pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6
.
const transctionBySender = await pushChain.tx.get(
{
chain: CONSTANTS.Chain.Push.devnet.name,
chainId: CONSTANTS.Chain.Push.devnet.chainId,
account: 'pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6',
},
{ filterMode: 'sender' }
);
Retrieving by receiver address
We will fetch transactions received by this CAIP-10 address: push:devnet:pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6
.
const transctionBySender = await pushChain.tx.get(
{
chain: CONSTANTS.Chain.Push.devnet.name,
chainId: CONSTANTS.Chain.Push.devnet.chainId,
account: 'pushconsumer1l8wd6ucrwf43stuavxwfc9jmr5emlkr66guml6',
},
{ filterMode: 'recipient' }
);