Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Created December 21, 2020 08:40
Show Gist options
  • Save Sajjon/88fc793615ddca0bf7333f58ebf0dbe0 to your computer and use it in GitHub Desktop.
Save Sajjon/88fc793615ddca0bf7333f58ebf0dbe0 to your computer and use it in GitHub Desktop.
Get status of Zilliqa transaction using command line interface and API: https://dev.zilliqa.com/docs/apis/api-transaction-get-transaction-status
curl -d '{
"id": "1",
"jsonrpc": "2.0",
"method": "GetTransactionStatus",
"params": ["<YOUR_TRANSACTION_HASH_WITHOUT_LEADING_0x_CHARS_GOES_HERE>"]
}' -H "Content-Type: application/json" -X POST "https://api.zilliqa.com/" | python -m json.tool
@bb111189
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment