Skip to main content
Tempo API method that sends a signed transaction to the network. Tempo supports standard Ethereum transaction types plus type 0x76 (TempoTransaction) with features like passkey authentication, call batching, and fee sponsorship.
Stablecoin gas fees: On Tempo, transaction fees are paid in TIP-20 stablecoins like pathUSD, not a native token. The fee is automatically converted using the Fee AMM.

Parameters

  • signedTransaction — the signed transaction data as a hex string

Response

  • result — the transaction hash of the submitted transaction

eth_sendRawTransaction code examples

const ethers = require('ethers');
const NODE_URL = "CHAINSTACK_NODE_URL";
const provider = new ethers.JsonRpcProvider(NODE_URL);

const sendTransaction = async () => {
    const wallet = new ethers.Wallet("YOUR_PRIVATE_KEY", provider);

    const tx = {
      to: "0xRecipientAddress",
      value: 0, // Tempo uses TIP-20 tokens for value transfer
      data: "0x..." // TIP-20 transfer calldata
    };

    const txResponse = await wallet.sendTransaction(tx);
    console.log(`Transaction hash: ${txResponse.hash}`);

    const receipt = await txResponse.wait();
    console.log(`Confirmed in block: ${receipt.blockNumber}`);
  };

sendTransaction();