Deploy an Ante Test
Deploy a completed Ante Test to Mainnet
Ante's deploy script using Hardhat
Setup
import hre from 'hardhat';
import chalk from 'chalk';
const main = async () => {
const [deployer] = await hre.ethers.getSigners();
// name of the contract for Ante Test
const testName = 'AnteEthDevRugTest';
// array of constructor arguments for Ante Test
const args = ['0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae'] as const;
// script/deploy_test.ts continuesDeployment
Verification
Other deployment solutions
After deploying your Ante Test
Last updated