Shio
  • 👋INTRODUCTION
    • Shio
    • Defi Integrations
    • Campaign
    • Join the Community
    • Brand Kit
  • 🎮SHIO PRODUCTS
    • Shio Endpoint
  • 🤖Searcher Guides
    • Getting Started as a Searcher
    • Connect to Shio Feed
      • auctionStarted Event
    • Submit Bid
      • Simulate Bid
    • Interact with Shio Contract
    • Inspect Historical Auction Events
    • Searcher FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Searcher Guides

Inspect Historical Auction Events

PreviousInteract with Shio ContractNextSearcher FAQ

Last updated 7 months ago

Was this helpful?

Once an auction has completed, a series of events will be persisted, including when did the auction start, what bids are accepted, etc. This information could be handful for debugging, so that one gains visibility into what happened during the auction.

Note that rejected bids (for any reason) will not generate an event.

To retrieve such events, send the following request to https://rpc.getshio.com/:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "shio_auctionEvents",
  "params": [
    "FRTxR2eMbu9DXaQUGSbvmCPTCm78ufBTPxu618Fd8c6P",
  ]
}

The method shio_auctionEvents accepts only one parameter, which is the digest of the opportunity transaction.

Alternatively, you can browse all recent bundles here: . Note that the Explorer does not show auctions that has no bid accepted at all.

🤖
Shio Explorer