send_transaction

The send_transaction method is designed to submit a transaction to the EOS blockchain. It accepts a transaction in JSON format and attempts to apply it to the blockchain, enabling various interactions such as token transfers, smart contract invocations, and more.

Example use cases:

1

Transaction Submission
Developers and users can utilize the send_transaction method to broadcast their transactions to the EOS network, enabling various blockchain interactions and operations.

2

Smart Contract Interaction
This method is crucial for invoking actions on smart contracts deployed on the EOS blockchain, allowing users to interact with decentralized applications.

3

Token Transfer
send_transaction is used for transferring EOS tokens or other tokens deployed on the EOS blockchain between accounts.


Parameters

parameter
type
description
signatures
string[]
Array of signatures required to authorize the transaction.
compression
boolean
Indicates whether compression is used; usually false.
packedContextFreeData
string
JSON converted to hexadecimal.
packedTrx
string
Transaction object converted from JSON to hexadecimal.

Return Object

The send_transaction method typically does not return any object. A 200 OK status indicates a successful transaction broadcast.


JSON-RPC Request Example

send_transaction Request
Response Example
send_transaction Response

Share on
Share on FacebookShare on XShare on LinkedIn
Did you find this page useful?