Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2.1 #166

Merged
merged 4 commits into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,6 @@ Terra Core builds on [Tendermint](https://github.com/tendermint/tendermint) cons
- Wallet
- [Terra Station](https://terra.money): Available for download on the Terra website

### Ecosystem

#### Known block explorers
- [Terra Finder](https://finder.terra.money)
- [Stake ID by Staking Fund](https://terra.stake.id)
- [Terra Figment Hubble](https://hubble.figment.network/terra/chains/columbus-1)

#### Known wallets
- **Terra Station**: available for download for OS X and Windows at [the Terra Website](https://terra.money).

#### Other tools
- [Terra Faucet](https://faucet.terra.money): Offers free tokens for the Soju testnets.

#### Applications
- **TerraX**, a payment gateway utilizing Columbus-1 Mainnet will launch in the next few weeks. Please stay tuned for updates.

### Terra Alliance

Expand Down
10 changes: 9 additions & 1 deletion contrib/export/columbus1-to-columbus2.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,21 @@ def process_raw_genesis(genesis, vesting_info, parsed_args):

# Change wallet address of translink capital
if account['address'] == 'terra1d4v2k6h7ltc4mpkk9pgtp277yp2flte7296ypq':
account['address'] = 'terra1vulcsvfla6sej0p5y0n99w4ldke5tte3rsukyk'
account['address'] = 'terra1y9n2ywyu5dahtxar6k4z4jz97ynt8km4catuk6'


# Set new chain ID and genesis start time
genesis['chain_id'] = parsed_args.chain_id.strip()
genesis['genesis_time'] = parsed_args.start_time

genesis['app_state']['market']['params']['daily_luna_delta_limit'] = "0.005"
genesis['app_state']['market']['params']['max_swap_spread'] = "0.1"
genesis['app_state']['market']['params']['min_swap_spread'] = "0.02"

genesis['app_state']['oracle']['params']['vote_period'] = "12"

genesis['app_state']['treasury']['params']['reward_policy']['rate_max'] = "0.9"

return genesis

def change_vesting_schedule(account, denom, amount, genesis_date):
Expand Down