interface StakeDelegation {
    credential: string;
    delegateRepresentative?: DelegateRepresentative;
    from: CredentialOrigin;
    stakePool?: {
        id: string;
    };
    type: "stakeDelegation";
}

Properties

credential: string
delegateRepresentative?: DelegateRepresentative
stakePool?: {
    id: string;
}
type: "stakeDelegation"