forked from holographxyz/holograph-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_erc1155.ts
executable file
·34 lines (27 loc) · 1.11 KB
/
06_erc1155.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
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 {
LeanHardhatRuntimeEnvironment,
hreSplit,
genesisDeployHelper,
generateInitCode,
getGasPrice,
getGasLimit,
getDeployer,
} from '../scripts/utils/helpers';
import { HolographERC1155Event, 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;
// this is purposefully left empty, and is a placeholder for future use
console.log(`Exiting script: ${__filename} ✅\n`);
};
export default func;
func.tags = ['DeployERC1155'];
func.dependencies = ['HolographGenesis', 'DeploySources'];