Skip to content

Commit

Permalink
Merge branch 'reseed-final-fixes' into beanstalk3-ui-sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean authored Sep 13, 2024
2 parents 7fe3b5c + 5dffa3f commit 0009bc1
Show file tree
Hide file tree
Showing 19 changed files with 176,371 additions and 172,072 deletions.
1 change: 1 addition & 0 deletions protocol/.env-sample
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FORKING_RPC=
BLOCK_NUMBER=
MAINNET_RPC=
ARBITRUM_RPC=
ETHERSCAN_KEY=
DIAMOND_DEPLOYER_PRIVATE_KEY=
3 changes: 2 additions & 1 deletion protocol/contracts/ecosystem/oracles/LSDChainlinkOracle.sol
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/**
* SPDX-License-Identifier: MIT
**/
import {LibChainlinkOracle} from "contracts/libraries/Oracle/LibChainlinkOracle.sol";
pragma solidity ^0.8.20;

import {LibChainlinkOracle} from "contracts/libraries/Oracle/LibChainlinkOracle.sol";

/**
* @title LSDChainlinkOracle
* @author Brean
Expand Down
7 changes: 6 additions & 1 deletion protocol/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,12 @@ module.exports = {
mainnet: {
chainId: 1,
url: process.env.MAINNET_RPC || "",
timeout: 100000
timeout: 1000000000
},
arbitrum: {
chainId: 42161,
url: process.env.ARBITRUM_RPC || "",
timeout: 1000000000
},
custom: {
chainId: 133137,
Expand Down
Loading

0 comments on commit 0009bc1

Please sign in to comment.