Interface StakeDelegationCertificate

This certificate is used when a stakeholder wants to delegate their stake to a specific stake pool. It includes the stake pool id to which the stake is delegated.

interface StakeDelegationCertificate {
    poolId: string;
    stakeCredential: Credential;
    type: StakeDelegation;
}

Properties

poolId: string
stakeCredential: Credential