Interface PoolParameters

Stake pool update certificate parameters.

When a stake pool operator wants to change the parameters of their pool, they must submit a pool update certificate with these parameters.

interface PoolParameters {
    cost: bigint;
    id: string;
    margin: number;
    metadataJson?: Anchor;
    owners: string[];
    pledge: bigint;
    relays: Relay[];
    rewardAccount: string;
    vrf: string;
}

Properties

cost: bigint
id: string
margin: number
metadataJson?: Anchor
owners: string[]
pledge: bigint
relays: Relay[]
rewardAccount: string
vrf: string