Type Alias PolkadotRuntimeCommonIdentityMigratorEvent
PolkadotRuntimeCommonIdentityMigratorEvent: Enum<{
DepositUpdated: {
identity: bigint;
subs: bigint;
who: SS58String;
};
IdentityReaped: {
who: SS58String;
};
}>
Type declaration
DepositUpdated: {
identity: bigint;
subs: bigint;
who: SS58String;
}
identity: bigint
subs: bigint
who: SS58String
IdentityReaped: {
who: SS58String;
}
The deposits held for
who
were updated.identity
is the new deposit held for identity info, andsubs
is the new deposit held for the sub-accounts.