Skip to content

Commit

Permalink
feat: make zkSync VIP fast track
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Sep 16, 2024
1 parent 4df1908 commit b877981
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vips/vip-365/bscmainnet.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ProposalType } from "src/types";
import { makeProposal } from "src/utils";
import { NORMAL_TIMELOCK } from "src/vip-framework";
import { FAST_TRACK_TIMELOCK } from "src/vip-framework";

const vip365 = () => {
const meta = {
Expand Down Expand Up @@ -151,14 +151,14 @@ Privilege commands on zkSync Era will be executed by the [Guardian wallet](https
return makeProposal(
[
{
target: NORMAL_TIMELOCK,
target: FAST_TRACK_TIMELOCK,
signature: "",
params: [],
value: "1",
},
],
meta,
ProposalType.REGULAR,
ProposalType.FAST_TRACK,
);
};

Expand Down

0 comments on commit b877981

Please sign in to comment.