Transactions
Compare With EtherScan
EndPoint
EtherScan
SocialScan
Check Contract Execution Status
✅
✅
Check Transaction Receipt Status
✅
✅
Check Contract Execution Status
[https://docs.etherscan.io/api-endpoints/stats#check-contract-execution-status]
Returns the status code of a contract execution.
https://api.w3w.ai/mantle/v1/developer/api
?module=transaction
&action=getstatus
&txhash=0x935cad3ac666b462d726de36f3c4d5b5e63238ef264a1ae1d9ead3941bac1aa3
&apikey=YourApiKeyTokenTry this endpoint in your browser 🔗
https://api.socialscan.io/monad-testnet/v1/developer/api
?module=transaction
&action=getstatus
&txhash=0x4cd096de94913d2e57235dde8869afde791327f1f64d272fdd1be503e0b679e7
&apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91bTry this endpoint in your browser 🔗
Query Parameters
Parameter
Description
txhash
the string representing the transaction hash to check the execution status
Sample response
{
"status": "1",
"message": "OK",
"result": {
"isError": "1",
"errDescription": "execution reverted"
}
}Check Transaction Receipt Status
[https://docs.etherscan.io/api-endpoints/stats#check-transaction-receipt-status]
Returns the status code of a transaction execution.
https://api.w3w.ai/mantle/v1/developer/api
?module=transaction
&action=gettxreceiptstatus
&txhash=0xa2cc6d9273022f455631cdb326b80031148421d4d9f63eb27dcffa7b1e9750dc
&apikey=YourApiKeyTokenTry this endpoint in your browser 🔗
https://api.socialscan.io/monad-testnet/v1/developer/api
?module=transaction
&action=gettxreceiptstatus
&txhash=0x4cd096de94913d2e57235dde8869afde791327f1f64d272fdd1be503e0b679e7
&apikey=8f9d3e27-a516-4c08-b235-7d94f02ca91bTry this endpoint in your browser 🔗
Query Parameters
Parameter
Description
txhash
the string representing the transaction hash to check the receipt status
Sample response
{
"status": "1",
"message": "OK",
"result": {
"status": "1"
}
}Last updated
Was this helpful?