Skip to content

Commit

Permalink
Merge pull request #196 from blockfrost/v0.1.37
Browse files Browse the repository at this point in the history
release: 0.1.36 -> 0.1.37
  • Loading branch information
mmahut authored Mar 24, 2022
2 parents 6cc42d6 + 6b0e167 commit 96de82f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project will adhere to [Semantic Versioning](https://semver.org/spec/v2

## [Unreleased]

## [0.1.37] - 2021-03-24

### Added

- `type` property to `/accounts/{stake_address}/rewards` endpoint
- `/utils/txs/evaluate` endpoint

## [0.1.36] - 2021-12-21

Expand Down
14 changes: 11 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.0
info:
version: 0.1.36
version: 0.1.37
title: Blockfrost.io ~ API Documentation
x-logo:
url: https://staging.blockfrost.io/images/logo.svg
Expand Down Expand Up @@ -6256,7 +6256,7 @@ components:
enum:
- leader
- member
- refund
- pool_deposit_refund
description: Type of the reward
required:
- epoch
Expand All @@ -6273,13 +6273,21 @@ components:
pool_id: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy
type: member
- epoch: 217
amount: '0'
amount: '1'
pool_id: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy
type: member
- epoch: 217
amount: '1337'
pool_id: pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs
type: leader
- epoch: 218
amount: '1395265'
pool_id: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy
type: member
- epoch: 218
amount: '500000000'
pool_id: pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs
type: pool_deposit_refund
account_history_content:
type: array
items:
Expand Down
2 changes: 1 addition & 1 deletion src/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.0
info:
version: "0.1.36"
version: "0.1.37"
title: Blockfrost.io ~ API Documentation
x-logo:
url: https://staging.blockfrost.io/images/logo.svg
Expand Down
12 changes: 10 additions & 2 deletions src/schemas/accounts/account_reward_content.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ items:
enum:
- leader
- member
- refund
- pool_deposit_refund
description: Type of the reward
required:
- epoch
Expand All @@ -33,10 +33,18 @@ example:
pool_id: "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
type: member
- epoch: 217
amount: "0"
amount: "1"
pool_id: "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
type: member
- epoch: 217
amount: "1337"
pool_id: "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs"
type: leader
- epoch: 218
amount: "1395265"
pool_id: "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
type: member
- epoch: 218
amount: "500000000"
pool_id: "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs"
type: pool_deposit_refund

1 comment on commit 96de82f

@vercel
Copy link

@vercel vercel bot commented on 96de82f Mar 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.