Skip to content

Commit

Permalink
feat: change orderkind for seaport1.5 to seaport
Browse files Browse the repository at this point in the history
  • Loading branch information
JadenDurnford committed Oct 23, 2024
1 parent 9348eac commit b139e51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions components/buttons/Bid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ const Bid: FC<Props> = ({
currencies={bidCurrencies}
oracleEnabled={marketplaceChain.oracleBidsEnabled}
chainId={marketplaceChain.id}
orderKind={
marketplaceChain.seaportV15 ? 'seaport-v1.5' : 'seaport-v1.6'
}
orderKind={marketplaceChain.seaportV15 ? 'seaport' : 'seaport-v1.6'}
onClose={(data, stepData, currentStep) => {
if (mutate && currentStep == BidStep.Complete) mutate()
}}
Expand Down
4 changes: 1 addition & 3 deletions components/buttons/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ const List: FC<Props> = ({
feesBps={orderFees}
currencies={listingCurrencies}
chainId={marketplaceChain.id}
orderKind={
marketplaceChain.seaportV15 ? 'seaport-v1.5' : 'seaport-v1.6'
}
orderKind={marketplaceChain.seaportV15 ? 'seaport' : 'seaport-v1.6'}
onClose={(data, stepData, currentStep) => {
if (mutate && currentStep == ListStep.Complete) mutate()
}}
Expand Down

0 comments on commit b139e51

Please sign in to comment.