Skip to main content

Send Transaction Overview

We will go over how you can use the Push Chain SDK to send transactions to the network.

Send Transaction API

const tx = await pushChain.tx.send(
[
// Defaults to the Ethereum Sepolia chain
createUniversalAccount({
address: '0x22B173e0596c6723dD1A95817052D96b97176Dd8',
}),
],
{
category: 'MY_CUSTOM_CATEGORY',
data: 'Hello world',
}
);

Send Transaction parameters

ParamTypeRemarks
recipientsUniversalAccount[]An array of recipient addresses in a chain-agnostic format. Each address specifies the destination for the transaction.
options.categorystringThe category of the transaction, used to classify or tag the transaction (e.g., example-category).
options.dataUint8ArraySerialized data payload for the transaction.

Expected response
{
"txHash": "8bff4e865dfb9d4b028ed1924f9151d7a104787617abc0eac3b0869be59db6ad"
}

Response properties description:

PropertyTypeDescription
txHashstringTransaction Hash

Example: send an email to a Solana address

Here below is an example of sending an Email to a Solana address. The payload is a simply JSON object with a title and message.

const tx = await pushChain.tx.send(
// We will send the transaction to a Solana address
[
createUniversalAccount({
chain: CONSTANTS.CHAIN.SOLANA,
chainId: CONSTANTS.CHAIN_ID.SOLANA.DEVNET,
address: 'ySYrGNLLJSK9hvGGpoxg8TzWfRe8ftBtDSMECtx2eJR',
}),
],
{
category: 'MY_EMAIL_APP',
// Sample email payload
data: JSON.stringify({
title: 'Hello old friend from Solana!',
message: 'Greetings from Ethereum world.',
}),
}
);
    1. Devnet Drop S2 is Live!Explore Push Chain Devnet, complete quests, bang out multipliers, and earn airdrops.