Skip to content

Commit

Permalink
refactor: change file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
GitGuru7 committed Aug 9, 2024
1 parent 9958a99 commit 8e723ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import { LzChainId } from "src/types";
import { expectEvents, initMainnetUser } from "src/utils";
import { forking, testVip } from "src/vip-framework";

import vip349, {
import vip350, {
MAX_DAILY_RECEIVE_LIMIT,
MAX_DAILY_SEND_LIMIT,
MIN_DST_GAS,
SINGLE_RECEIVE_LIMIT,
SINGLE_SEND_LIMIT,
} from "../../vips/vip-349/bsctestnet";
} from "../../vips/vip-350/bsctestnet";
import XVS_ABI from "./abi/XVS.json";
import XVS_BRIDGE_ADMIN_ABI from "./abi/XVSBridgeAdmin.json";
import XVS_BRIDGE_SRC_ABI from "./abi/XVSProxyOFTSrc.json";
Expand Down Expand Up @@ -43,7 +43,7 @@ forking(42792146, async () => {
defaultAdapterParams = ethers.utils.solidityPack(["uint16", "uint256"], [1, 300000]);
});

testVip("vip-349 testnet", await vip349(), {
testVip("vip-350 testnet", await vip350(), {
callbackAfterExecution: async (txResponse: TransactionResponse) => {
await expectEvents(
txResponse,
Expand Down
4 changes: 2 additions & 2 deletions vips/vip-349/bsctestnet.ts → vips/vip-350/bsctestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const MAX_DAILY_SEND_LIMIT = parseUnits("50000", 18);
export const SINGLE_RECEIVE_LIMIT = parseUnits("10200", 18);
export const MAX_DAILY_RECEIVE_LIMIT = parseUnits("51000", 18);

const vip349 = () => {
const vip350 = () => {
const meta = {
version: "v2",
title: "VIP-349 Enable BSC -> ZKSYNC bridge",
Expand Down Expand Up @@ -59,4 +59,4 @@ const vip349 = () => {
);
};

export default vip349;
export default vip350;

0 comments on commit 8e723ea

Please sign in to comment.