-
Notifications
You must be signed in to change notification settings - Fork 42
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 #151 from bancorprotocol/upgrade-tenderly
upgrade tenderly version
- Loading branch information
Showing
11 changed files
with
7,283 additions
and
5,598 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,12 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity 0.8.19; | ||
import { OptimizedTransparentUpgradeableProxy } from "hardhat-deploy/solc_0.8/proxy/OptimizedTransparentUpgradeableProxy.sol"; | ||
import { ProxyAdmin } from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol"; | ||
|
||
/** | ||
* @dev Contract used to load the ProxyAdmin and OptimizedTransparentUpgradeableProxy contracts | ||
* @dev workaround for tenderly verification issues with ethers-v5: | ||
* @dev https://docs.tenderly.co/contract-verification/hardhat-proxy-contracts#load-the-proxy-contracts | ||
*/ | ||
abstract contract OptimizedTransparentUpgradeableProxyAccess is OptimizedTransparentUpgradeableProxy {} | ||
abstract contract ProxyAdminAccess is ProxyAdmin {} |
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
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
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
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
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
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 |
---|---|---|
|
@@ -39,11 +39,10 @@ | |
"deploy:mainnet": "HARDHAT_NETWORK=mainnet hardhat deploy", | ||
"verify:mainnet": "HARDHAT_NETWORK=mainnet hardhat etherscan-verify --license None --force-license", | ||
"verify:rinkeby": "HARDHAT_NETWORK=rinkeby hardhat etherscan-verify --license None --force-license", | ||
"setup:fork": "./deployments/run-fork.sh pnpm run:fork deployments/setup-fork.ts", | ||
"setup:testnet": "./deployments/run-testnet.sh pnpm run:testnet deployments/setup-testnet.ts", | ||
"setup:fork": "./deployments/run-fork.sh pnpm run:tenderly deployments/setup-fork.ts", | ||
"setup:testnet": "./deployments/run-testnet.sh pnpm run:tenderly deployments/setup-testnet.ts", | ||
"run:mainnet": "HARDHAT_NETWORK=mainnet hardhat run", | ||
"run:fork": "HARDHAT_NETWORK=tenderly hardhat run", | ||
"run:testnet": "HARDHAT_NETWORK=tenderly-testnet hardhat run", | ||
"run:tenderly": "HARDHAT_NETWORK=tenderly hardhat run", | ||
"pol:enable:trading:check:mainnet": "pnpm run:mainnet scripts/enableTrading.ts", | ||
"pol:enable:trading:check:fork": "pnpm run:fork scripts/enableTrading.ts", | ||
"pol:enable:trading:mainnet": "ENABLE_TRADING=1 pnpm run:mainnet scripts/enableTrading.ts", | ||
|
@@ -69,16 +68,16 @@ | |
"@ethersproject/providers": "^5.7.2", | ||
"@metamask/eth-sig-util": "^5.0.2", | ||
"@nomiclabs/hardhat-ethers": "npm:[email protected]", | ||
"@nomiclabs/hardhat-etherscan": "^3.1.6", | ||
"@nomiclabs/hardhat-solhint": "^3.0.1", | ||
"@nomiclabs/hardhat-waffle": "2.0.4", | ||
"@nomicfoundation/hardhat-verify": "^2.0.8", | ||
"@openzeppelin/contracts": "4.9.2", | ||
"@openzeppelin/contracts-upgradeable": "4.9.2", | ||
"@sentry/hub": "^7.56.0", | ||
"@sentry/node": "^7.56.0", | ||
"@sentry/types": "^7.56.0", | ||
"@sentry/utils": "^7.56.0", | ||
"@tenderly/hardhat-tenderly": "1.1.6", | ||
"@tenderly/hardhat-tenderly": "1.8.0", | ||
"@trivago/prettier-plugin-sort-imports": "^4.0.0", | ||
"@typechain/ethers-v5": "^11.0.0", | ||
"@typechain/hardhat": "^6.1.5", | ||
|
Oops, something went wrong.