Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/containers/lists/BidList/BidList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React, { useEffect, useState } from 'react';
import styles from './BidList.module.scss';

// Component Imports
import { FutureButton, Wizard } from 'components';
import { FutureButton } from 'components';

// Type Imports
import { Bid } from 'lib/types';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/hooks/useBidProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const useBidProvider = (): UseBidProviderReturn => {

return tx;
},
[zAuctionContract],
[zAuctionContract, sdk, context.library],
);

const getBidsForYourDomains = useCallback(async () => {
Expand Down
18 changes: 16 additions & 2 deletions src/store/staking/staking.mockData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ export const DOMAIN_REQUEST_AND_CONTENTS_1: DomainRequestAndContents = {
parent: {
id: '0x810270aba21bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d58e1c',
name: 'parent domain name 1',
parent: '0x8123a9b1bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d928d',
parent: {
id: '0x8123a9b1bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d928d',
name: 'parent 1',
},
owner: {
id: '0x0ddda1dd73c063af0a8d4df0cdd2a6818685f9ce',
},
Expand All @@ -36,6 +39,10 @@ export const DOMAIN_REQUEST_AND_CONTENTS_1: DomainRequestAndContents = {
},
metadata:
'https://ipfs.fleek.co/ipfs/QmevCu3hPcBB3XydNm5Msc7k1PVQiCqfk2g26h5Msvy59x',
isLocked: true,
lockedBy: {
id: '0x0ddda1dd73c063af0a8d4df0cdd2a6818685f9ce',
},
},
offeredAmount: '500',
requestUri:
Expand Down Expand Up @@ -70,7 +77,10 @@ export const DOMAIN_REQUEST_AND_CONTENTS_2: DomainRequestAndContents = {
parent: {
id: '0x810270aba21bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d58e1c',
name: 'parent domain name 2',
parent: '0x8123a9b1bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d928d',
parent: {
id: '0x8123a9b1bdfd45e997cb16823a017be76daf4822529dce30ee7ea03d928d',
name: 'parent 2',
},
owner: {
id: '0x0ddda1dd73c063af0a8d4df0cdd2a6818685f9ce',
},
Expand All @@ -79,6 +89,10 @@ export const DOMAIN_REQUEST_AND_CONTENTS_2: DomainRequestAndContents = {
},
metadata:
'https://ipfs.fleek.co/ipfs/QmevCu3hPcBB3XydNm5Msc7k1PVQiCqfk2g26h5Msvy59x',
isLocked: true,
lockedBy: {
id: '0x0ddda1dd73c063af0a8d4df0cdd2a6818685f9ce',
},
},
offeredAmount: '500',
requestUri:
Expand Down