@xoxno/sdk-js 0.1.124-alpha → 0.1.126-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
- import type { Interaction } from '@multiversx/sdk-core/out/smartcontracts/interaction';
2
1
  import { GlobalOffer } from '../types/collection';
3
2
  import { NftData } from '..';
4
3
  import { AcceptGlobalOffer, Auction, ChangeListing, NewListingArgs, Payment, SendCustomOffer, SendGlobalOffer, WithSenderAndNonce } from '../types/interactions';
@@ -94,28 +93,28 @@ export declare class SCInteraction {
94
93
  * Withdraw auctions from the smart contract.
95
94
  *
96
95
  * @param auctionIDs The IDs of the auctions to withdraw from
97
- * @returns {Interaction} The interaction object of the smart contract
96
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
98
97
  */
99
98
  withdrawAuctions({ auctionIDs, sender, market, signature, }: {
100
99
  auctionIDs: number[];
101
100
  sender: WithSenderAndNonce;
102
101
  signature?: string;
103
102
  market?: string;
104
- }): Interaction;
103
+ }): IPlainTransactionObject;
105
104
  /**
106
105
  * Withdraw global offer from the smart contract.
107
106
  *
108
107
  * @param auctionIDs The IDs of the global offer to withdraw
109
- * @returns {Interaction} The interaction object of the smart contract
108
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
110
109
  */
111
- withdrawGlobalOffer(offerID: number, senderNonce: WithSenderAndNonce): Interaction;
110
+ withdrawGlobalOffer(offerID: number, senderNonce: WithSenderAndNonce): IPlainTransactionObject;
112
111
  /**
113
112
  * Accept a global offer
114
113
  *
115
114
  * @param offerID The offer ID
116
- * @returns {Interaction} The interaction object of the smart contract
115
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
117
116
  */
118
- acceptGlobalOffer({ signature, offer_id, auction_id_opt, nft, address, nonce, }: AcceptGlobalOffer & WithSenderAndNonce): Interaction;
117
+ acceptGlobalOffer({ signature, offer_id, auction_id_opt, nft, address, nonce, }: AcceptGlobalOffer & WithSenderAndNonce): IPlainTransactionObject;
119
118
  /**
120
119
  * Send a global offer
121
120
  * @param payment_token The token used for payment
@@ -124,9 +123,9 @@ export declare class SCInteraction {
124
123
  * @param collection The collection of the NFT
125
124
  * @param attributes The attributes of the NFT
126
125
  * @param depositAmount The deposit amount
127
- * @returns {Interaction} The interaction object of the smart contract
126
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
128
127
  * */
129
- sendGlobalOffer({ payment_token, payment_nonce, price, collection, attributes, depositAmount, address, nonce, }: SendGlobalOffer & WithSenderAndNonce): Interaction;
128
+ sendGlobalOffer({ payment_token, payment_nonce, price, collection, attributes, depositAmount, address, nonce, }: SendGlobalOffer & WithSenderAndNonce): IPlainTransactionObject;
130
129
  /**
131
130
  * Send a custom offer
132
131
  * @param payment_token The token used for payment
@@ -135,35 +134,35 @@ export declare class SCInteraction {
135
134
  * @param deadline The deadline of the offer
136
135
  * @param nft The NFT to be sold
137
136
  * @param depositAmount The deposit amount
138
- * @returns {Interaction} The interaction object of the smart contract
137
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
139
138
  * */
140
- sendCustomOffer({ payment_token, payment_nonce, price, deadline, nft, depositAmount, address, nonce, }: SendCustomOffer & WithSenderAndNonce): Interaction;
139
+ sendCustomOffer({ payment_token, payment_nonce, price, deadline, nft, depositAmount, address, nonce, }: SendCustomOffer & WithSenderAndNonce): IPlainTransactionObject;
141
140
  /**
142
141
  * Withdraws a custom offer
143
142
  *
144
143
  * @param offerID The offer ID
145
- * @returns {Interaction} The interaction object of the smart contract
144
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
146
145
  */
147
- withdrawCustomOffer(offerID: number, senderNonce: WithSenderAndNonce): Interaction;
146
+ withdrawCustomOffer(offerID: number, senderNonce: WithSenderAndNonce): IPlainTransactionObject;
148
147
  /**
149
148
  * Decline a custom offer
150
149
  *
151
150
  * @param offerID The offer ID
152
- * @returns {Interaction} The interaction object of the smart contract
151
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
153
152
  */
154
- declineCustomOffer(offerID: number, sender: WithSenderAndNonce, nft: NftData): Interaction;
153
+ declineCustomOffer(offerID: number, sender: WithSenderAndNonce, nft: NftData): IPlainTransactionObject;
155
154
  /**
156
155
  * Accept a custom offer
157
156
  *
158
157
  * @param offerID The offer ID
159
- * @returns {Interaction} The interaction object of the smart contract
158
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
160
159
  */
161
- acceptCustomOffer(offerID: number, sender: WithSenderAndNonce, nft: NftData): Interaction;
160
+ acceptCustomOffer(offerID: number, sender: WithSenderAndNonce, nft: NftData): IPlainTransactionObject;
162
161
  /**
163
162
  * @public
164
163
  * @function endAuction
165
164
  * @param {number} auctionID - The unique identifier of the auction.
166
- * @returns {Interaction} The resulting interaction with the specified chainID and gas limit.
165
+ * @returns {IPlainTransactionObject} The resulting interaction with the specified chainID and gas limit.
167
166
  *
168
167
  * This function allows ending an auction by its auctionID. It takes the following parameter:
169
168
  * - auctionID (number): The unique identifier of the auction.
@@ -171,7 +170,7 @@ export declare class SCInteraction {
171
170
  * The function calls the `endAuction` method on the smart contract with the provided auctionID.
172
171
  * Finally, it returns the resulting interaction with the specified chainID and gas limit.
173
172
  */
174
- endAuction(auctionID: number, sender: WithSenderAndNonce, market?: string): Interaction;
173
+ endAuction(auctionID: number, sender: WithSenderAndNonce, market?: string): IPlainTransactionObject;
175
174
  /**
176
175
  * Bid on an auction
177
176
  *
@@ -179,7 +178,7 @@ export declare class SCInteraction {
179
178
  * @param collection The NFT Collection
180
179
  * @param nonce The NFT nonce
181
180
  * @param payment The payment object
182
- * @returns {Interaction} The interaction object of the smart contract
181
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
183
182
  */
184
183
  bidOnAuctionId(auctionID: number, collection: string, nonce: number, payment: Payment, sender: WithSenderAndNonce): IPlainTransactionObject;
185
184
  /**
@@ -187,9 +186,9 @@ export declare class SCInteraction {
187
186
  *
188
187
  * @param auctionIDs The auction IDs
189
188
  * @param payment The payment object
190
- * @returns {Interaction} The interaction object of the smart contract
189
+ * @returns {IPlainTransactionObject} The interaction object of the smart contract
191
190
  */
192
- bulkBuy(auctionIDs: number[], payment: Payment, sender: WithSenderAndNonce): Interaction;
191
+ bulkBuy(auctionIDs: number[], payment: Payment, sender: WithSenderAndNonce): IPlainTransactionObject;
193
192
  /**
194
193
  * @public
195
194
  * @async
@@ -203,7 +202,7 @@ export declare class SCInteraction {
203
202
  * @param {number} [options.paymentAmount] - The payment amount for the auction (optional).
204
203
  * @param {boolean} [options.withCheck=true] - Whether to check the auction information (default is true).
205
204
  * @param {boolean} [options.isBigUintPayment=false] - Whether the payment amount is a big integer (default is false).
206
- * @returns {Promise<Interaction>} The resulting interaction with the specified chainID and gas limit.
205
+ * @returns {Promise<IPlainTransactionObject>} The resulting interaction with the specified chainID and gas limit.
207
206
  *
208
207
  * This function allows a user to buy an auction by its auctionID. It takes an object with the following properties:
209
208
  * - auctionID (number): The unique identifier of the auction.
@@ -232,14 +231,14 @@ export declare class SCInteraction {
232
231
  market?: string;
233
232
  decimals?: number;
234
233
  sender: WithSenderAndNonce;
235
- }): Promise<Interaction>;
234
+ }): Promise<IPlainTransactionObject>;
236
235
  /**
237
236
  * @docutype
238
237
  * @public
239
238
  * @async
240
239
  * @function changeListing
241
240
  * @param {ChangeListing[]} listings - An array of objects containing the information needed to change a listing.
242
- * @returns {Interaction} The resulting interaction with the specified chainID and gas limit.
241
+ * @returns {IPlainTransactionObject} The resulting interaction with the specified chainID and gas limit.
243
242
  *
244
243
  * This function takes an array of `ChangeListing` objects and constructs `Struct` instances using the provided
245
244
  * information. Each `ChangeListing` object should have the following properties:
@@ -251,7 +250,7 @@ export declare class SCInteraction {
251
250
  * The function then calls the `changeListing` method on the smart contract and returns the resulting interaction
252
251
  * with the specified chainID and gas limit.
253
252
  */
254
- changeListing(listings: ChangeListing[], sender: WithSenderAndNonce, marketplace: string): Promise<Interaction>;
255
- listNFTs(listings: NewListingArgs[], sender: WithSenderAndNonce): Promise<Interaction>;
253
+ changeListing(listings: ChangeListing[], sender: WithSenderAndNonce, marketplace: string): Promise<IPlainTransactionObject>;
254
+ listNFTs(listings: NewListingArgs[], sender: WithSenderAndNonce): Promise<IPlainTransactionObject>;
256
255
  }
257
256
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interactions/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interactions/index.ts"],"names":[],"mappings":"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"}