TransactionExec()
Summary
Route
Type
Example
Description
Request
Request Structure
{
// parameters common for all requests
"MethodApi" : "string_value", // API method name to form and process a transaction
"PublicKey":"string_value", // Sender public key in Base58
"ReceiverPublicKey":"string_value", // Recipient public key in Base58
"Amount":"decimal", // Transaction amount
"Fee":"decimal", // Maximum fee approved by the user
"Method":"string_value" // Invoked smart contract method
"SmartContractSource":"String_value", //Source code of smart contract
"Args":"string_value" // Arguments for the execution of a smart contract method
"UserData":"string_value" // If needed extra information can be stored inside UserData
"TransactionSignature":"string_value" // Signature in base58 retrieved with TransactionPack()
}Request Parameters
Response
Response Structure
Example Code
Python
Last updated