Skip to content

Commit

Permalink
fTUSD isn't a default TestToken anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
d10r committed Oct 4, 2023
1 parent ae7f923 commit 8f7e82f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = eval(`(${S.toString()})()`)(async function (
if (args.length >= 1) {
tokens = args.pop().split(",");
} else {
tokens = ["fDAI", "fUSDC", "fTUSD", config.nativeTokenSymbol];
tokens = ["fDAI", "fUSDC", config.nativeTokenSymbol];
}
console.log("Tokens to be deployed", tokens);

Expand Down
2 changes: 1 addition & 1 deletion packages/ethereum-contracts/ops-scripts/libs/getConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = function getConfig(chainId) {
// mainnets don't use the TestGovernance contract
disableTestGovernance: process.env.DISABLE_TEST_GOVERNANCE || !sfNw || sfNw.isTestnet ? false : true,
// default token list for the test deployments (empty for mainnets)
tokenList: !sfNw || sfNw.isTestnet ? ["fDAIx", "fUSDCx", "fTUSDx"] : [],
tokenList: !sfNw || sfNw.isTestnet ? ["fDAIx", "fUSDCx"] : [],
data: {
initialBlockNumber: sfNw?.startBlockV1 || 0,
getLogsRange: sfNw?.logsQueryRange || 5000,
Expand Down
3 changes: 0 additions & 3 deletions packages/ethereum-contracts/tasks/etherscan-verify-proxies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ if [ -n "${IS_TESTNET}" ];then
echo fUSDCx
$TRUFFLE_RUN_VERIFY --verify-proxy UUPSProxy@"${SUPER_TOKEN_FUSDCX}"

echo fTUSDx
$TRUFFLE_RUN_VERIFY --verify-proxy UUPSProxy@"${SUPER_TOKEN_FTUSDX}"

echo ETHx
$TRUFFLE_RUN_VERIFY --verify-proxy SETHProxy@"${SUPER_TOKEN_NATIVE_COIN}"
fi
Expand Down

0 comments on commit 8f7e82f

Please sign in to comment.