Skip to content

Commit

Permalink
fix: beraSTONE
Browse files Browse the repository at this point in the history
  • Loading branch information
57Ark committed Jan 21, 2025
1 parent 7b666f2 commit 2b952f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/SupportedContracts.sol
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ contract SupportedContracts is Test, ISupportedContracts {
contractDataByNetwork[1].push(
ContractData({
id: Contracts.BERACHAIN_STONE_VAULT,
addr: 0x97Ad75064b20fb2B2447feD4fa953bF7F007a706,
addr: 0x8f88aE3798E8fF3D0e0DE7465A0863C9bbB577f0,
name: "BERACHAIN_STONE_VAULT"
})
);
Expand Down
13 changes: 7 additions & 6 deletions src/contracts/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const contractsByNetwork: Record<
STAKED_USDE_VAULT: tokenDataByNetwork.Mainnet.sUSDe,
STAKED_USDS_VAULT: tokenDataByNetwork.Mainnet.sUSDS,
SAVINGS_CRVUSD_VAULT: tokenDataByNetwork.Mainnet.scrvUSD,
BERACHAIN_STONE_VAULT: tokenDataByNetwork.Mainnet.beraSTONE,
BERACHAIN_STONE_VAULT: "0x8f88aE3798E8fF3D0e0DE7465A0863C9bbB577f0",

// CONVEX
CONVEX_BOOSTER: "0xF403C135812408BFbE8713b5A23a04b3D48AAE31",
Expand Down Expand Up @@ -434,7 +434,7 @@ export const contractsByNetwork: Record<
STAKED_USDE_VAULT: tokenDataByNetwork.Arbitrum.sUSDe,
STAKED_USDS_VAULT: tokenDataByNetwork.Arbitrum.sUSDS,
SAVINGS_CRVUSD_VAULT: tokenDataByNetwork.Arbitrum.scrvUSD,
BERACHAIN_STONE_VAULT: tokenDataByNetwork.Arbitrum.beraSTONE,
BERACHAIN_STONE_VAULT: NOT_DEPLOYED,

// CONVEX
CONVEX_BOOSTER: NOT_DEPLOYED,
Expand Down Expand Up @@ -605,7 +605,7 @@ export const contractsByNetwork: Record<
STAKED_USDE_VAULT: tokenDataByNetwork.Optimism.sUSDe,
STAKED_USDS_VAULT: tokenDataByNetwork.Optimism.sUSDS,
SAVINGS_CRVUSD_VAULT: tokenDataByNetwork.Optimism.scrvUSD,
BERACHAIN_STONE_VAULT: tokenDataByNetwork.Optimism.beraSTONE,
BERACHAIN_STONE_VAULT: NOT_DEPLOYED,

// CONVEX
CONVEX_BOOSTER: NOT_DEPLOYED,
Expand Down Expand Up @@ -776,7 +776,7 @@ export const contractsByNetwork: Record<
STAKED_USDE_VAULT: tokenDataByNetwork.Base.sUSDe,
STAKED_USDS_VAULT: tokenDataByNetwork.Base.sUSDS,
SAVINGS_CRVUSD_VAULT: tokenDataByNetwork.Base.scrvUSD,
BERACHAIN_STONE_VAULT: tokenDataByNetwork.Base.beraSTONE,
BERACHAIN_STONE_VAULT: NOT_DEPLOYED,

// CONVEX
CONVEX_BOOSTER: NOT_DEPLOYED,
Expand Down Expand Up @@ -961,7 +961,8 @@ export type ERC4626Params = {
| Protocols.Sommelier
| Protocols.Ethena
| Protocols.Sky
| Protocols.Curve;
| Protocols.Curve
| Protocols.Berachain;
type: AdapterInterface.ERC4626_VAULT;
underlying: NormalToken;
} & BaseContractParams;
Expand Down Expand Up @@ -1676,7 +1677,7 @@ export const contractParams: Record<SupportedContract, ContractParams> = {
},
BERACHAIN_STONE_VAULT: {
name: "Berachain STONE Vault",
protocol: Protocols.Curve,
protocol: Protocols.Berachain,
type: AdapterInterface.ERC4626_VAULT,
underlying: "WETH",
},
Expand Down
1 change: 1 addition & 0 deletions src/contracts/protocols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ export enum Protocols {
Pendle,
Sky,
Equalizer,
Berachain,
}

0 comments on commit 2b952f1

Please sign in to comment.