Skip to content

Commit

Permalink
Merge pull request #4 from jamiew/v3-is-the-new-v2
Browse files Browse the repository at this point in the history
Use ReserveAuctionV3Factory in deploy script
  • Loading branch information
graemecode authored May 12, 2021
2 parents 24bafdf + f8f633d commit 893bbed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NFT Reserve Auctions

The main contract is at https://github.com/mirror-xyz/reserve-auction-v2/blob/main/contracts/ReserveAuctionV2.sol
The main contract is at https://github.com/mirror-xyz/reserve-auction-v2/blob/main/contracts/ReserveAuctionV3.sol

Please send feedback to [email protected]

Expand Down
6 changes: 3 additions & 3 deletions scripts/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs-extra';
import { JsonRpcProvider } from '@ethersproject/providers';
import { Wallet } from '@ethersproject/wallet';
import { ReserveAuctionV2Factory } from '../typechain/ReserveAuctionV2Factory';
import { ReserveAuctionV3Factory } from '../typechain/ReserveAuctionV3Factory';

const CHAIN_ID = 4;

Expand Down Expand Up @@ -44,8 +44,8 @@ async function start() {
// console.log('NFTFactory deployed at ', deployTx.address);
// addressBook.NFTFactory = deployTx.address;

console.log('Deploying ReserveAuctionV2...');
const reserveAuctionDeployTx = await new ReserveAuctionV2Factory(wallet).deploy(
console.log('Deploying ReserveAuctionV3...');
const reserveAuctionDeployTx = await new ReserveAuctionV3Factory(wallet).deploy(
ZORA_MEDIA_CONTRACT_ADDRESS,
wethAddress,
adminRecoveryAddress
Expand Down

0 comments on commit 893bbed

Please sign in to comment.