-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathsignDeploymentTransactions.ts
306 lines (255 loc) · 8.37 KB
/
signDeploymentTransactions.ts
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import { createAccount } from "@turnkey/viem";
import { TurnkeyClient } from "@turnkey/http";
import { Address, encodeFunctionData, parseAbi, LocalAccount, Hex } from "viem";
import { ApiKeyStamper } from "@turnkey/api-key-stamper";
import { glob } from "glob";
import * as path from "path";
import * as dotenv from "dotenv";
import { writeFile, readFile } from "fs/promises";
import {
ConfiguredSalt,
DeterministicDeploymentConfig,
GenericDeploymentConfiguration,
signDeployFactory,
signGenericDeploy,
} from "../package/deployment";
import { fileURLToPath } from "url";
import { dirname } from "path";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Load environment variables from `.env.local`
dotenv.config({ path: path.resolve(__dirname, "../.env") });
type ChainConfig = {
chainId: number;
implementationAddress: Address;
owner: Address;
};
async function signAndSaveSignatures({
turnkeyAccount,
chainConfigs,
proxyName,
chainId,
}: {
turnkeyAccount: LocalAccount;
chainConfigs: ChainConfig[];
proxyName: "factoryProxy" | "premintExecutorProxy";
chainId: number;
}) {
const configFolder = path.resolve(
__dirname,
`../deterministicConfig/${proxyName}/`,
);
const configFile = path.join(configFolder, "params.json");
const deterministicDeployConfig = JSON.parse(
await readFile(configFile, "utf-8"),
);
const deploymentConfig: DeterministicDeploymentConfig = {
proxyDeployerAddress:
deterministicDeployConfig.proxyDeployerAddress as Address,
proxySalt: deterministicDeployConfig.proxySalt as ConfiguredSalt,
proxyShimSalt: deterministicDeployConfig.proxyShimSalt as ConfiguredSalt,
proxyCreationCode: deterministicDeployConfig.proxyCreationCode as Address,
};
const chainConfig = chainConfigs.find((x) => x.chainId === chainId);
if (!chainConfig) {
return;
}
if (!chainConfig.implementationAddress) {
return;
}
const signature = await signDeployFactory({
account: turnkeyAccount,
implementationAddress: chainConfig.implementationAddress,
owner: chainConfig.owner,
chainId: chainConfig.chainId,
deterministicDeploymentConfig: deploymentConfig,
});
const existingSignatures = JSON.parse(
await readFile(path.join(configFolder, "signatures.json"), "utf-8"),
);
const updated = {
...existingSignatures,
[chainId]: signature,
};
// aggregate above to object of key value pair indexed by chain id as number:
// write as json to ../deterministicConfig/factoryDeploySignatures.json:
await writeFile(
path.join(configFolder, "signatures.json"),
JSON.stringify(updated, null, 2),
);
}
async function signAndSaveUpgradeGate({
turnkeyAccount,
chainConfigs,
proxyName,
chainId,
}: {
turnkeyAccount: LocalAccount;
chainConfigs: {
chainId: number;
owner: Address;
}[];
proxyName: "upgradeGate";
chainId: number;
}) {
const configFolder = path.resolve(
__dirname,
`../deterministicConfig/${proxyName}/`,
);
const configFile = path.join(configFolder, "params.json");
const deterministicDeployConfig = JSON.parse(
await readFile(configFile, "utf-8"),
);
const deploymentConfig: GenericDeploymentConfiguration = {
creationCode: deterministicDeployConfig.creationCode! as Hex,
salt: deterministicDeployConfig.salt! as Hex,
deployerAddress: deterministicDeployConfig.deployerAddress! as Address,
upgradeGateAddress:
deterministicDeployConfig.upgradeGateAddress! as Address,
proxyDeployerAddress:
deterministicDeployConfig.proxyDeployerAddress! as Address,
};
const upgradeGateAbi = parseAbi(["function initialize(address owner)"]);
const chainConfig = chainConfigs.find((x) => x.chainId === chainId);
if (!chainConfig) {
throw new Error(`No chain config found for chain id ${chainId}`);
}
const initCall = encodeFunctionData({
abi: upgradeGateAbi,
functionName: "initialize",
args: [chainConfig.owner],
});
console.log("signing", { turnkeyAccount, deploymentConfig });
const signature = await signGenericDeploy({
account: turnkeyAccount,
chainId: chainConfig.chainId,
config: deploymentConfig,
initCall,
});
const existingSignatures = JSON.parse(
await readFile(path.join(configFolder, "signatures.json"), "utf-8"),
);
const updated = {
...existingSignatures,
[chainId]: signature,
};
// write as json to ../deterministicConfig/factoryDeploySignatures.json:
await writeFile(
path.join(configFolder, "signatures.json"),
JSON.stringify(updated, null, 2),
);
}
const getChainConfigs = async () => {
const chainConfigsFiles = await glob(
path.resolve(__dirname, "../chainConfigs/*.json"),
);
const chainConfigs = await Promise.all(
chainConfigsFiles.map(async (chainConfigFile) => {
const chainId = parseInt(path.basename(chainConfigFile).split(".")[0]!);
// read file and process JSON contents:
const fileContents = await import(chainConfigFile);
return {
chainId,
owner: fileContents["FACTORY_OWNER"]! as Address,
};
}),
);
return chainConfigs;
};
const getFactoryImplConfigs = async () => {
const addresseFiles = await glob(
path.resolve(__dirname, "../addresses/*.json"),
);
const chainConfigs = await Promise.all(
addresseFiles.map(async (addressConfigFile) => {
const chainId = parseInt(path.basename(addressConfigFile).split(".")[0]!);
// read file and process JSON contents:
const fileContents = await import(addressConfigFile);
// read chain config file as json, which is located at: ../chainConfigs/${chainId}.json:
const chainConfig = await import(
path.resolve(__dirname, `../chainConfigs/${chainId}.json`)
);
return {
chainId,
implementationAddress: fileContents["FACTORY_IMPL"] as Address,
owner: chainConfig["FACTORY_OWNER"] as Address,
};
}),
);
return chainConfigs;
};
const getPreminterImplConfigs = async () => {
const addresseFiles = await glob(
path.resolve(__dirname, "../addresses/*.json"),
);
const chainConfigs = await Promise.all(
addresseFiles.map(async (addressConfigFile) => {
const chainId = parseInt(path.basename(addressConfigFile).split(".")[0]!);
// read file and process JSON contents:
const fileContents = await import(addressConfigFile);
// read chain config file as json, which is located at: ../chainConfigs/${chainId}.json:
const chainConfig = await import(
path.resolve(__dirname, `../chainConfigs/${chainId}.json`)
);
return {
chainId,
implementationAddress: fileContents["PREMINTER_IMPL"] as Address,
owner: chainConfig["FACTORY_OWNER"] as Address,
};
}),
);
return chainConfigs.filter((x) => x.implementationAddress !== undefined);
};
function getChainIdPositionalArg() {
// parse chain id as first argument:
const chainIdArg = process.argv[2];
if (!chainIdArg) {
throw new Error("Must provide chain id as first argument");
}
return parseInt(chainIdArg);
}
async function main() {
// Create a Turnkey HTTP client with API key credentials
const httpClient = new TurnkeyClient(
{
baseUrl: "https://api.turnkey.com",
},
// This uses API key credentials.
// If you're using passkeys, use `@turnkey/webauthn-stamper` to collect webauthn signatures:
new ApiKeyStamper({
apiPublicKey: process.env.TURNKEY_API_PUBLIC_KEY!,
apiPrivateKey: process.env.TURNKEY_API_PRIVATE_KEY!,
}),
);
// Create the Viem custom account
const turnkeyAccount = await createAccount({
client: httpClient,
organizationId: process.env.TURNKEY_ORGANIZATION_ID!,
signWith: process.env.TURNKEY_PRIVATE_KEY_ID!,
// optional; will be fetched from Turnkey if not provided
ethereumAddress: process.env.TURNKEY_TARGET_ADDRESS!,
});
const chainId = getChainIdPositionalArg();
await signAndSaveSignatures({
turnkeyAccount,
chainConfigs: await getFactoryImplConfigs(),
proxyName: "factoryProxy",
chainId,
});
await signAndSaveSignatures({
turnkeyAccount,
chainConfigs: await getPreminterImplConfigs(),
proxyName: "premintExecutorProxy",
chainId,
});
await signAndSaveUpgradeGate({
turnkeyAccount,
chainConfigs: await getChainConfigs(),
proxyName: "upgradeGate",
chainId,
});
}
main().catch((error) => {
console.error(error);
process.exit(1);
});