Skip to content

Commit

Permalink
Merge pull request #25 from CreamFi/feature-add-synths
Browse files Browse the repository at this point in the history
call add_synths to setup synth burner
  • Loading branch information
jeremyHD authored Aug 17, 2021
2 parents 701e4ac + 1261c03 commit 1c0ba41
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/deployment/deploy_burner.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ def development():
MUSDBurner.deploy(usdc_burner, RECOVERY, OWNER_ADMIN, EMERGENCY_ADMIN, {"from": deployer})

# deploy and setup synth burner
SynthBurner.deploy(uniswap_burner, RECOVERY, OWNER_ADMIN, EMERGENCY_ADMIN, {"from": deployer})
synth_burner = SynthBurner.deploy(
uniswap_burner, RECOVERY, OWNER_ADMIN, EMERGENCY_ADMIN, {"from": deployer}
)
SEUR = "0xD71eCFF9342A5Ced620049e616c5035F1dB98620"
ZERO_ADDRESS = "0x" + "0" * 40
synth_burner.add_synths([SEUR] + [ZERO_ADDRESS] * 9, {"from": OWNER_ADMIN})

# deploy and setup compound burner
CBurner.deploy(
Expand Down

0 comments on commit 1c0ba41

Please sign in to comment.