Skip to content
Closed
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
1 change: 1 addition & 0 deletions blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10825,6 +10825,7 @@ components:
- timelock
- plutusV1
- plutusV2
- plutusV3
example: plutusV1
description: Type of the script language
serialised_size:
Expand Down
1 change: 1 addition & 0 deletions docs/blockfrost-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11393,6 +11393,7 @@ components:
- timelock
- plutusV1
- plutusV2
- plutusV3
example: plutusV1
description: Type of the script language
serialised_size:
Expand Down
2 changes: 1 addition & 1 deletion json-schema.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14749,7 +14749,8 @@
"enum": [
"timelock",
"plutusV1",
"plutusV2"
"plutusV2",
"plutusV3"
],
"example": "plutusV1",
"description": "Type of the script language"
Expand Down
1 change: 1 addition & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11393,6 +11393,7 @@ components:
- timelock
- plutusV1
- plutusV2
- plutusV3
example: plutusV1
description: Type of the script language
serialised_size:
Expand Down
2 changes: 1 addition & 1 deletion src/generated-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10673,7 +10673,7 @@ export interface components {
* @example plutusV1
* @enum {string}
*/
type: "timelock" | "plutusV1" | "plutusV2";
type: "timelock" | "plutusV1" | "plutusV2" | "plutusV3";
/**
* @description The size of the CBOR serialised script, if a Plutus script
* @example 3119
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/scripts/script.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ properties:
description: Script hash
type:
type: string
enum: [timelock, plutusV1, plutusV2]
enum: [timelock, plutusV1, plutusV2, plutusV3]
example: "plutusV1"
description: Type of the script language
serialised_size:
Expand Down