-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
79 additions
and
62 deletions.
There are no files selected for viewing
Binary file removed
BIN
-101 KB
.yarn/cache/@blockfrost-openapi-npm-0.1.60-64f77da01a-2ab66de532.zip
Binary file not shown.
Binary file added
BIN
+105 KB
.yarn/cache/@blockfrost-openapi-npm-0.1.61-beta.0-32e9de66b5-d8041d9159.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,33 @@ | ||
import { Order } from '../common.js'; | ||
|
||
export interface DrepRequestParameters { | ||
export interface RequestParameters { | ||
Querystring: { | ||
count: number; | ||
page: number; | ||
order: Order; | ||
}; | ||
} | ||
export interface RequestParametersDRepID { | ||
Params: { | ||
hash: string; | ||
drep_id: string; | ||
}; | ||
Querystring: { | ||
count: number; | ||
page: number; | ||
order: Order; | ||
}; | ||
} | ||
|
||
export interface DReps { | ||
drep_id: string; | ||
hex: string; | ||
} | ||
|
||
export interface DRepsDrepID { | ||
drep_id: string; | ||
hex: string; | ||
amount: string; | ||
active: boolean; | ||
active_epoch: number | null; | ||
has_script: boolean; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { OpenApiResponseTypes } from '../openapi-wrapper'; | ||
|
||
export type DReps = OpenApiResponseTypes['drep_content']; | ||
export type DRepsDrepID = OpenApiResponseTypes['drep_details_content']; | ||
export type DRepsDrepIDMetadata = OpenApiResponseTypes['drep_metadata']; | ||
export type DRepsDrepIDUpdates = OpenApiResponseTypes['drep_updates']; | ||
export type DRepsDrepIDDelegators = OpenApiResponseTypes['drep_delegators']; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters