Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove non_recursive_supplied_amount #31

Merged
merged 1 commit into from
Sep 23, 2024
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
1 change: 0 additions & 1 deletion schemas/lending/SCHEMA.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Snapshot of the pool's state in the lending protocol.
| available_amount_usd | (Optional) The available amount of token's in this pool in USD. | number |
| supplied_amount | The total amount of the underlying token supplied in this pool, decimal normalized. | number |
| supplied_amount_usd | (Optional) The supplied amount in USD. | number |
| non_recursive_supplied_amount | The amount of non recursive supply in this pool, in the underlying token, decimal normalized. This is an aggregation of all of the user's net supply of this asset. | number |
| collateral_amount | (Optional) The amount of collateral only tokens in this pool. | number |
| collateral_amount_usd | (Optional) The amount of collateral only tokens in the pool. | number |
| collateral_factor | The collateral factor of the pool (defined as a decimal percentage, between 0-100). | number |
Expand Down
4 changes: 0 additions & 4 deletions schemas/lending/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,6 @@
"description": "(Optional) The supplied amount in USD.",
"type": "number"
},
"non_recursive_supplied_amount": {
"description": "The amount of non recursive supply in this pool, in the underlying token, decimal normalized. This is an aggregation of all of the user's net supply of this asset.",
"type": "number"
},
"collateral_amount": {
"description": "(Optional) The amount of collateral only tokens in this pool.",
"type": "number"
Expand Down