Transaction MIRs
GET /txs/:hash/mirs
Obtain information about Move Instantaneous Rewards (MIRs) of a specific transaction.
Request
Path Parameters
hash 64-character case-sensitive hexadecimal string required
Hash of the requested transaction.
Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b
Responses
- 200
- 400
- 403
- 404
- 418
- 429
- 500
Obtain information about Move Instantaneous Rewards (MIRs) of a specific transaction.
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
pot string required
Possible values: [reserve
, treasury
]
Source of MIR funds
cert_index integer required
Index of the certificate within the transaction
address string required
Bech32 stake address
amount string required
MIR amount in Lovelaces
[
{
"pot": "reserve",
"cert_index": 0,
"address": "stake1u9r76ypf5fskppa0cmttas05cgcswrttn6jrq4yd7jpdnvc7gt0yc",
"amount": "431833601"
}
]
Bad request
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 400,
"error": "Bad Request",
"message": "Backend did not understand your request."
}
Authentication secret is missing or invalid
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
Component not found
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 404,
"error": "Not Found",
"message": "The requested component has not been found."
}
IP has been auto-banned for extensive sending of requests after usage limit has been reached
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 418,
"error": "Requested Banned",
"message": "IP has been auto-banned for flooding."
}
Usage limit reached
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 429,
"error": "Project Over Limit",
"message": "Usage is over limit."
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 500,
"error": "Internal Server Error",
"message": "An unexpected response was received from the backend."
}
Loading...