Changelog for program-v0.11.0, bump version, update idl
This commit is contained in:
parent
762608ecce
commit
535b0b2d0c
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -4,6 +4,27 @@ Update this for each program release and mainnet deployment.
|
|||
|
||||
## not on mainnet
|
||||
|
||||
### v0.11.0, 2023-4-
|
||||
|
||||
Deployment:
|
||||
|
||||
- Limit funding and interest accrual during downtimes (#529)
|
||||
|
||||
Previously, if the funding or interest updating instruction wassn't
|
||||
called for a long time (like for a solana downtime or the security
|
||||
council halting the program), the next update would apply funding or
|
||||
interest for the whole time interval since the last update.
|
||||
|
||||
This could lead to a bad downtime situation becoming worse. Instead,
|
||||
limit the maximum funding and interest time interval to one hour.
|
||||
|
||||
- Update default interest parameters in token_register_trustless (#523)
|
||||
|
||||
This brings them in line with the recent interest rate changes for >50%
|
||||
utilization.
|
||||
|
||||
- Perp: Fix logging of funding rate in update funding and deactivate pos (#528)
|
||||
|
||||
### v0.10.0, 2023-4-
|
||||
|
||||
Deployment:
|
||||
|
|
|
@ -3005,7 +3005,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "mango-v4"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"anchor-lang",
|
||||
"anchor-spl",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "0.10.0",
|
||||
"version": "0.11.0",
|
||||
"name": "mango_v4",
|
||||
"instructions": [
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mango-v4"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
description = "Created with Anchor"
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
export type MangoV4 = {
|
||||
"version": "0.10.0",
|
||||
"version": "0.11.0",
|
||||
"name": "mango_v4",
|
||||
"instructions": [
|
||||
{
|
||||
|
@ -8684,7 +8684,7 @@ export type MangoV4 = {
|
|||
};
|
||||
|
||||
export const IDL: MangoV4 = {
|
||||
"version": "0.10.0",
|
||||
"version": "0.11.0",
|
||||
"name": "mango_v4",
|
||||
"instructions": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue