Skip to content

Commit

Permalink
chore: update collaterals by network
Browse files Browse the repository at this point in the history
  • Loading branch information
piesrtasty committed Mar 5, 2024
1 parent 523ca42 commit ebdaf46
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/oracles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { getTxFeeAndCheckBalance, processTx, getVariables } from './utils/misc';

dotenv.config();

const collateralTypes: string[] = ['WETH', 'OP', 'WBTC', 'STN', 'TTM'];
const sepoliacollateralTypes: string[] = ['WETH', 'OP', 'WBTC', 'STN', 'TTM'];
const mainnetCollateralTypes: string[] = ['WETH', 'OP', 'WSTETH'];

const collateralTypes = process.env.NETWORK === 'optimism-sepolia' ? sepoliacollateralTypes : mainnetCollateralTypes;

/* ==============================================================/*
HELPING SCRIPTS
Expand Down

0 comments on commit ebdaf46

Please sign in to comment.