WebSocket
The Push Chain network supports WebSocket connections for real-time transactions. This section provides an overview of the WebSocket protocol and how to use it to interact with the Push Chain network.
Initialize
To use the WebSocket client, you first need to initialize the Push Chain SDK if you haven't already.
You can instantiate the Push Chain SDK with write mode if you want to send transactions. In the example below we will instantiate the Push Chain SDK with
read-only
mode.
- js
- react
- reactnative
const pushChain = await PushChain.initialize();
const pushChain = await PushChain.initialize();
const pushChain = await PushChain.initialize();
Connecting to the WebSocket Server
To start a websocket connection, first you will need to connect to the Push Chain network.
- js
- react
- reactnative
await pushChain.ws.connect();
await pushChain.ws.connect();
await pushChain.ws.connect();
Subscribing to Transaction Updates
This function subscribes to block updates with optional filters. It takes a callback function to handle incoming block updates and returns a promise that resolves with a subscription ID.
- js
- react
- reactnative
const subscriptionId = await pushChain.ws.subscribe((block) => {
console.log(block);
});
const subscriptionId = await pushChain.ws.subscribe((block) => {
console.log(block);
});
const subscriptionId = await pushChain.ws.subscribe((block) => {
console.log(block);
});
Subscribe parameters
Param | Type | Remarks |
---|---|---|
callback | function | A callback function to handle incoming block updates. |
filters | {type: 'CATEGORY' or 'FROM' or 'RECIPIENTS' or 'WILDCARD', value: string[]}[] | An array of filters for the subscription. |
Expected response - Subscription ID
Expected response - Block
Unsubscribing from Transaction Updates
This function unsubscribes from transaction updates using the provided subscription ID. It returns a promise that resolves when the unsubscription is acknowledged.
- js
- react
- reactnative
await pushChain.ws.unsubscribe(subscriptionId);
await pushChain.ws.unsubscribe(subscriptionId);
await pushChain.ws.unsubscribe(subscriptionId);
Disconnecting from the WebSocket Server
This function disconnects from the WebSocket server. It returns a promise that resolves when the disconnection is acknowledged.
- js
- react
- reactnative
pushChain.ws.disconnect();
pushChain.ws.disconnect();
pushChain.ws.disconnect();
Checking Connection Status
This function checks the connection status of the WebSocket server. It returns a boolean value indicating whether the connection is active.
- js
- react
- reactnative
const isConnected = pushChain.ws.isConnected();
const isConnected = pushChain.ws.isConnected();
const isConnected = pushChain.ws.isConnected();
Expected response
Example: Retrieving Transactions filtered by category
This example demonstrates how to retrieve transactions filtered by category using the WebSocket client, then fetch the full transaction details using the transaction hash.
const pushChain = await PushChain.initialize();
// Connect to the WebSocket server
await pushChain.ws.connect();
console.log('WebSocket connected.');
// Define a custom filter to only subscribe to blocks that include transactions with the category 'CUSTOM:SAMPLE_TX'
const customFilters: SubscriptionFilter[] = [
{ type: 'CATEGORY', value: ['CUSTOM:SAMPLE_TX'] },
];
// Subscribe to block updates using the custom filter
await pushChain.ws.subscribe(async (block) => {
console.log('New block received:', block.blockHash);
// Iterate over each transaction in the block
for (const tx of block.transactions) {
// Check if the transaction category matches our filter
if (tx.category === 'CUSTOM:SAMPLE_TX') {
console.log(
`Found transaction with hash ${tx.hash} and category ${tx.category}`
);
try {
// Fetch the full transaction details using the transaction hash
const txDetails = await pushChain.tx.get(tx.hash);
// Assume the fetched result contains a list of blocks and each block contains an array of transactions
if (txDetails.blocks && txDetails.blocks.length > 0) {
const fetchedTx = txDetails.blocks[0].transactions[0];
// Log the transaction data from the fetched transaction details
console.log('Transaction Data:', fetchedTx.data);
} else {
console.log(`No details found for transaction hash ${tx.hash}`);
}
} catch (error) {
console.error('Error fetching transaction details:', error);
}
}
}
}, customFilters);