@venusprotocol/governance-contracts
Advanced tools
Comparing version 1.4.0-dev.1 to 1.4.0-dev.2
@@ -13,5 +13,5 @@ "use strict"; | ||
sepolia: "0x94fa6078b6b8a26f0b6edffbe6501b22a10470fb", | ||
ethereum: "", | ||
ethereum: "0x285960C5B22fD66A736C7136967A3eB15e93CC67", | ||
}; | ||
exports.default = () => { }; | ||
//# sourceMappingURL=deploymentUtils.js.map |
@@ -68,3 +68,3 @@ "use strict"; | ||
bsctestnet: { | ||
url: process.env.RPC_URL || "https://data-seed-prebsc-1-s1.binance.org:8545", | ||
url: process.env.ARCHIVE_NODE_bsctestnet || "https://data-seed-prebsc-1-s1.binance.org:8545", | ||
chainId: 97, | ||
@@ -79,7 +79,7 @@ accounts: { | ||
bscmainnet: { | ||
url: process.env.RPC_URL || "https://bsc-dataseed.binance.org/", | ||
url: process.env.ARCHIVE_NODE_bscmainnet || "https://bsc-dataseed.binance.org/", | ||
accounts: DEPLOYER_PRIVATE_KEY ? [`0x${DEPLOYER_PRIVATE_KEY}`] : [], | ||
}, | ||
sepolia: { | ||
url: process.env.RPC_URL || "https://rpc.notadegen.com/eth/sepolia", | ||
url: process.env.ARCHIVE_NODE_sepolia || "https://ethereum-sepolia.blockpi.network/v1/rpc/public", | ||
chainId: 11155111, | ||
@@ -90,5 +90,50 @@ live: true, | ||
}, | ||
ethereum: { | ||
url: process.env.ARCHIVE_NODE_ethereum || "https://ethereum.blockpi.network/v1/rpc/public", | ||
chainId: 1, | ||
live: true, | ||
timeout: 1200000, | ||
}, | ||
}, | ||
etherscan: { | ||
apiKey: BSCSCAN_API_KEY, | ||
apiKey: { | ||
bscmainnet: process.env.ETHERSCAN_API_KEY || "ETHERSCAN_API_KEY", | ||
bsctestnet: process.env.ETHERSCAN_API_KEY || "ETHERSCAN_API_KEY", | ||
sepolia: process.env.ETHERSCAN_API_KEY || "ETHERSCAN_API_KEY", | ||
ethereum: process.env.ETHERSCAN_API_KEY || "ETHERSCAN_API_KEY", | ||
}, | ||
customChains: [ | ||
{ | ||
network: "bscmainnet", | ||
chainId: 56, | ||
urls: { | ||
apiURL: "https://api.bscscan.com/api", | ||
browserURL: "https://bscscan.com", | ||
}, | ||
}, | ||
{ | ||
network: "bsctestnet", | ||
chainId: 97, | ||
urls: { | ||
apiURL: "https://api-testnet.bscscan.com/api", | ||
browserURL: "https://testnet.bscscan.com", | ||
}, | ||
}, | ||
{ | ||
network: "sepolia", | ||
chainId: 11155111, | ||
urls: { | ||
apiURL: "https://api-sepolia.etherscan.io/api", | ||
browserURL: "https://sepolia.etherscan.io", | ||
}, | ||
}, | ||
{ | ||
network: "ethereum", | ||
chainId: 1, | ||
urls: { | ||
apiURL: "https://api.etherscan.io/api", | ||
browserURL: "https://etherscan.io", | ||
}, | ||
}, | ||
], | ||
}, | ||
@@ -127,3 +172,3 @@ paths: { | ||
function isFork() { | ||
return process.env.FORK_MAINNET === "true" | ||
return process.env.FORK === "true" | ||
? { | ||
@@ -133,3 +178,4 @@ allowUnlimitedContractSize: false, | ||
forking: { | ||
url: `${process.env.BSC_ARCHIVE_NODE}`, | ||
url: process.env[`ARCHIVE_NODE_${process.env.FORKED_NETWORK}`] || | ||
"https://data-seed-prebsc-1-s1.binance.org:8545", | ||
blockNumber: 21068448, | ||
@@ -136,0 +182,0 @@ }, |
{ | ||
"name": "@venusprotocol/governance-contracts", | ||
"description": "", | ||
"version": "1.4.0-dev.1", | ||
"version": "1.4.0-dev.2", | ||
"author": "", | ||
@@ -6,0 +6,0 @@ "files": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 8 instances in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
9099265
184
46294
15