interface BootstrapProtocolParameters {
    heavyDelegationThreshold?: string;
    maxBlockBodySize?: {
        bytes: number;
    };
    maxBlockHeaderSize?: {
        bytes: number;
    };
    maxTransactionSize?: {
        bytes: number;
    };
    maxUpdateProposalSize?: {
        bytes: number;
    };
    minFeeCoefficient?: number;
    minFeeConstant?: ValueAdaOnly;
    multiPartyComputationThreshold?: string;
    scriptVersion?: number;
    slotDuration?: number;
    softForkDecrementThreshold?: string;
    softForkInitThreshold?: string;
    softForkMinThreshold?: string;
    unlockStakeEpoch?: number;
    updateProposalThreshold?: string;
    updateProposalTimeToLive?: number;
    updateVoteThreshold?: string;
}

Properties

heavyDelegationThreshold?: string
maxBlockBodySize?: {
    bytes: number;
}
maxBlockHeaderSize?: {
    bytes: number;
}
maxTransactionSize?: {
    bytes: number;
}
maxUpdateProposalSize?: {
    bytes: number;
}
minFeeCoefficient?: number
minFeeConstant?: ValueAdaOnly
multiPartyComputationThreshold?: string
scriptVersion?: number
slotDuration?: number
softForkDecrementThreshold?: string
softForkInitThreshold?: string
softForkMinThreshold?: string
unlockStakeEpoch?: number
updateProposalThreshold?: string
updateProposalTimeToLive?: number
updateVoteThreshold?: string