Skip to main content

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.

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.

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.

const subscriptionId = await pushChain.ws.subscribe((block) => {
console.log(block);
});

Subscribe parameters

ParamTypeRemarks
callbackfunctionA 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
{ subscriptionId: 'sub_1740084008318_6mnhj8u' }
Expected response - Block
{
blockHash: 'd56137b6b2969a19da53130d11e3bc0b26dfebdebb4a5fb4a9e11a871afdc806',
transactions: [
{
hash: 'af6a0a3d0c33164b271ad5801e2ae52256c41ed6027b8cda168008c987e2c9f6',
category: 'CUSTOM:CORE_SDK',
from: 'eip155:11155111:0xea3ee66EaF0e504603708a1E36603F1CA3916005',
recipients: [
'eip155:11155111:0x59f07d4130513c767e10C7fE3F1A7A45388A133f',
'eip155:11155111:0x644972F4309B840ed3a7aC6044F71A0721b93cc9',
'eip155:11155111:0xB87B4bBfD86cEB41363e87D4517fb9055AD570e4'
]
}
]
}

Block Data Structure:

ParamTypeRemarks
blockHashstringThe hash of the block.
transactionsTransaction[]An array containing transaction objects present within the block.

Transaction Data Structure:

ParamTypeRemarks
hashstringThe hash of the transaction.
categorystringThe category of the transaction.
fromstringThe sender of the transaction.
recipientsstring[]An array of recipients of the transaction.

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.

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.

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.

const isConnected = pushChain.ws.isConnected();
Expected response
true

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);
    1. Devnet Drop S2 is Live!Explore Push Chain Devnet, complete quests, bang out multipliers, and earn airdrops.