Skip to content

Commit 17178f5

Browse files
committed
feat: upd data
1 parent 5647611 commit 17178f5

File tree

5 files changed

+104222
-6
lines changed

5 files changed

+104222
-6
lines changed

scripts/deploy_donations.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def twocrypto_with_periphery(twocrypto_path, views_address, math_address, admin_
2727
return boa.loads_partial(twocrypto_code)
2828

2929

30-
rpc_url = "https://eth.drpc.org"
30+
rpc_url = "https://polygon.drpc.org"
3131
etherscan_api_key = os.environ.get("ETHERSCAN_API_KEY")
3232

3333
# private_key = os.environ.get("WEB3_TESTNET_PK")
@@ -57,10 +57,12 @@ def twocrypto_with_periphery(twocrypto_path, views_address, math_address, admin_
5757
views_deployer = boa.load_partial(views_path)
5858

5959
if DEPLOY:
60-
# math_contract = math_deployer.deploy()
61-
# views_contract = views_deployer.deploy()
62-
math_address = "0x79839c2D74531A8222C0F555865aAc1834e82e51"
63-
views_address = "0x35048188c02cbc9239e1e5ecb3761eF9dfDcD31f"
60+
math_contract = math_deployer.deploy()
61+
views_contract = views_deployer.deploy()
62+
math_address = math_contract.address
63+
views_address = views_contract.address
64+
# math_address = "0x79839c2D74531A8222C0F555865aAc1834e82e51"
65+
# views_address = "0x35048188c02cbc9239e1e5ecb3761eF9dfDcD31f"
6466

6567
math_contract = math_deployer.at(math_address)
6668
views_contract = views_deployer.at(views_address)

0 commit comments

Comments
 (0)