Skip to content

Commit

Permalink
Merge branch 'develop' into feat/VEN-2727
Browse files Browse the repository at this point in the history
  • Loading branch information
Debugger022 committed Sep 12, 2024
2 parents 1bf4b12 + f885641 commit 2788d3f
Show file tree
Hide file tree
Showing 51 changed files with 39,678 additions and 1,993 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ DEPLOYER_PRIVATE_KEY=
#ARCHIVE_NODE_arbitrumsepolia=https://sepolia-rollup.arbitrum.io/rpc
#ARCHIVE_NODE_arbitrumone=https://open-platform.nodereal.io/<YOUR_KEY_HERE>/arbitrum-nitro/
#ARCHIVE_NODE_zksyncsepolia=https://zksync-sepolia.g.alchemy.com/v2/<YOUR_KEY_HERE>
#ARCHIVE_NODE_zksyncmainnet=https://open-platform.nodereal.io/<YOUR_KEY_HERE>/zksync
#ARCHIVE_NODE_opsepolia=https://sepolia.optimism.io
#ARCHIVE_NODE_opmainnet=https://opt-mainnet.nodereal.io/v1/<YOUR_KEY_HERE>

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
EXPORT=true yarn hardhat export --network ${NETWORK} --export ./deployments/${NETWORK}.json
jq -M '{name, chainId, addresses: .contracts | map_values(.address)}' ./deployments/${NETWORK}.json > ./deployments/${NETWORK}_addresses.json
done
for NETWORK in zksyncsepolia; do
for NETWORK in zksyncsepolia zksyncmainnet; do
EXPORT=true yarn hardhat export --network ${NETWORK} --export ./deployments/${NETWORK}.json --config hardhat.config.zksync.ts
jq -M '{name, chainId, addresses: .contracts | map_values(.address)}' ./deployments/${NETWORK}.json > ./deployments/${NETWORK}_addresses.json
done
Expand Down
174 changes: 174 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions deploy/018-native-token-gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { contracts as ilEthereum } from "../deployments/ethereum.json";
import { contracts as ilOpbnbMainnet } from "../deployments/opbnbmainnet.json";
import { contracts as ilOpbnbTestnet } from "../deployments/opbnbtestnet.json";
import { contracts as ilSepolia } from "../deployments/sepolia.json";
import { contracts as ilZkMainnet } from "../deployments/zksyncmainnet.json";
import { contracts as ilZkSepolia } from "../deployments/zksyncsepolia.json";
import { getConfig } from "../helpers/deploymentConfig";

Expand Down Expand Up @@ -68,19 +69,33 @@ const VWNativeInfo: { [key: string]: VTokenConfig[] } = {
name: "vWETH_Core",
address: ilArbSepolia.VToken_vWETH_Core.address,
},
{
name: "vWETH_LiquidStakedETH",
address: ilArbSepolia.VToken_vWETH_LiquidStakedETH.address,
},
],
arbitrumone: [
{
name: "vWETH_Core",
address: ilArbOne.VToken_vWETH_Core.address,
},
{
name: "vWETH_LiquidStakedETH",
address: ilArbOne.VToken_vWETH_LiquidStakedETH.address,
},
],
zksyncsepolia: [
{
name: "vWETH_Core",
address: ilZkSepolia.VToken_vWETH_Core.address,
},
],
zksyncmainnet: [
{
name: "vWETH_Core",
address: ilZkMainnet.VToken_vWETH_Core.address,
},
],
};

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

0 comments on commit 2788d3f

Please sign in to comment.