Skip to content

Instantly share code, notes, and snippets.

@jackzampolin
Created March 9, 2019 17:28
Show Gist options
  • Save jackzampolin/c2e2c6c8836d012e7e4b9fb0a930e243 to your computer and use it in GitHub Desktop.
Save jackzampolin/c2e2c6c8836d012e7e4b9fb0a930e243 to your computer and use it in GitHub Desktop.
AiB Atoms

Launch Key Verification

@mircea-c has been nice enough to spin us up a testnet so that we can ensure that our keys for launch work properly. Below is a set of instructions to verify your launch keys. First, ensure that you have the latest version of gaiacli installed:

$ gaiacli version --long 
cosmos-sdk: 0.33.0
git commit: 7b4104aced52aa5b59a96c28b5ebeea7877fc4f0
vendor hash: 
build tags: netgo ledger
go version go1.12 darwin/amd64

After that, make sure your ledger is updated to the latest version of both firmware and the Cosmos App. You will use the ledger manager to acomplish this. If your Cosmos App is out of date (i.e. the last time you installed it was to generate your address), uninstall it and ensure that v1.1.1 is installed from the ledger app store. Verify the version on your ledger as well.

Once that setup is complete, open the Cosmos app on your ledger and add it to the gaiacli command line tool:

$ gaiacli keys add launch --ledger

Now, configure your gaiacli to talk to the test network:

$ gaiacli config chain-id aib-testnet
$ gaiacli config node tcp://ec2-100-26-204-69.compute-1.amazonaws.com:26657

You should now see uatom in your account:

$ gaiacli q account $(gaiacli keys show launch -a)

To test a transaction, try delegating to the validator running the network:

$ gaiacli tx staking delegate cosmosvaloper19m0yyuam4xp76e8szq2mhdyu8xxwgah9a3au7j <amount> --from launch
@jackzampolin
Copy link
Author

jackzampolin commented Mar 11, 2019

If you run into build errors, please run:

make distclean
make vendor-deps
make install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment