Module Overview
Module Name auction
Module Reference 41322156e5
Verification Status Unverifiable
Age 121 days
Sender DjookyX
More Info
Deployed in block 25,079,032
Deployed in tx 6b86
Methods 5
Contracts 1
Module Build Info
Verification Status:Unverifiable
Build Image Used:N/A
Build Command Used:N/A
Archive Hash:N/A
Link to Source Code:N/A
Explanation:No embedded build information found.
Module Schema
Initialization

Parameters
None
Errors
None
Event
None
Methods

Parameters
{
  "end": "<Timestamp (e.g. `2000-01-01T12:00:00Z`)>",
  "initial_price": "<UInt64>",
  "item": "<String>"
}
Errors
None
Return
None

Parameters
{
  "auction_id": "<UInt32>"
}
Errors
{
  "Enum": [
    {
      "OnlyAccount": []
    },
    {
      "BidBelowCurrentBid": []
    },
    {
      "BidBelowMinimumRaise": []
    },
    {
      "BidTooLate": []
    },
    {
      "AuctionAlreadyFinalized": []
    },
    {
      "AuctionNotFound": []
    },
    {
      "ParameterParsingError": []
    },
    {
      "AuctionStillActive": []
    },
    {
      "TransferFailed": []
    },
    {
      "OnlyNotOwner": []
    }
  ]
}
Return
None

Parameters
None
Errors
None
Return
[
  {
    "auction_state": {
      "Enum": [
        {
          "NotSoldYet": []
        },
        {
          "Sold": [
            "<AccountAddress>"
          ]
        }
      ]
    },
    "end": "<Timestamp (e.g. `2000-01-01T12:00:00Z`)>",
    "highest_bid": "<Amount in microCCD>",
    "highest_bidder": {
      "Enum": [
        {
          "None": []
        },
        {
          "Some": [
            "<AccountAddress>"
          ]
        }
      ]
    },
    "initial_price": "<UInt64>",
    "item": "<String>",
    "owner": "<AccountAddress>"
  }
]

Parameters
{
  "auction_id": "<UInt32>"
}
Errors
None
Return
{
  "auction_state": {
    "Enum": [
      {
        "NotSoldYet": []
      },
      {
        "Sold": [
          "<AccountAddress>"
        ]
      }
    ]
  },
  "end": "<Timestamp (e.g. `2000-01-01T12:00:00Z`)>",
  "highest_bid": "<Amount in microCCD>",
  "highest_bidder": {
    "Enum": [
      {
        "None": []
      },
      {
        "Some": [
          "<AccountAddress>"
        ]
      }
    ]
  },
  "initial_price": "<UInt64>",
  "item": "<String>",
  "owner": "<AccountAddress>"
}

Parameters
{
  "auction_id": "<UInt32>"
}
Errors
{
  "Enum": [
    {
      "OnlyAccount": []
    },
    {
      "BidBelowCurrentBid": []
    },
    {
      "BidBelowMinimumRaise": []
    },
    {
      "BidTooLate": []
    },
    {
      "AuctionAlreadyFinalized": []
    },
    {
      "AuctionNotFound": []
    },
    {
      "ParameterParsingError": []
    },
    {
      "AuctionStillActive": []
    },
    {
      "TransferFailed": []
    },
    {
      "OnlyNotOwner": []
    }
  ]
}
Return
None
Module Usage