pub type Event = Event;
enum Event {
Show 22 variants
Endowed {
account: AccountId32,
free_balance: u64,
},
DustLost {
account: AccountId32,
amount: u64,
},
Transfer {
from: AccountId32,
to: AccountId32,
amount: u64,
},
BalanceSet {
who: AccountId32,
free: u64,
},
Reserved {
who: AccountId32,
amount: u64,
},
Unreserved {
who: AccountId32,
amount: u64,
},
ReserveRepatriated {
from: AccountId32,
to: AccountId32,
amount: u64,
destination_status: BalanceStatus,
},
Deposit {
who: AccountId32,
amount: u64,
},
Withdraw {
who: AccountId32,
amount: u64,
},
Slashed {
who: AccountId32,
amount: u64,
},
Minted {
who: AccountId32,
amount: u64,
},
Burned {
who: AccountId32,
amount: u64,
},
Suspended {
who: AccountId32,
amount: u64,
},
Restored {
who: AccountId32,
amount: u64,
},
Upgraded {
who: AccountId32,
},
Issued {
amount: u64,
},
Rescinded {
amount: u64,
},
Locked {
who: AccountId32,
amount: u64,
},
Unlocked {
who: AccountId32,
amount: u64,
},
Frozen {
who: AccountId32,
amount: u64,
},
Thawed {
who: AccountId32,
amount: u64,
},
TotalIssuanceForced {
old: u64,
new: u64,
},
}