feat(stablecoin): add RedemptionPriceState account type

closes #160
This commit is contained in:
Andrea Franz
2026-08-19 11:53:45 +02:00
parent d9b7366990
commit 4e087e6ff6
3 changed files with 158 additions and 0 deletions
+24
View File
@@ -171,6 +171,30 @@
]
}
},
{
"name": "RedemptionPriceState",
"type": {
"kind": "struct",
"fields": [
{
"name": "redemption_price_at_last_update",
"type": "u128"
},
{
"name": "redemption_rate_per_millisecond",
"type": "u128"
},
{
"name": "controller_integral_term",
"type": "i128"
},
{
"name": "last_updated_at",
"type": "u64"
}
]
}
},
{
"name": "StabilityFeeAccumulator",
"type": {