Type Alias PolkadotRuntimeCommonIdentityMigratorEvent

PolkadotRuntimeCommonIdentityMigratorEvent: Enum<{
    DepositUpdated: {
        identity: bigint;
        subs: bigint;
        who: SS58String;
    };
    IdentityReaped: {
        who: SS58String;
    };
}>

Type declaration

  • DepositUpdated: {
        identity: bigint;
        subs: bigint;
        who: SS58String;
    }

    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.

    • identity: bigint
    • subs: bigint
    • who: SS58String
  • IdentityReaped: {
        who: SS58String;
    }

    The identity and all sub accounts were reaped for who.

    • who: SS58String