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:
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.
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.
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
Response Example