Skip allocation of LPS tokens for early supports account
This commit is contained in:
parent
3ac0306145
commit
7f6867241a
@ -18,8 +18,14 @@ fi
|
||||
|
||||
# lps allocations
|
||||
# Total supply: 129600 lps
|
||||
EARLY_SUPPORTS_ALLOC="25920" # Early supports: 25920 lps (20% of total supply)
|
||||
LOCKUP_ALLOC="103680" # Lockup: 103680 lps (80% of total supply)
|
||||
|
||||
# Old plan, will allocate 100% to lockup module instead
|
||||
# EARLY_SUPPORTS_ALLOC="25920" # Early supports: 25920 lps (20% of total supply)
|
||||
# LOCKUP_ALLOC="103680" # Lockup: 103680 lps (80% of total supply)
|
||||
|
||||
|
||||
LOCKUP_ALLOC="129600" # Lockup: 129600 lps (100% of total supply)
|
||||
|
||||
LPS_LOCKUP_MODULE_ACCOUNT="lps_lockup"
|
||||
LPS_DENOM="lps"
|
||||
|
||||
@ -44,8 +50,10 @@ update_genesis '.app_state["gov"]["params"]["expedited_threshold"]="1.0000000000
|
||||
# Set normal threshold to 99% since it needs to be lesser than expedited threshold
|
||||
update_genesis '.app_state["gov"]["params"]["threshold"]="0.990000000000000000"'
|
||||
|
||||
# Skipping early supports account allocation
|
||||
# laconicd genesis add-genesis-account $EARLY_SUPPORTS_ACC_ADDRESS $EARLY_SUPPORTS_ALLOC$LPS_DENOM --keyring-backend $KEYRING --append
|
||||
|
||||
# Perform lps allocations
|
||||
laconicd genesis add-genesis-account $EARLY_SUPPORTS_ACC_ADDRESS $EARLY_SUPPORTS_ALLOC$LPS_DENOM --keyring-backend $KEYRING --append
|
||||
laconicd genesis add-genesis-lockup-account lps_lockup $distribution_file $LOCKUP_ALLOC$LPS_DENOM
|
||||
|
||||
# Ensure that resulting genesis file is valid
|
||||
|
||||
Loading…
Reference in New Issue
Block a user