IdentityMigrator¶
Calls¶
poke_deposit¶
See [Pallet::poke_deposit
].
Attributes¶
Name | Type |
---|---|
who | T::AccountId |
Python¶
call = substrate.compose_call(
'IdentityMigrator', 'poke_deposit', {'who': 'AccountId'}
)
reap_identity¶
See [Pallet::reap_identity
].
Attributes¶
Name | Type |
---|---|
who | T::AccountId |
Python¶
call = substrate.compose_call(
'IdentityMigrator', 'reap_identity', {'who': 'AccountId'}
)
Events¶
DepositUpdated¶
The deposits held for who
were updated. identity
is the new deposit held for
identity info, and subs
is the new deposit held for the sub-accounts.
Attributes¶
Name | Type | Composition |
---|---|---|
who | T::AccountId |
AccountId |
identity | BalanceOf<T> |
u128 |
subs | BalanceOf<T> |
u128 |
IdentityReaped¶
The identity and all sub accounts were reaped for who
.
Attributes¶
Name | Type | Composition |
---|---|---|
who | T::AccountId |
AccountId |