Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
GitGuru7 committed Dec 16, 2024
1 parent d62b6a2 commit 44cb7d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion simulations/vip-407+vip-408/sepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const interestRateModelAddresses: { [key in VTokenSymbol]: string } = {
vUSDC_Ethena: "",
};

forking(7270036, async () => {
forking(7290820, async () => {
let poolRegistry: Contract;
let noOfPools: BigNumber;

Expand Down
10 changes: 3 additions & 7 deletions vips/vip-407/bsctestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const vip407 = () => {
{
target: BOUND_VALIDATOR,
signature: "setValidateConfig((address,uint256,uint256))",
params: [[MockPT_USDe_27MAR2025, UPPER_BOUND_RATIO, LOWER_BOUND_RATIO]],
params: [[MockUSDe, UPPER_BOUND_RATIO, LOWER_BOUND_RATIO]],
dstChainId: LzChainId.sepolia,
},
{
Expand All @@ -74,11 +74,7 @@ export const vip407 = () => {
target: sepolia.RESILIENT_ORACLE,
signature: "setTokenConfig((address,address[3],bool[3]))",
params: [
[
MockPT_USDe_27MAR2025,
[sepolia.REDSTONE_ORACLE, sepolia.CHAINLINK_ORACLE, sepolia.CHAINLINK_ORACLE],
[true, true, true],
],
[MockUSDe, [sepolia.REDSTONE_ORACLE, sepolia.CHAINLINK_ORACLE, sepolia.CHAINLINK_ORACLE], [true, true, true]],
],
dstChainId: LzChainId.sepolia,
},
Expand Down Expand Up @@ -143,7 +139,7 @@ export const vip407 = () => {
{
target: sepolia.POOL_REGISTRY,
signature: "addPool(string,address,uint256,uint256,uint256)",
params: ["Core", COMPTROLLER_ETHENA, parseUnits("0.5", 18), parseUnits("1.04", 18), parseUnits("100", 18)],
params: ["Ethena", COMPTROLLER_ETHENA, parseUnits("0.5", 18), parseUnits("1.04", 18), parseUnits("100", 18)],
dstChainId: LzChainId.sepolia,
},
{
Expand Down
4 changes: 2 additions & 2 deletions vips/vip-408/bsctestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const vip408 = () => {
{
target: sepolia.VTREASURY,
signature: "withdrawTreasuryToken(address,uint256,address)",
params: [MocksUSDe, parseUnits("10653", 6), sepolia.NORMAL_TIMELOCK],
params: [MocksUSDe, parseUnits("10653", 18), sepolia.NORMAL_TIMELOCK],
dstChainId: LzChainId.sepolia,
},
{
Expand All @@ -73,7 +73,7 @@ export const vip408 = () => {
{
target: MocksUSDe,
signature: "approve(address,uint256)",
params: [sepolia.POOL_REGISTRY, parseUnits("10653", 6)],
params: [sepolia.POOL_REGISTRY, parseUnits("10653", 18)],
dstChainId: LzChainId.sepolia,
},
{
Expand Down

0 comments on commit 44cb7d2

Please sign in to comment.