A REST interface for state queries, transaction generation and broadcasting.
Retrieve a transaction using its hash.
hash required | string Example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B Tx hash |
Tx with the provided hash
Internal Server Error
Search transactions by events.
message.action | string Example: message.action=send transaction events such as 'message.action=send' which results in the following endpoint: 'GET /txs?message.action=send'. note that each module documents its own events. look for xx_events.md in the corresponding certik-sdk/docs/spec directory |
message.sender | string Example: message.sender=certik16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv transaction tags with sender: 'GET /txs?message.action=send&message.sender=certik16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv' |
page | integer Example: page=1 Page number |
limit | integer Example: limit=1 Maximum number of items per page |
tx.minheight | integer Example: tx.minheight=25 transactions on blocks with height greater or equal this value |
tx.maxheight | integer Example: tx.maxheight=800000 transactions on blocks with height less than or equal this value |
All txs matching the provided events
Invalid search events
Internal Server Error
Broadcast a signed tx to a full node
The tx must be a signed StdTx. The supported broadcast modes include "block"
(return after tx commit), "sync"
(return afer CheckTx) and "async"
(return right away).
tx | object (StdTx) |
mode | string |
Tx broadcasting result
Internal Server Error
Encode a transaction (signed or not) from JSON to base64-encoded Amino serialized bytes
The tx to encode
tx | object (StdTx) |
The tx was successfully decoded and re-encoded
The tx was malformated
Server internal error
Decode a transaction (signed or not) from base64-encoded Amino serialized bytes to JSON
The tx to decode
tx | string |
The tx was successfully decoded
The tx was malformated
Server internal error
Get if the node is currently syning with other nodes
Node syncing status
Server internal error
The latest block
Server internal error
height required | number Example: 1 Block height |
The block at a specific height
Invalid height
Request block height doesn't
Server internal error