From b139e51e46b613300ed8a2bae30c39c76b09d8c7 Mon Sep 17 00:00:00 2001 From: Jaden Date: Wed, 23 Oct 2024 17:42:41 -0400 Subject: [PATCH] feat: change orderkind for seaport1.5 to seaport --- components/buttons/Bid.tsx | 4 +--- components/buttons/List.tsx | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/components/buttons/Bid.tsx b/components/buttons/Bid.tsx index aa8e58e1..a8f5b35a 100644 --- a/components/buttons/Bid.tsx +++ b/components/buttons/Bid.tsx @@ -89,9 +89,7 @@ const Bid: FC = ({ 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() }} diff --git a/components/buttons/List.tsx b/components/buttons/List.tsx index 589b1a92..ea6be9dc 100644 --- a/components/buttons/List.tsx +++ b/components/buttons/List.tsx @@ -74,9 +74,7 @@ const List: FC = ({ 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() }}