Type Alias VestingEvent

VestingEvent: Enum<{
    VestingCompleted: {
        account: SS58String;
    };
    VestingUpdated: {
        account: SS58String;
        unvested: bigint;
    };
}>

Type declaration

  • VestingCompleted: {
        account: SS58String;
    }

    An [account] has become fully vested.

    • account: SS58String
  • VestingUpdated: {
        account: SS58String;
        unvested: bigint;
    }

    The amount vested has been updated. This could indicate a change in funds available. The balance given is the amount which is left unvested (and thus locked).

    • account: SS58String
    • unvested: bigint