-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from hyphacoop/tinker-rs-testnet
tinker testnet genesis
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#!/usr/bin/env python | ||
""" | ||
This example will turn a genesis file exported from mainnet | ||
into a genesis file that has a single validator. | ||
Usage: | ||
$ ./example_mainnet_genesis.py | ||
To recover the validator key, use the following mnemonic: | ||
abandon abandon abandon abandon abandon abandon abandon abandon | ||
abandon abandon abandon abandon abandon abandon abandon abandon | ||
abandon abandon abandon abandon abandon abandon abandon art | ||
""" | ||
from cosmos_genesis_tinker import Delegator, Validator, GenesisTinker | ||
|
||
GENESIS_ARCHIVE = "tests/rs-testnet_genesis.json" | ||
|
||
NEW_CHAIN_ID = "local-testnet" | ||
|
||
# Tokens configuration | ||
UATOM_STAKE_INCREASE = 5500000000 * 1000000 | ||
UATOM_LIQUID_TOKEN_INCREASE = 1750000000 * 1000000 | ||
|
||
# The Coinbase validator will be replaced | ||
apple_val = Validator() | ||
apple_val.self_delegation_address = "cosmos1arjwkww79m65csulawqngr7ngs4uqu5hx9ak2a" | ||
apple_val.self_delegation_reward_address = "cosmos1arjwkww79m65csulawqngr7ngs4uqu5hx9ak2a" | ||
apple_val.self_delegation_public_key = "A2mxnq4a2RGcWnWe3YeAfOVB88Fy/IA2VPPteMhXwH1d" | ||
apple_val.operator_address = "cosmosvaloper1arjwkww79m65csulawqngr7ngs4uqu5hr3frxw" | ||
apple_val.public_key = "pjrsvzGpsIdotHc+ZYbwwVXb3ToJL6vDFMdsEX0D87A=" | ||
apple_val.address = "AE84D29EC8E3BBCF123B48C702DAA982EEC2830B" | ||
apple_val.consensus_address = "cosmosvalcons146zd98kguwau7y3mfrrs9k4fsthv9qct9mdnx0" | ||
|
||
test_val = Validator() | ||
test_val.self_delegation_address = "cosmos1r5v5srda7xfth3hn2s26txvrcrntldjumt8mhl" | ||
test_val.self_delegation_reward_address = "cosmos1r5v5srda7xfth3hn2s26txvrcrntldjumt8mhl" | ||
test_val.self_delegation_public_key = "ArpmqEz3g5rxcqE+f8n15wCMuLyhWF+PO6+zA57aPB/d" | ||
test_val.operator_address = "cosmosvaloper1r5v5srda7xfth3hn2s26txvrcrntldju7lnwmv" | ||
test_val.public_key = "xAqzjs6UkEg8YvoQy60bxytIocODxoDTNRz4+H81tTc=" | ||
test_val.address = "973C48DF8B3356C45E44494723A6E0D45DEB8131" | ||
test_val.consensus_address = "cosmosvalcons1ju7y3hutxdtvghjyf9rj8fhq63w7hqf3h8kr9w" | ||
|
||
test_del = Delegator() | ||
test_del.address = "cosmos1r5v5srda7xfth3hn2s26txvrcrntldjumt8mhl" | ||
test_del.public_key = "ArpmqEz3g5rxcqE+f8n15wCMuLyhWF+PO6+zA57aPB/d" | ||
|
||
print("Tinkering...") | ||
gentink = GenesisTinker(input_file=GENESIS_ARCHIVE) | ||
|
||
gentink.add_task(gentink.replace_validator, | ||
old_validator=apple_val, | ||
new_validator=test_val) | ||
|
||
gentink.add_task(gentink.set_chain_id, | ||
chain_id=NEW_CHAIN_ID) | ||
|
||
gentink.add_task(gentink.increase_balance, | ||
address=test_val.self_delegation_address, | ||
amount=UATOM_LIQUID_TOKEN_INCREASE) | ||
|
||
gentink.add_task(gentink.increase_delegator_stake_to_validator, | ||
delegator=test_del, | ||
validator=test_val, | ||
increase={'amount': UATOM_STAKE_INCREASE, | ||
'denom': 'uatom'}) | ||
|
||
# Set new governance parameters for convenience | ||
gentink.add_task(gentink.set_min_deposit, | ||
min_amount='1', | ||
denom='uatom') | ||
gentink.add_task(gentink.set_tally_param, | ||
parameter_name='quorum', | ||
value='0.000000000000000001') | ||
gentink.add_task(gentink.set_tally_param, | ||
parameter_name='threshold', | ||
value='0.000000000000000001') | ||
gentink.add_task(gentink.set_voting_period, | ||
voting_period='60s') | ||
|
||
gentink.run_tasks() |