forked from holographxyz/holograph-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04_generic.ts
executable file
·67 lines (60 loc) · 2.04 KB
/
04_generic.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
declare var global: any;
import path from 'path';
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
import { DeployFunction } from '@holographxyz/hardhat-deploy-holographed/types';
import {
hreSplit,
genesisDeployHelper,
genesisDeriveFutureAddress,
generateInitCode,
txParams,
getDeployer,
} from '../scripts/utils/helpers';
import { ConfigureEvents } from '../scripts/utils/events';
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 salt = hre.deploymentSalt;
const futureGenericAddress = await genesisDeriveFutureAddress(
hre,
salt,
'HolographGeneric',
generateInitCode(
['uint256', 'bool', 'bytes'],
[
ConfigureEvents([]), // eventConfig
true, // skipInit
'0x', // initCode
]
)
);
console.log('the future "HolographGeneric" address is', futureGenericAddress);
// HolographGeneric
let genericDeployedCode: string = await hre.provider.send('eth_getCode', [futureGenericAddress, 'latest']);
if (genericDeployedCode === '0x' || genericDeployedCode === '') {
console.log('"HolographGeneric" bytecode not found, need to deploy"');
let holographGeneric = await genesisDeployHelper(
hre,
salt,
'HolographGeneric',
generateInitCode(
['uint256', 'bool', 'bytes'],
[
ConfigureEvents([]), // eventConfig
true, // skipInit
'0x', // initCode
]
),
futureGenericAddress
);
} else {
console.log('"HolographGeneric" is already deployed.');
}
console.log(`Exiting script: ${__filename} ✅\n`);
};
export default func;
func.tags = ['HolographGeneric', 'DeployGeneric'];
func.dependencies = ['HolographGenesis', 'DeploySources'];