[VPD-404]: Add PT_clisBNBx_25JUN2026 market to core pool and BNB e-mode group#657
[VPD-404]: Add PT_clisBNBx_25JUN2026 market to core pool and BNB e-mode group#657fred-venus merged 14 commits intomainfrom
Conversation
GitGuru7
left a comment
There was a problem hiding this comment.
please fix simulations for price check, rest looks good to me.
| { | ||
| target: bsctestnet.UNITROLLER, | ||
| signature: "setPoolActive(uint96,bool)", | ||
| params: [EMODE_POOL.id, true], |
There was a problem hiding this comment.
BNB eMode is already active on mainnet. We can just add a check in the simulations and remove this command from the VIP.
| { | ||
| target: bsctestnet.UNITROLLER, | ||
| signature: "setIsBorrowAllowed(uint96,address,bool)", | ||
| params: [ | ||
| EMODE_POOL.id, | ||
| EMODE_POOL.marketsConfig.vPT_clisBNB_25JUN2026.address, | ||
| EMODE_POOL.marketsConfig.vPT_clisBNB_25JUN2026.borrowAllowed, | ||
| ], |
There was a problem hiding this comment.
This is false by default, so we can remove this comment and just include a check in the simulations.
| comptroller: bscmainnet.UNITROLLER, | ||
| isLegacyPool: true, | ||
| }, | ||
| interestRateModel: { |
There was a problem hiding this comment.
for irm, since the asset is supply only, do we really need it ? The value here are just random value ?
There was a problem hiding this comment.
We have taken the IRM values the same as the asBNB market.
There was a problem hiding this comment.
fine, but it won't have any actual usage, is it
There was a problem hiding this comment.
@fred-venus Yes, for a supply-only market, the IRM is not functionally used, but a contract may still be assigned for protocol consistency.
|
For the test simulation only issue: But i think it's expected for PT asset, can use |
yes it's realted to PT assest. |
Add PT-clisBNB-25JUN2026 Market to Venus BNB Chain
Introduces PT-clisBNB-25JUN2026 as a new supply-only market in the Core Pool,
borrow paused.Configures risk parameters:
Sets up Pendle oracle.
Adds the market to the BNB emode group.
Configures conversion incentives for relevant converters.
Includes simulation tests for mainnet and testnet.
Updated the
VOTING_PERIODto192384in the index.ts to account for the new block rate in theFermi upgrade.