You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The temporary state, which means the auction for this bid is pending
225
+
// The temporary state which means the auction for this bid is pending.
226
+
// It will be updated to Lost or Submitted after the auction takes place.
226
227
{
227
228
"type": "bid_status_update",
228
229
"status": {
@@ -237,8 +238,8 @@ Refer to the examples below, one for each of the status options in EVM and SVM:
237
238
<Tabs.Tab>
238
239
```json
239
240
// submitted
240
-
/// The bid is submitted to the chain, with the transaction with the signature.
241
-
/// This state is temporary and will be updated to either lost or won after conclusion of the auction.
241
+
// The bid won the auction and was submitted to the chain, with the signature of the corresponding transaction provided in the result field.
242
+
// This state is temporary and will be updated to either Won or Failed after the transaction is included in a block, or Expired if the transaction expires before it is included.
242
243
{
243
244
"type": "bid_status_update",
244
245
"status": {
@@ -247,7 +248,7 @@ Refer to the examples below, one for each of the status options in EVM and SVM:
247
248
// the enum for the bid_status
248
249
"type": "submitted",
249
250
// the hash of the transaction that the bid's calldata was included in
0 commit comments