(APP) https://app.osmosis.zone/

Osmosis price, OSMO chart, market cap, and info | CoinGecko

This tutorial will use the pioneer development platform and specifically its End to End tests to achieve tasks airdropped on the osmosis network.

Estimated time: 1 hour

Skill level: intermediate

reward: ~100ish OSMO

requirements:

ATOM's (few bucks worth)

Overview

  1. setup pioneer monorepo
  2. generate new wallet (using crypto module)
  3. generate Atom address
  4. Fund wallet with ATOM
  5. e2e test fund IBC deposit
  6. e2e swap to OSMO
  7. e2e LP-add

Step by Stem Guide

  1. Setup Pioneer Monorepo

Clone Repo:

git clone [<https://github.com/BitHighlander/pioneer>](<https://github.com/BitHighlander/pioneer>)

Make repo: (compile code)

make
  1. Using the cosmos-crypto module to generate a mnemonic seed.

directory

/*
    osmos
 */

require("dotenv").config({path:'../../../.env'})
require("dotenv").config({path:'../../../../.env'})
require("dotenv").config({path:'../../../../../.env'})
let crypto = require("../lib/index")
let assert = require('assert')

console.log(crypto.generateSeed())<https://github.com/BitHighlander/pioneer/tree/master/modules/coins/cosmos/cosmos-crypto>