generated from PaulRBerg/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from VenusProtocol/feat/lst-deployment
[VEN-2359] Deployment of LST Oracles
- Loading branch information
Showing
48 changed files
with
18,879 additions
and
4,403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// SPDX-License-Identifier: MIT | ||
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | ||
import { IAnkrBNB } from "../interfaces/IAnkrBNB.sol"; | ||
import "@openzeppelin/contracts/access/Ownable.sol"; | ||
|
||
contract MockAnkrBNB is ERC20, Ownable, IAnkrBNB { | ||
uint8 private immutable _decimals; | ||
uint256 public exchangeRate; | ||
|
||
constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_) Ownable() { | ||
_decimals = decimals_; | ||
} | ||
|
||
function faucet(uint256 amount) external { | ||
_mint(msg.sender, amount); | ||
} | ||
|
||
function setSharesToBonds(uint256 rate) external onlyOwner { | ||
exchangeRate = rate; | ||
} | ||
|
||
function sharesToBonds(uint256 amount) external view override returns (uint256) { | ||
return (amount * exchangeRate) / (10 ** uint256(_decimals)); | ||
} | ||
|
||
function decimals() public view virtual override(ERC20, IAnkrBNB) returns (uint8) { | ||
return _decimals; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// SPDX-License-Identifier: MIT | ||
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | ||
import { IWBETH } from "../interfaces/IWBETH.sol"; | ||
import "@openzeppelin/contracts/access/Ownable.sol"; | ||
|
||
contract MockWBETH is ERC20, Ownable, IWBETH { | ||
uint8 private immutable _decimals; | ||
uint256 public override exchangeRate; | ||
|
||
constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_) Ownable() { | ||
_decimals = decimals_; | ||
} | ||
|
||
function faucet(uint256 amount) external { | ||
_mint(msg.sender, amount); | ||
} | ||
|
||
function setExchangeRate(uint256 rate) external onlyOwner { | ||
exchangeRate = rate; | ||
} | ||
|
||
function decimals() public view virtual override(ERC20, IWBETH) returns (uint8) { | ||
return _decimals; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
import { ethers } from "hardhat"; | ||
import { DeployFunction } from "hardhat-deploy/dist/types"; | ||
import { HardhatRuntimeEnvironment } from "hardhat/types"; | ||
|
||
import { ADDRESSES, assets } from "../helpers/deploymentConfig"; | ||
|
||
const func: DeployFunction = async ({ getNamedAccounts, deployments, network }: HardhatRuntimeEnvironment) => { | ||
const { deploy } = deployments; | ||
const { deployer } = await getNamedAccounts(); | ||
|
||
const oracle = await ethers.getContract("ResilientOracle"); | ||
const proxyOwnerAddress = network.live ? ADDRESSES[network.name].timelock : deployer; | ||
|
||
const { ankrBNB, stkBNB, BNBx, BNBxStakeManager, slisBNBStakeManager, stkBNBStakePool, slisBNB, wBETH } = | ||
ADDRESSES[network.name]; | ||
const ETH = assets[network.name].find(asset => asset.token === "ETH"); | ||
|
||
await deploy("BNBxOracle", { | ||
from: deployer, | ||
log: true, | ||
deterministicDeployment: false, | ||
args: [BNBxStakeManager, BNBx, oracle.address], | ||
proxy: { | ||
owner: proxyOwnerAddress, | ||
proxyContract: "OptimizedTransparentProxy", | ||
}, | ||
skipIfAlreadyDeployed: true, | ||
}); | ||
|
||
await deploy("SlisBNBOracle", { | ||
from: deployer, | ||
log: true, | ||
deterministicDeployment: false, | ||
args: [slisBNBStakeManager, slisBNB, oracle.address], | ||
proxy: { | ||
owner: proxyOwnerAddress, | ||
proxyContract: "OptimizedTransparentProxy", | ||
}, | ||
skipIfAlreadyDeployed: true, | ||
}); | ||
|
||
await deploy("StkBNBOracle", { | ||
from: deployer, | ||
log: true, | ||
deterministicDeployment: false, | ||
args: [stkBNBStakePool, stkBNB, oracle.address], | ||
proxy: { | ||
owner: proxyOwnerAddress, | ||
proxyContract: "OptimizedTransparentProxy", | ||
}, | ||
skipIfAlreadyDeployed: true, | ||
}); | ||
|
||
let ankrBNBAddress = ankrBNB; | ||
if (!ankrBNB) { | ||
// deploy MockAnkrBNB | ||
await deploy("MockAnkrBNB", { | ||
from: deployer, | ||
log: true, | ||
autoMine: true, // speed up deployment on local network (ganache, hardhat), no effect on live networks | ||
skipIfAlreadyDeployed: true, | ||
args: ["Ankr Staked BNB ", "ankrBNB", "18"], | ||
}); | ||
|
||
const ankrBNBContract = await ethers.getContract("MockAnkrBNB"); | ||
ankrBNBAddress = ankrBNBContract.address; | ||
|
||
if ((await ankrBNBContract.owner()) === deployer) { | ||
await ankrBNBContract.transferOwnership(proxyOwnerAddress); | ||
} | ||
} | ||
|
||
await deploy("AnkrBNBOracle", { | ||
from: deployer, | ||
log: true, | ||
deterministicDeployment: false, | ||
args: [ankrBNBAddress, oracle.address], | ||
proxy: { | ||
owner: proxyOwnerAddress, | ||
proxyContract: "OptimizedTransparentProxy", | ||
}, | ||
skipIfAlreadyDeployed: true, | ||
}); | ||
|
||
let wBETHAddress = wBETH; | ||
if (!wBETH) { | ||
// deploy MockWBETH | ||
await deploy("MockWBETH", { | ||
from: deployer, | ||
log: true, | ||
autoMine: true, // speed up deployment on local network (ganache, hardhat), no effect on live networks | ||
skipIfAlreadyDeployed: true, | ||
args: ["Wrapped Binance Beacon ETH", "wBETH", "18"], | ||
}); | ||
|
||
const wBETHContract = await ethers.getContract("MockWBETH"); | ||
wBETHAddress = wBETHContract.address; | ||
|
||
if ((await wBETHContract.owner()) === deployer) { | ||
await wBETHContract.transferOwnership(proxyOwnerAddress); | ||
} | ||
} | ||
|
||
await deploy("WBETHOracle", { | ||
from: deployer, | ||
log: true, | ||
deterministicDeployment: false, | ||
args: [wBETHAddress, ETH?.address, oracle.address], | ||
proxy: { | ||
owner: proxyOwnerAddress, | ||
proxyContract: "OptimizedTransparentProxy", | ||
}, | ||
skipIfAlreadyDeployed: true, | ||
}); | ||
}; | ||
|
||
export default func; | ||
func.tags = ["bnb_lst"]; | ||
func.skip = async (hre: HardhatRuntimeEnvironment) => | ||
hre.network.name !== "bscmainnet" && hre.network.name !== "bsctestnet"; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.