Inspect Historical Auction Events

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.

Last updated