Push transactions
post
This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
Bodyobject · Transaction[]
expirationstringRequiredPattern:
Time that transaction must be confirmed by.
^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$
ref_block_numintegerRequired
ref_block_prefixintegerRequired
32-bit portion of block ID
max_net_usage_wordsany ofRequired
A whole number
stringOptionalPattern:
^\d+$
integerOptional
max_cpu_usage_msany ofRequired
A whole number
stringOptionalPattern:
^\d+$
integerOptional
delay_secintegerRequired
Responses
200
OK
application/json
Responseany
Returns Nothing
post
POST /v1/chain/push_transactions HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 503
[
{
"expiration": "text",
"ref_block_num": 1,
"ref_block_prefix": 1,
"max_net_usage_words": "text",
"max_cpu_usage_ms": "text",
"delay_sec": 1,
"context_free_actions": [
{
"account": "text",
"name": "text",
"authorization": [
{
"actor": "text",
"permission": "text"
}
],
"data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"hex_data": "text"
}
],
"actions": [
{
"account": "text",
"name": "text",
"authorization": [
{
"actor": "text",
"permission": "text"
}
],
"data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"hex_data": "text"
}
],
"transaction_extensions": [
[
1
]
]
}
]
200
OK
No content