-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDeploy.py
69 lines (64 loc) · 4.91 KB
/
Deploy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
####################################################################################
# @title Deploy script
# @dev uses the starknet cli
# owner addy can be set below
# compiles all contracts and returns contract addys
####################################################################################
import subprocess, time
# compile all
files = [
['starknet-compile', 'Interface/LiquidityProvider.cairo', '--output', 'Compiled/LiquidityProvider_compiled.json', '--abi', 'Compiled/LiquidityProvider_abi.json'],
['starknet-compile', 'Interface/CapitalBorrower.cairo', '--output', 'Compiled/CapitalBorrower_compiled.json', '--abi', 'Compiled/CapitalBorrower_abi.json'],
['starknet-compile', 'Interface/LoanLiquidator.cairo', '--output', 'Compiled/LoanLiquidator_compiled.json', '--abi', 'Compiled/LoanLiquidator_abi.json'],
['starknet-compile', 'Interface/GovenanceToken.cairo', '--output', 'Compiled/GovenanceToken_compiled.json', '--abi', 'Compiled/GovenanceToken_abi.json'],
['starknet-compile', 'Core/PriceProvider.cairo', '--output', 'Compiled/PriceProvider_compiled.json', '--abi', 'Compiled/PriceProvider_abi.json'],
['starknet-compile', 'Core/InsuranceFund.cairo', '--output', 'Compiled/InsuranceFund_compiled.json', '--abi', 'Compiled/InsuranceFund_abi.json'],
['starknet-compile', 'Core/CZCore.cairo', '--output', 'Compiled/CZCore_compiled.json', '--abi', 'Compiled/CZCore_abi.json'],
['starknet-compile', 'Core/Controller.cairo', '--output', 'Compiled/Controller_compiled.json', '--abi', 'Compiled/Controller_abi.json'],
['starknet-compile', 'Core/Oracle.cairo', '--output', 'Compiled/Oracle_compiled.json', '--abi', 'Compiled/Oracle_abi.json'],
['starknet-compile', 'Config/Settings.cairo', '--output', 'Compiled/Settings_compiled.json', '--abi', 'Compiled/Settings_abi.json'],
['starknet-compile', 'Config/TrustedAddy.cairo', '--output', 'Compiled/TrustedAddy_compiled.json', '--abi', 'Compiled/TrustedAddy_abi.json'],
['starknet-compile', 'Testing/ERC20_base.cairo', '--output', 'Compiled/ERC20_base_compiled.json', '--abi', 'Compiled/ERC20_base_abi.json'],
['starknet-compile', 'Testing/ERC20_special.cairo', '--output', 'Compiled/ERC20_special_compiled.json', '--abi', 'Compiled/ERC20_special_abi.json']]
for file in files:
process = subprocess.Popen(file,stdout=subprocess.PIPE,universal_newlines=True)
while True:
return_code = process.poll()
if return_code is not None:
for output in process.stdout.readlines():
print(output.strip())
print('Return code:', return_code, file[1])
break
# deploy all
# owner = '0x06875f16514700b2943Bff47846594975E57A28CD64822bd1c9d433676757065'
# files = [
# ['starknet', 'deploy', '--contract', 'Compiled/LiquidityProvider_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/CapitalBorrower_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/LoanLiquidator_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/GovenanceToken_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/PriceProvider_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/InsuranceFund_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/CZCore_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/Controller_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/Settings_compiled.json', '--inputs', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/ERC20_base_compiled.json', '--inputs', '85836867', '85836867', '0', '0', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/ERC20_base_compiled.json', '--inputs', '67908410', '67908410', '0', '0', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/ERC20_base_compiled.json', '--inputs', '8769847210', '8769847210', '0', '0', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/ERC20_special_compiled.json', '--inputs', '76808410', '76808410', owner],
# ['starknet', 'deploy', '--contract', 'Compiled/Oracle_compiled.json', '--inputs', '8769847210', '8769847210'],
# ['starknet', 'deploy', '--contract', 'Compiled/TrustedAddy_compiled.json', '--inputs', owner, owner]]
# last = files[-1]
# for file in files:
# time.sleep(30)
# if file == files[-1]: process = subprocess.Popen(last, stdout=subprocess.PIPE, universal_newlines=True)
# else: process = subprocess.Popen(file,stdout=subprocess.PIPE,universal_newlines=True)
# while True:
# return_code = process.poll()
# if return_code is not None:
# for output in process.stdout.readlines():
# data = output.strip()
# if 'Contract address:' in data:
# contract_addy = data[data.find(': ')+2:].strip()
# last.append(contract_addy)
# print('Return code:', return_code, file[3], contract_addy)
# break