Name | Lookup | Parameters | |
---|---|---|---|
create_listing | f900 | 2 | |
cancel_listing | f901 | 1 | |
add_whitelisted_accounts | f90c | 2 | |
remove_whitelisted_accounts | f90d | 2 | |
fill_listing | f902 | 3 | |
place_bid | f903 | 2 | |
place_counter_offer | f909 | 3 | |
answer_counter_offer | f90a | 5 | |
finalize_auction | f904 | 2 | |
remove_expired_listing | f908 | 1 | |
set_protocol_fee | f905 | 1 | |
force_create_listing | f906 | 3 | |
force_place_bid | f907 | 4 | |
force_cancel_listing | f90b | 1 | |
upgrade_listings | f90e | 1 |
Name | Lookup | Attributes | |
---|---|---|---|
ListingCreated | f900 | ["ListingIdOf","Listing"] | |
ListingCancelled | f901 | ["ListingIdOf"] | |
ListingFilled | f902 | ["ListingIdOf","AccountId","TokenBalanceOf","TokenBalanceOf","TokenBalanceOf","TokenBalanceOf","TokenBalanceOf"] | |
BidPlaced | f903 | ["ListingIdOf","Bid"] | |
AuctionFinalized | f904 | ["ListingIdOf","Option<Bid>","TokenBalanceOf","TokenBalanceOf"] | |
ProtocolFeeSet | f905 | ["Perbill"] | |
ExpiredListingRemoved | f906 | ["ListingIdOf"] | |
CounterOfferPlaced | f907 | ["ListingIdOf","CounterOffer"] | |
CounterOfferAnswered | f908 | ["ListingIdOf","AccountId","CounterOfferResponseOf"] | |
CounterOfferRemoved | f909 | ["ListingIdOf","AccountId"] | |
MigrationStep | f90a | ["u32","u8"] | |
ListingRemovedUnderMinimum | f90b | ["ListingIdOf"] | |
ListingUpgraded | f90c | ["ListingIdOf"] |
Name | Type | |
---|---|---|
Info | {"origin":"PlainType","plain_type":"compact<U32>","PlainTypeValue":1058} | |
Listings | {"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["H256"],"value":"pallet_marketplace:features:listing:Listing","keys_id":13,"value_id":317}} | |
CounterOffers | {"origin":"Map","n_map_type":{"hashers":["Identity","Twox64Concat"],"key_vec":["H256","AccountId"],"value":"pallet_marketplace:features:offer:CounterOffer","keys_id":1059,"value_id":328}} | |
NextListingIdInput | {"origin":"PlainType","plain_type":"U128","PlainTypeValue":6} | |
PendingActions | {"origin":"PlainType","plain_type":"Vec<pallet_marketplace:types:PendingAction>","PlainTypeValue":1060} | |
WhitelistedAccounts | {"origin":"Map","n_map_type":{"hashers":["Identity","Twox64Concat"],"key_vec":["H256","AccountId"],"value":"pallet_marketplace:features:whitelist:WhitelistedAccount","keys_id":1059,"value_id":1063}} | |
UpgradeBlockNumber | {"origin":"PlainType","plain_type":"U32","PlainTypeValue":4} |
Name | Type | Value | |
---|---|---|---|
MinimumBidIncreasePercentage | U32 | 80f0fa02 | |
ListingDeposit | U128 | 008008979ca50a070000000000000000 | |
CounterOfferDeposit | U128 | 00008a5d784563010000000000000000 | |
WhitelistedAccountDeposit | U128 | 00008a5d784563010000000000000000 | |
ListingActiveDelay | U32 | 0a000000 | |
MaxRoundingError | U128 | e8030000000000000000000000000000 | |
MaxSaltLength | U32 | 20000000 | |
MaxPendingActions | U32 | 64000000 | |
MaxWhitelistedAccountsPerExtrinsic | U32 | 64000000 | |
MaxUpgradeBatchSize | U32 | ac0d0000 |
Name | Docs |
---|---|
UnableToFill | the order cannot be filled |
ListingNotFound | The listing does not exist |
NoPermission | The caller does not have permission for this operation |
MaxRoundingErrorExceeded | The max rounding error was exceeded |
LowBaseCurrencyBalance | The base currency balance is too low |
LowTokenBalance | The token balance is too low |
TransferParamCreationFailed | Transfer params could not be created |
ReceivedValueUnderMinimum | The take value is under the minimum requirement |
ListingAlreadyExists | A listing with this id already exists |
InvalidAuctionEnd | The end time of the auction must be after the start |
InactiveAuction | Cannot bid on an auction that has not started or is over |
AuctionNotOver | Cannot finalize an auction that is not over |
ListingIsWrongType | An action was taken that is not compatible with the listing's type. |
InvalidAmount | The amount is invalid |
InvalidPrice | The price is invalid |
InvalidListingStart | The start time of the listing must be greater than the current block plus thelisting active delay |
ListingForbidden | Listing is forbidden for this token |
NoCurrency | Neither the make side or the take side of the listing is considered a currency |
ListingNotActive | The listing has not crossed the mandatory delay before its considered active |
CurrencyNotAllowedAsRoyalty | The currency is not allowed to be used as a royalty payment |
BuyerIsSeller | The seller is not allowed to buy their own listing |
MakeAssetFrozen | Make asset is frozen |
TakeAssetFrozen | Take asset is frozen |
CannotCancelAuctionWithBid | Cannot cancel auction with active bid |
CannotCancelAuctionAfterEndBlock | Cannot cancel auction after end block |
InvalidExpiration | The expiration block must be in the future |
NotExpired | The listing is not expired and cannot be removed |
NoCounterOffer | A counter offer is required but does not exist |
PartialFillNotAllowed | Offers do not support partial fills |
InvalidFeeSide | The fee side does not match the listing type |
WrongCurrentPrice | The passed `current_price` does not match the actual current price |
CannotCounterSelf | Cannot place a counter offer on own offer |
MaxPendingActionsExceeded | Max number of pending actions has been exceeded |
CounterOfferExists | The counter offer already exists |
ListingExpired | The listing is expired and cannot be filled |
CannotAcceptOwnCounterOffer | The seller cannot accept their own counter offer |
AccountNotWhitelisted | The buyer is not whitelisted in this listing |
WhitelistAmountAllowedExceeded | Tried to fill a listing beyond what the whitelist allows for the buyer |
ListingDoesNotUseWhitelist | A whitelist operation was attempted on a lsiting that doesn't use it |
IncorrectRoyaltyBeneficiaryCount | Incorrect number of beneficiaries was passed |