Skip to content

Commit

Permalink
fix: deployed native token gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover committed Nov 15, 2024
1 parent 609d94f commit bc3fcdc
Show file tree
Hide file tree
Showing 2 changed files with 606 additions and 0 deletions.
7 changes: 7 additions & 0 deletions deploy/018-native-token-gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { HardhatRuntimeEnvironment } from "hardhat/types";

import { contracts as ilArbOne } from "../deployments/arbitrumone.json";
import { contracts as ilArbSepolia } from "../deployments/arbitrumsepolia.json";
import { contracts as ilBaseSepolia } from "../deployments/basesepolia.json";
import { contracts as ilBscMainnet } from "../deployments/bscmainnet.json";
import { contracts as ilBscTestnet } from "../deployments/bsctestnet.json";
import { contracts as ilEthereum } from "../deployments/ethereum.json";
Expand Down Expand Up @@ -103,6 +104,12 @@ const VWNativeInfo: { [key: string]: VTokenConfig[] } = {
address: ilOpSepolia.VToken_vWETH_Core.address,
},
],
basesepolia: [
{
name: "vWETH_Core",
address: ilBaseSepolia.VToken_vWETH_Core.address,
},
],
};

const getVWNativeTokens = (networkName: string): VTokenConfig[] => {
Expand Down
Loading

0 comments on commit bc3fcdc

Please sign in to comment.