::indices
1 * DOLLARS
The deposit needed for reserving an index.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/indices/src/lib.rs#L51-L52
::balances
1 * CENTS
The minimum balance required to create or keep an account open. This prevents "dust accounts" from filling storage. When the free plus the reserved balance (i.e. the total balance) fall below this, then the account is said to be dead; and it loses its functionality as well as any prior history and all information on it is removed from the chain's state.
No account should ever have a total balance that is strictly between 0 and the existential deposit (exclusive). If this ever happens, it indicates either a bug in this pallet or an erroneous raw mutation of storage.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/balances/src/lib.rs#L41-L47
::transaction-payment
10 * MILLICENTS
The fee to be paid for making a transaction; the per-byte portion.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/transaction-payment/src/lib.rs#L241-L242
::democracy
1 * DOLLARS
The minimum amount to be used as a deposit for a public referendum proposal.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/democracy/src/lib.rs#L227-L228
10 * MILLICENTS
The amount of balance that must be deposited per byte of preimage stored.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/democracy/src/lib.rs#L565-L566
::elections-phragmen
1 * DOLLARS
How much should be locked up in order to submit one's candidacy.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/elections-phragmen/src/lib.rs#L195-L196
::treasury
20 * DOLLARS
Minimum amount of funds that should be placed in a deposit for making a proposal.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/treasury/src/lib.rs#L113-L114
::tips
1 * DOLLARS
The amount held on deposit for placing a tip report.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/tips/src/lib.rs#L97-L98
::bounties
1 * CENTS
The amount held on deposit per byte within the tip report reason or bounty description.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/bounties/src/lib.rs#L123-L124
1 * DOLLARS
The amount held on deposit for placing a bounty proposal.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/bounties/src/lib.rs#L108-L109
2 * DOLLARS
Minimum value for a bounty.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/bounties/src/lib.rs#L120-121
::identity
10 * DOLLARS
The amount held on deposit for a registered identity.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/identity/src/lib.rs#L104-L105
250 * CENTS
The amount held on deposit per additional field for a registered identity.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/identity/src/lib.rs#L107-L108
2 * DOLLARS
The amount held on deposit for a registered subaccount. This should account for the fact that one storage item's value will increase by the size of an account ID, and there will be another trie item whose value is the size of an account ID plus 32 bytes.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/identity/src/lib.rs#L110-L113
::recovery
5 * DOLLARS
The base amount of currency needed to reserve for creating a recovery configuration.
This is held for an additional storage item whose value size is 2 + sizeof(BlockNumber, Balance)
bytes.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/recovery/src/lib.rs#L188-L192
50 * CENTS
The amount of currency needed per additional user when creating a recovery configuration. This is held for adding sizeof(AccountId)
bytes more into a pre-existing storage value.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/recovery/src/lib.rs#L18-L149
5 * DOLLARS
The base amount of currency needed to reserve for starting a recovery.
This is primarily held for deterring malicious recovery attempts, and should have a value large enough that a bad actor would choose not to place this deposit. It also acts to fund additional storage item whose value size is sizeof(BlockNumber, Balance + T * AccountId)
bytes. Where T is a configurable threshold.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/recovery/src/lib.rs#L202-L209
::society
10 * DOLLARS
The minimum amount of a deposit required for a bid to be made.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/society/src/lib.rs#L288-L289
2 * DOLLARS
The amount of the unpaid reward that gets deducted in the case that either a skeptic doesn't vote or someone votes in the wrong way.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/society/src/lib.rs#L18-L243
frame::society
:
https://github.com/paritytech/substrate/blob/v3.0.0/frame/society/src/lib.rs#L291-L293
https://github.com/paritytech/substrate/blob/v3.0.0/frame/society/src/lib.rs#L1305-L1460
500 * DOLLARS
The amount of incentive paid within each period. Doesn't include VoterTip.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/society/src/lib.rs#L299-L300
::vesting
100 * DOLLARS
The minimum amount transferred to call vested_transfer
.
https://github.com/paritytech/substrate/blob/v3.0.0/frame/vesting/src/lib.rs#L80-L81
IndexDeposit
: 10
ExistentialDeposit
: 100
TransactionByteFee
: 1
MinimumDeposit
: 100
PreimageByteDeposit
: 100
CandidacyBond
: 100
ProposalBondMinimum
: 5
TipReportDepositBase
: 1
DataDepositPerByte
: 1
BountyDepositBase
: 1
BountyValueMinimum
: 5
ParathreadDeposit
: $500 vs _
MinVestedTransfer
: 1
BasicDeposit
: _ vs $10
FieldDeposit
: _ vs $2.50
SubAccountDeposit
: _ vs $2
ConfigDepositBase
: _ vs $5
FriendDepositFactor
: _ vs $0.50
RecoveryDeposit
: _ vs $5
CandidateDeposit
: _ vs $10
WrongSideDeduction
: _ vs $2
PeriodSpend
: _ vs $500