Enum governance_os_pallet_tokens::Call[][src]

pub enum Call<T: Config> {
    create(T::CurrencyIdbool),
    mint(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance),
    burn(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance),
    update_details(T::CurrencyIdCurrencyDetails<T::AccountId>),
    transfer(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance),
    // some variants omitted
}

Dispatchable calls.

Each variant of this enum maps to a dispatchable function from the associated module.

Variants

create(T::CurrencyIdbool)

Creates a new currency with 0 units, to issue units to people one would have to call issue. This will register the caller of this dispatchable as the owner of the currency so they can issue or burn units. This will produce an error if currency_id is already used by another currency. Use transferable to determine if the created asset can be transferred between accounts. If not, the only way to move it would be to either be root or burn then mint the tokens again.

NOTE: by default, everybody can create new currencies, if it is not wanted you can use the bylaws pallet to restrict access to this dispatchable.

mint(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance)

Issue some units of the currency identified by currency_id and credit them to dest. Can only be called by the owner of the currency.

burn(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance)

Destroy some units of the currency identified by currency_id from from. Can only be called by the owner of the currency.

update_details(T::CurrencyIdCurrencyDetails<T::AccountId>)

Update details about the currency identified by currency_id. For instance, this can be used to change the owner of the currency. Can only be called by the owner.

NOTE: this will remove ownership / management access from the caller for the given currency if a new owner is specified. However, if other accounts have been granted management access to the same currency (for instance through a root action) this will not change it.

transfer(T::CurrencyId, <T::Lookup as StaticLookup>::Source, T::Balance)

Transfer amount units of the currency identified by currency_id from the origin’s account to the balance of dest.

Trait Implementations

impl<T: Config> Clone for Call<T>[src]

impl<T: Config> Debug for Call<T>[src]

impl<T: Config> Decode for Call<T> where
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    T::Balance: Decode,
    T::Balance: Decode,
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    T::Balance: Decode,
    T::Balance: Decode,
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    CurrencyDetails<T::AccountId>: Decode,
    CurrencyDetails<T::AccountId>: Decode,
    T::CurrencyId: Decode,
    T::CurrencyId: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    <T::Lookup as StaticLookup>::Source: Decode,
    T::Balance: Decode,
    T::Balance: Decode
[src]

impl<T: Config> Encode for Call<T> where
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    CurrencyDetails<T::AccountId>: Encode,
    CurrencyDetails<T::AccountId>: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode
[src]

impl<T: Config> GetCallName for Call<T>[src]

impl<T: Config> GetDispatchInfo for Call<T>[src]

impl<T: Config> PartialEq<Call<T>> for Call<T>[src]

impl<T: Config> UnfilteredDispatchable for Call<T>[src]

type Origin = T::Origin

The origin type of the runtime, (i.e. frame_system::Config::Origin).

impl<T: Config> EncodeLike<Call<T>> for Call<T> where
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    CurrencyDetails<T::AccountId>: Encode,
    CurrencyDetails<T::AccountId>: Encode,
    T::CurrencyId: Encode,
    T::CurrencyId: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    <T::Lookup as StaticLookup>::Source: Encode,
    T::Balance: Encode,
    T::Balance: Encode
[src]

impl<T: Config> Eq for Call<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Call<T> where
    T: RefUnwindSafe,
    <T as Config>::AccountId: RefUnwindSafe,
    <T as Config>::Balance: RefUnwindSafe,
    <T as Config>::CurrencyId: RefUnwindSafe,
    <<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe

impl<T> Send for Call<T> where
    T: Send,
    <<T as Config>::Lookup as StaticLookup>::Source: Send

impl<T> Sync for Call<T> where
    T: Sync,
    <<T as Config>::Lookup as StaticLookup>::Source: Sync

impl<T> Unpin for Call<T> where
    T: Unpin,
    <T as Config>::AccountId: Unpin,
    <T as Config>::Balance: Unpin,
    <T as Config>::CurrencyId: Unpin,
    <<T as Config>::Lookup as StaticLookup>::Source: Unpin

impl<T> UnwindSafe for Call<T> where
    T: UnwindSafe,
    <T as Config>::AccountId: UnwindSafe,
    <T as Config>::Balance: UnwindSafe,
    <T as Config>::CurrencyId: UnwindSafe,
    <<T as Config>::Lookup as StaticLookup>::Source: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Hashable for T where
    T: Codec
[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<S> Codec for S where
    S: Decode + Encode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: ToOwned + Encode
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe
[src]

impl<T> Member for T where
    T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone
[src]

impl<T> Parameter for T where
    T: Codec + EncodeLike<T> + Clone + Eq + Debug
[src]