File tree 2 files changed +3
-2
lines changed
typescript/packages/plugins/solana-magiceden/src
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ export async function buyListing(
17
17
buyer : walletClient . getAddress ( ) ,
18
18
seller : nftInfo . seller ,
19
19
tokenMint : parameters . mintHash ,
20
- tokenATA : nftInfo . pdaAddress ,
20
+ tokenATA : nftInfo . tokenAddress ,
21
21
price : nftInfo . price . toString ( ) ,
22
+ ...( nftInfo . auctionHouse ? { auctionHouseAddress : nftInfo . auctionHouse } : { } ) ,
22
23
} ) ;
23
24
24
25
let data : z . infer < typeof getBuyListingTransactionResponseSchema > ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export const getNftInfoResponseSchema = z.array(
8
8
z . object ( {
9
9
pdaAddress : z . string ( ) ,
10
10
auctionHouse : z . string ( ) . optional ( ) ,
11
- tokenAddress : z . string ( ) . optional ( ) ,
11
+ tokenAddress : z . string ( ) ,
12
12
tokenMint : z . string ( ) . optional ( ) ,
13
13
seller : z . string ( ) ,
14
14
sellerReferral : z . string ( ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments