Skip to main content

PDelegatee

info

Introduced in V3 version

Defines various forms of delegation in context of staking and voting

Definition:

export const PDelegatee = pstruct({
DelegStake: { poolId: PPubKeyHash.type },
DelegVote: { drep: PDrep.type },
DelegStakeVote: { poolId: PPubKeyHash.type, drep: PDrep.type }
});

DelegStake

Certificate for delegating stake to a specified pool

poolId

type: PPubKeyHash.type

DelegVote

Certificate for delegating voting power to a specified DRep

drep

type: PDrep.type

DelegStakeVote

Certificate for delegating both stake and voting power

poolId

type: PPubKeyHash.type

drep

type: PDrep.type