Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1516,7 +1516,10 @@ paths:
tags:
- Cardano » Governance
summary: Specific proposal metadata
description: Proposal metadata information.
description: |
Proposal metadata information.

If this endpoint returns `404` or empty metadata for a known proposal, the off-chain metadata could not be fetched (e.g. unreachable URL or hash mismatch). Use the [`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata) variant instead — it always returns the anchor `url` and `hash` along with an `error` object describing the fetch failure, so you can retrieve the metadata manually if needed.
parameters:
- in: path
name: tx_hash
Expand Down
12 changes: 11 additions & 1 deletion docs/blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,17 @@ paths:
tags:
- Cardano » Governance
summary: Specific proposal metadata
description: Proposal metadata information.
description: >
Proposal metadata information.


If this endpoint returns `404` or empty metadata for a known proposal,
the off-chain metadata could not be fetched (e.g. unreachable URL or
hash mismatch). Use the
[`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata)
variant instead — it always returns the anchor `url` and `hash` along
with an `error` object describing the fetch failure, so you can retrieve
the metadata manually if needed.
parameters:
- in: path
name: tx_hash
Expand Down
307 changes: 156 additions & 151 deletions docs/midnight/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1878,7 +1878,7 @@
"Cardano » Governance"
],
"summary": "Specific proposal metadata",
"description": "Proposal metadata information.",
"description": "Proposal metadata information.\n\nIf this endpoint returns `404` or empty metadata for a known proposal, the off-chain metadata could not be fetched (e.g. unreachable URL or hash mismatch). Use the [`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata) variant instead — it always returns the anchor `url` and `hash` along with an `error` object describing the fetch failure, so you can retrieve the metadata manually if needed.\n",
"parameters": [
{
"in": "path",
Expand Down
12 changes: 11 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,17 @@ paths:
tags:
- Cardano » Governance
summary: Specific proposal metadata
description: Proposal metadata information.
description: >
Proposal metadata information.


If this endpoint returns `404` or empty metadata for a known proposal,
the off-chain metadata could not be fetched (e.g. unreachable URL or
hash mismatch). Use the
[`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata)
variant instead — it always returns the anchor `url` and `hash` along
with an `error` object describing the fetch failure, so you can retrieve
the metadata manually if needed.
parameters:
- in: path
name: tx_hash
Expand Down
3 changes: 3 additions & 0 deletions src/generated-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1443,6 +1443,9 @@ export interface paths {
/**
* Specific proposal metadata
* @description Proposal metadata information.
*
* If this endpoint returns `404` or empty metadata for a known proposal, the off-chain metadata could not be fetched (e.g. unreachable URL or hash mismatch). Use the [`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata) variant instead — it always returns the anchor `url` and `hash` along with an `error` object describing the fetch failure, so you can retrieve the metadata manually if needed.
*
*/
get: {
parameters: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ get:
tags:
- Cardano » Governance
summary: Specific proposal metadata
description: Proposal metadata information.
description: |
Proposal metadata information.

If this endpoint returns `404` or empty metadata for a known proposal, the off-chain metadata could not be fetched (e.g. unreachable URL or hash mismatch). Use the [`/governance/proposals/{gov_action_id}/metadata`](#tag/cardano--governance/GET/governance/proposals/{gov_action_id}/metadata) variant instead — it always returns the anchor `url` and `hash` along with an `error` object describing the fetch failure, so you can retrieve the metadata manually if needed.
parameters:
- in: path
name: tx_hash
Expand Down
Loading