Interface VestingDelegation

Vesting Delegation

interface VestingDelegation {
    delegatee: string;
    delegator: string;
    id: number;
    min_delegation_time: string;
    vesting_shares: string | Asset;
}

Properties

delegatee: string

Account that is receiving vests from delegator.

delegator: string

Account that is delegating vests to delegatee.

id: number

Delegation id.

min_delegation_time: string

Earliest date delegation can be removed.

vesting_shares: string | Asset

Amount of VESTS delegated.