Skip to content

Commit

Permalink
Correct proxy names
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjocke committed Aug 1, 2022
1 parent d1eb390 commit b6533ba
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/contracts-interface/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ const getSynthetixContracts = (
return Object.values(targets)
.map((target) => {
if (target.name === 'Synthetix') {
target.address = targets.ProxyERC20.address;
} else if (target.name === 'SynthsUSD') {
target.address = targets.ProxyERC20sUSD.address;
target.address = targets.ProxySynthetix.address;
} else if (target.name === 'FeePool') {
target.address = targets.ProxyFeePool.address;
} else if (target.name.match(/Synth(s|i)[a-zA-Z]+$/)) {
Expand Down

0 comments on commit b6533ba

Please sign in to comment.