Module polkadot_sdk_frame::traits::tokens
Expand description
Traits for working with tokens and their associated datastructures.
Modules§
- The Currency trait and associated types.
- The traits for dealing with a single fungible token class and any associated types.
- The traits for sets of
fungible
tokens and any associated types. - The imbalance trait type and its associates, which handles keeps everything adding up properly with unbalanced operations.
- Traits for dealing with a single non-fungible collection of items.
- Traits for dealing with a single non-fungible item.
- Traits for dealing with multiple collections of non-fungible items.
- Traits for dealing with multiple collections of non-fungible items.
- The Pay trait and associated types.
Structs§
- Adapter for a rank-to-salary
Convert
implementation into aGetSalary
implementation. - An identifier and balance.
- Simple implementation of
Pay
which makes a payment from a “pot” - i.e. a single account. - Implements
ConversionFromAssetBalance
, enabling a 1:1 conversion of the asset balance value to the balance. - Implements
ConversionFromAssetBalance
, allowing for a 1:1 balance conversion of the asset when it meets the conditions specified byC
. If the conditions are not met, the conversion is delegated toO
. - Reasons for moving funds out of an account.
Enums§
- Status of funds.
- One of a number of consequences of withdrawing a fungible from an account.
- Simple boolean for whether an account needs to be kept in existence.
- The privilege with which a withdraw operation is conducted.
- Status for making a payment via the
Pay::pay
trait function. - The precision required of an operation generally involving some aspect of quantitative fund withdrawal or transfer.
- The mode by which we describe whether an operation should keep an account alive.
- The origin of funds to be used for a deposit operation.
- The mode under which usage of funds may be restricted.
- One of a number of consequences of withdrawing a fungible from an account.
Traits§
- Simple amalgamation trait to collect together properties for an AssetId under one roof.
- Simple amalgamation trait to collect together properties for a Balance under one roof.
- Converts an asset balance value into balance.
- Converts a balance value into an asset balance.
- Retrieve the salary for a member of a particular rank.
- A trait for a not-quite Linear Type that tracks an imbalance.
- Trait to handle NFT locking mechanism to ensure interactions with the asset can be implemented downstream to extend logic of Uniques/Nfts current functionality.
- Can be implemented by
PayFromAccount
using afungible
impl, but can also be implemented with XCM/Asset and made generic over assets.