DepositParams defines the params for deposits on governance proposals.

interface DepositParams {
    maxDepositPeriod: undefined | Duration;
    minDeposit: Coin[];
    minExpeditedDeposit: Coin[];
}

Properties

maxDepositPeriod: undefined | Duration

Maximum period for Atom holders to deposit on a proposal. Initial value: 2 months.

minDeposit: Coin[]

Minimum deposit for a proposal to enter voting period.

minExpeditedDeposit: Coin[]

Minimum deposit for a expedited proposal to enter voting period.