forked from holographxyz/holograph-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10_layer_zero_module.ts
executable file
·569 lines (513 loc) · 18.3 KB
/
10_layer_zero_module.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
declare var global: any;
import path from 'path';
import { BigNumber, Contract } from 'ethers';
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
import { DeployFunction } from '@holographxyz/hardhat-deploy-holographed/types';
import { NetworkType, Network, networks } from '@holographxyz/networks';
import {
genesisDeriveFutureAddress,
txParams,
genesisDeployHelper,
generateInitCode,
zeroAddress,
LeanHardhatRuntimeEnvironment,
hreSplit,
gweiToWei,
getDeployer,
} from '../scripts/utils/helpers';
import { MultisigAwareTx } from '../scripts/utils/multisig-aware-tx';
import { parseUnits } from '@ethersproject/units';
const func: DeployFunction = async function (hre1: HardhatRuntimeEnvironment) {
console.log(`Starting deploy script: ${path.basename(__filename)} 👇`);
let { hre, hre2 } = await hreSplit(hre1, global.__companionNetwork);
const deployer = await getDeployer(hre);
const deployerAddress = await deployer.signer.getAddress();
const subOneWei = function (input: BigNumber): BigNumber {
return input.sub(BigNumber.from('1'));
};
const salt = hre.deploymentSalt;
const MSG_BASE_GAS: BigNumber = BigNumber.from('110000');
const MSG_GAS_PER_BYTE: BigNumber = BigNumber.from('25');
const JOB_BASE_GAS: BigNumber = BigNumber.from('160000');
const JOB_GAS_PER_BYTE: BigNumber = BigNumber.from('35');
const MIN_GAS_PRICE: BigNumber = BigNumber.from('1'); // 1 WEI
const GAS_LIMIT: BigNumber = BigNumber.from('10000001');
const defaultParams: BigNumber[] = [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
MIN_GAS_PRICE,
GAS_LIMIT,
];
const networkSpecificParams: { [key: string]: BigNumber[] } = {
ethereum: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('40', 'gwei'), // MIN_GAS_PRICE,
GAS_LIMIT,
],
ethereumTestnetSepolia: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('1', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
binanceSmartChain: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
BigNumber.from('180000'),
BigNumber.from('40'),
parseUnits('0.1', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
binanceSmartChainTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
BigNumber.from('180000'),
BigNumber.from('40'),
parseUnits('0.1', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
avalanche: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('30', 'gwei'), // MIN_GAS_PRICE, // 30 GWEI
GAS_LIMIT,
],
avalancheTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('1', 'gwei'), // MIN_GAS_PRICE, // 30 GWEI
GAS_LIMIT,
],
polygon: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('200', 'gwei'), // MIN_GAS_PRICE, // 200 GWEI
GAS_LIMIT,
],
polygonTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('5', 'gwei'), // MIN_GAS_PRICE, // 5 GWEI
GAS_LIMIT,
],
optimism: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
optimismTestnetSepolia: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
arbitrumOne: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.1', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
arbitrumTestnetSepolia: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.1', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
mantle: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
mantleTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
base: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
baseTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
zora: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
zoraTestnet: [
MSG_BASE_GAS,
MSG_GAS_PER_BYTE,
JOB_BASE_GAS,
JOB_GAS_PER_BYTE,
parseUnits('0.001', 'gwei'), // MIN_GAS_PRICE
GAS_LIMIT,
],
};
// Retrieve the network configuration for the current Hardhat runtime environment (hre) network
const network: Network = networks[hre.networkName];
// Extract the type of the current network (e.g., testnet, mainnet)
const networkType: NetworkType = network.type;
// Get an array of all network keys (names) defined in the networks object
const networkKeys: string[] = Object.keys(networks);
// Initialize an empty array to hold the names of supported networks
let supportedNetworkNames: string[] = [];
// Initialize an empty array to hold the supported network objects
let supportedNetworks: Network[] = [];
// Initialize an empty array to keep track of chain IDs for supported networks
let chainIds: number[] = [];
// Initialize an empty array to hold gas parameter configurations for each supported network
let gasParameters: BigNumber[][] = [];
// Loop over all network keys to filter and process supported networks
for (let i = 0, l = networkKeys.length; i < l; i++) {
// Current network key in the iteration
const key: string = networkKeys[i];
// Corresponding network object for the current key
const value: Network = networks[key];
// Check if the current network is active and of the same type as the current network type
if (value.active && value.type === networkType) {
// If conditions are met, add the network name to the supportedNetworkNames array
supportedNetworkNames.push(key);
// Also, add the network object to the supportedNetworks array
supportedNetworks.push(value);
// Check if the network has a valid holographId (greater than 0)
if (value.holographId > 0) {
// Special handling if the current network's holographId matches the target network's holographId
if (value.holographId === network.holographId) {
// Add a 0 to the chainIds array to represent the current network specifically
chainIds.push(0);
// Check if there are network-specific gas parameters for the current network and add them to the gasParameters array
// If not, add the default gas parameters
if (key in networkSpecificParams) {
gasParameters.push(networkSpecificParams[key]!);
} else {
gasParameters.push(defaultParams);
}
}
// Add the current network's holographId to the chainIds array
chainIds.push(value.holographId);
// Again, check for network-specific gas parameters or default to the defaultParams
if (key in networkSpecificParams) {
gasParameters.push(networkSpecificParams[key]!);
} else {
gasParameters.push(defaultParams);
}
}
}
}
const holograph = await hre.ethers.getContract('Holograph', deployerAddress);
const futureOptimismGasPriceOracleAddress = await genesisDeriveFutureAddress(
hre,
salt,
'OVM_GasPriceOracle',
generateInitCode(['uint256', 'uint256', 'uint256', 'uint256', 'uint256'], [0, 0, 0, 0, 0])
);
console.log('the future "OVM_GasPriceOracle" address is', futureOptimismGasPriceOracleAddress);
// OVM_GasPriceOracle
let optimismGasPriceOracleDeployedCode: string = await hre.provider.send('eth_getCode', [
futureOptimismGasPriceOracleAddress,
'latest',
]);
if (optimismGasPriceOracleDeployedCode === '0x' || optimismGasPriceOracleDeployedCode === '') {
console.log('"OVM_GasPriceOracle" bytecode not found, need to deploy"');
let optimismGasPriceOracle = await genesisDeployHelper(
hre,
salt,
'OVM_GasPriceOracle',
generateInitCode(
['uint256', 'uint256', 'uint256', 'uint256', 'uint256'],
[
1000000, // gasPrice === 1 (since scalar is with 6 decimal places)
100000000000, // l1BaseFee === 100 GWEI
2100, // overhead
1000000, // scalar (since division does not work well in non-decimal numbers, we multiply and then divide by scalar after)
6, // decimals
]
),
futureOptimismGasPriceOracleAddress
);
} else {
console.log('"OVM_GasPriceOracle" is already deployed..');
}
// LayerZeroModule
const futureLayerZeroModuleAddress = await genesisDeriveFutureAddress(
hre,
salt,
'LayerZeroModule',
generateInitCode(
[
'address',
'address',
'address',
'address',
'uint32[]',
'struct(uint256,uint256,uint256,uint256,uint256,uint256)[]',
],
[zeroAddress, zeroAddress, zeroAddress, zeroAddress, [], []]
)
);
console.log('the future "LayerZeroModule" address is', futureLayerZeroModuleAddress);
let layerZeroModuleDeployedCode: string = await hre.provider.send('eth_getCode', [
futureLayerZeroModuleAddress,
'latest',
]);
if (layerZeroModuleDeployedCode === '0x' || layerZeroModuleDeployedCode === '') {
console.log('"LayerZeroModule" bytecode not found, need to deploy"');
let layerZeroModule = await genesisDeployHelper(
hre,
salt,
'LayerZeroModule',
generateInitCode(
[
'address',
'address',
'address',
'address',
'uint32[]',
'struct(uint256,uint256,uint256,uint256,uint256,uint256)[]',
],
[zeroAddress, zeroAddress, zeroAddress, zeroAddress, [], []]
),
futureLayerZeroModuleAddress
);
} else {
console.log('"LayerZeroModule" is already deployed..');
}
// LayerZeroModuleProxy
const futureLayerZeroModuleProxyAddress = await genesisDeriveFutureAddress(
hre,
salt,
'LayerZeroModuleProxy',
generateInitCode(
['address', 'bytes'],
[
zeroAddress,
generateInitCode(
[
'address',
'address',
'address',
'address',
'uint32[]',
'struct(uint256,uint256,uint256,uint256,uint256,uint256)[]',
],
[zeroAddress, zeroAddress, zeroAddress, zeroAddress, [], []]
),
]
)
);
console.log('the future "LayerZeroModuleProxy" address is', futureLayerZeroModuleProxyAddress);
let layerZeroModuleProxyDeployedCode: string = await hre.provider.send('eth_getCode', [
futureLayerZeroModuleProxyAddress,
'latest',
]);
if (layerZeroModuleProxyDeployedCode === '0x' || layerZeroModuleProxyDeployedCode === '') {
console.log('"LayerZeroModuleProxy" bytecode not found, need to deploy"');
let layerZeroModuleProxy = await genesisDeployHelper(
hre,
salt,
'LayerZeroModuleProxy',
generateInitCode(
['address', 'bytes'],
[
futureLayerZeroModuleAddress,
generateInitCode(
[
'address',
'address',
'address',
'address',
'uint32[]',
'struct(uint256,uint256,uint256,uint256,uint256,uint256)[]',
],
[
await holograph.getBridge(),
await holograph.getInterfaces(),
await holograph.getOperator(),
futureOptimismGasPriceOracleAddress,
chainIds,
gasParameters,
]
),
]
),
futureLayerZeroModuleProxyAddress
);
} else {
console.log('"LayerZeroModuleProxy" is already deployed..');
}
const holographOperator = ((await hre.ethers.getContract('HolographOperator', deployerAddress)) as Contract).attach(
await holograph.getOperator()
);
if (
(await holographOperator.getMessagingModule()).toLowerCase() !== futureLayerZeroModuleProxyAddress.toLowerCase()
) {
const lzTx = await MultisigAwareTx(
hre,
'HolographOperator',
holographOperator,
await holographOperator.populateTransaction.setMessagingModule(futureLayerZeroModuleProxyAddress, {
...(await txParams({
hre,
from: deployerAddress,
to: holographOperator,
data: holographOperator.populateTransaction.setMessagingModule(futureLayerZeroModuleProxyAddress),
})),
})
);
console.log('Transaction hash:', lzTx.hash);
await lzTx.wait();
console.log(`Registered MessagingModule to: ${await holographOperator.getMessagingModule()}`);
} else {
console.log(`MessagingModule is already registered to: ${await holographOperator.getMessagingModule()}`);
}
const lzModule = ((await hre.ethers.getContract('LayerZeroModule', deployerAddress)) as Contract).attach(
futureLayerZeroModuleProxyAddress
);
// we check that LayerZeroModule has correct OptimismGasPriceOracle set
if (
(await lzModule.getOptimismGasPriceOracle()).toLowerCase() !== futureOptimismGasPriceOracleAddress.toLowerCase()
) {
const lzOpTx = await MultisigAwareTx(
hre,
'LayerZeroModule',
lzModule,
await lzModule.populateTransaction.setOptimismGasPriceOracle(futureOptimismGasPriceOracleAddress, {
...(await txParams({
hre,
from: deployerAddress,
to: lzModule,
data: lzModule.populateTransaction.setOptimismGasPriceOracle(futureOptimismGasPriceOracleAddress),
})),
})
);
console.log('Transaction hash:', lzOpTx.hash);
await lzOpTx.wait();
console.log(`Registered OptimismGasPriceOracle to: ${await lzModule.getOptimismGasPriceOracle()}`);
} else {
console.log(`OptimismGasPriceOracle is already registered to: ${await lzModule.getOptimismGasPriceOracle()}`);
}
chainIds = [];
gasParameters = [];
// Begin checking for gas parameter inconsistencies
console.log(`Checking existing gas parameters`);
// Iterate over all supported networks
for (let i = 0, l = supportedNetworks.length; i < l; i++) {
// Retrieve the current network in the loop
let currentNetwork: Network = supportedNetworks[i];
// Fetch the current gas parameters for the current network using its holograph ID
let currentGasParameters: BigNumber[] = await lzModule.getGasParameters(currentNetwork.holographId);
// Iterate 6 times for each gas parameter (MSG_BASE_GAS, MSG_GAS_PER_BYTE, JOB_BASE_GAS, JOB_GAS_PER_BYTE, MIN_GAS_PRICE, GAS_LIMIT)
for (let i = 0; i < 6; i++) {
// Check if the current network's key exists in the networkSpecificParams object
if (currentNetwork.key in networkSpecificParams) {
// If so, check if the specific gas parameter does not equal the corresponding current gas parameter
if (!networkSpecificParams[currentNetwork.key]![i].eq(currentGasParameters[i])) {
// If there's a mismatch, add the network's holograph ID to the chainIds array
chainIds.push(currentNetwork.holographId);
// Also, add the network-specific parameters to the gasParameters array
gasParameters.push(networkSpecificParams[currentNetwork.key]!);
// Special case for if the current network is the one being deployed to
if (currentNetwork.holographId === network.holographId) {
// Mark the deployment network specifically by adding 0 to chainIds
chainIds.push(0);
// Add its parameters again to gasParameters
gasParameters.push(networkSpecificParams[currentNetwork.key]!);
}
// Exit the inner loop early since a mismatch was found
break;
}
} else if (!defaultParams[i].eq(currentGasParameters[i])) {
// If the network key does not exist, use default parameters
// Add the current network's holograph ID to chainIds for default parameter mismatch
chainIds.push(currentNetwork.holographId);
// Add the default parameters to gasParameters
gasParameters.push(defaultParams);
// Special case for the deployment network, similar to above
if (currentNetwork.holographId === network.holographId) {
chainIds.push(0); // Mark the deployment network
gasParameters.push(defaultParams); // Add default parameters for it
}
// Exit the inner loop early since a mismatch was found
break;
}
}
}
// After iterating through all networks, check if any chainIds were added
if (chainIds.length > 0) {
// Log that inconsistencies were found if there are any chainIds
console.log('Found some gas parameter inconsistencies');
// Prepare and send a transaction to update the gas parameters
// This involves calling a specific function on the LayerZero module with the updated parameters
const lzTx = await MultisigAwareTx(
hre,
'LayerZeroModule',
lzModule,
await lzModule.populateTransaction[
'setGasParameters(uint32[],(uint256,uint256,uint256,uint256,uint256,uint256)[])'
](chainIds, gasParameters, {
...(await txParams({
hre,
from: deployerAddress,
to: lzModule,
data: lzModule.populateTransaction[
'setGasParameters(uint32[],(uint256,uint256,uint256,uint256,uint256,uint256)[])'
](chainIds, gasParameters),
})),
})
);
// Log the transaction hash for tracking
console.log('Transaction hash:', lzTx.hash);
// Wait for the transaction to be confirmed
await lzTx.wait();
// Log a message indicating the gas parameters have been updated
console.log('Updated LayerZero GasParameters');
}
console.log(`Exiting script: ${__filename} ✅\n`);
};
export default func;
func.tags = ['LayerZeroModule'];
func.dependencies = ['HolographGenesis', 'DeploySources'];