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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* External Imports */
import { Contract } from 'ethers'
/* Internal Imports */
import { RollupDeployConfig, makeContractDeployConfig } from './config'
import { getContractFactory } from '../contract-defs'
export interface DeployResult {
AddressManager: Contract
failedDeployments: string[]
contracts: {
[name: string]: Contract
}
}
export const deploy = async (
config: RollupDeployConfig
): Promise<DeployResult> => {
let AddressManager: Contract
if (config.addressManager) {
// console.log(`Connecting to existing address manager.`) //console.logs currently break our deployer
AddressManager = getContractFactory(
'Lib_AddressManager',
config.deploymentSigner
).attach(config.addressManager)
} else {
// console.log(
// `Address manager wasn't provided, so we're deploying a new one.`
// ) //console.logs currently break our deployer
AddressManager = await getContractFactory(
'Lib_AddressManager',
config.deploymentSigner
).deploy()
if (config.waitForReceipts) {
await AddressManager.deployTransaction.wait()
}
}
const contractDeployConfig = await makeContractDeployConfig(
config,
AddressManager
)
const failedDeployments: string[] = []
const contracts: {
[name: string]: Contract
} = {}
for (const [name, contractDeployParameters] of Object.entries(
contractDeployConfig
)) {
if (config.dependencies && !config.dependencies.includes(name)) {
continue
}
try {
contracts[name] = await contractDeployParameters.factory
.connect(config.deploymentSigner)
.deploy(
...(contractDeployParameters.params || []),
config.deployOverrides
)
if (config.waitForReceipts) {
await contracts[name].deployTransaction.wait()
}
const res = await AddressManager.setAddress(name, contracts[name].address)
if (config.waitForReceipts) {
await res.wait()
}
} catch (err) {
console.error(`Error deploying ${name}: ${err}`)
failedDeployments.push(name)
}
}
for (const [name, contractDeployParameters] of Object.entries(
contractDeployConfig
)) {
if (config.dependencies && !config.dependencies.includes(name)) {
continue
}
if (contractDeployParameters.afterDeploy) {
await contractDeployParameters.afterDeploy(contracts)
}
}
return {
AddressManager,
failedDeployments,
contracts,
}
}