1. 20 Oct, 2022 2 commits
  2. 19 Oct, 2022 6 commits
  3. 18 Oct, 2022 3 commits
  4. 17 Oct, 2022 3 commits
  5. 14 Oct, 2022 1 commit
  6. 11 Oct, 2022 2 commits
  7. 10 Oct, 2022 1 commit
  8. 07 Oct, 2022 1 commit
  9. 06 Oct, 2022 1 commit
  10. 05 Oct, 2022 1 commit
  11. 04 Oct, 2022 2 commits
    • Roman's avatar
      chore: remove cdc from keepers; switch store get/set to osmoutils (post v12) (#2749) · 7dbeb087
      Roman authored
      * test
      
      * change name
      
      * updates
      
      * chore: switch store getters and setters to osmoutils, remove cdc from keepers
      
      * revert mergify
      
      * merge conflict
      7dbeb087
    • Adam Tucker's avatar
      chore: update chain.schema.json (#2946) · 74d52389
      Adam Tucker authored
      ## What is the purpose of the change
      
      Update chain scheme.json to new 12.1.0
      
      Side note, we really need to automate this!
      
      
      ## Brief Changelog
      
      - Updates chain scheme for chain registry
      
      
      ## Testing and Verifying
      
      This change is a trivial rework / code cleanup without any test coverage.
      
      ## Documentation and Release Note
      
        - Does this pull request introduce a new feature or user-facing behavior changes? no
        - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? no
        - How is the feature or change documented? not applicable
      74d52389
  12. 03 Oct, 2022 5 commits
  13. 02 Oct, 2022 2 commits
    • AutoStake's avatar
      Update BlockNgine seed -> AutoStake seed (#2929) · fcade39a
      AutoStake authored
      ## Brief Changelog
      
      Update BlockNgine seed URL to re-branded AutoStake seed
      
      ## Testing and Verifying
      
      This change is a trivial rework / code cleanup without any test coverage.
      
      ## Documentation and Release Note
      
        - Does this pull request introduce a new feature or user-facing behavior changes? (no)
        - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? (no)
        - How is the feature or change documented? (not applicable)
      fcade39a
    • Adam Tucker's avatar
      feat: cli command to create csv for merkledrop (#2928) · 1f0c71d5
      Adam Tucker authored
      
      * add cli logic to create csv for merkledrop
      
      * Update cmd/osmosisd/cmd/balances_from_state_export.go
      
      Co-authored-by: default avatarRoman <roman@osmosis.team>
      
      Co-authored-by: default avatarRoman <roman@osmosis.team>
      1f0c71d5
  14. 01 Oct, 2022 7 commits
  15. 30 Sep, 2022 3 commits
    • alpo's avatar
      [x/gamm][stableswap]: Create scaling/descaling functions for token inputs/outputs (#2904) · b9773dca
      alpo authored
      Closes: #2902
      
      ## What is the purpose of the change
      
      This PR adds a scaling function for token inputs. Depending on what level we want to handle rounding at (at the scaling function level vs. at the `SwapExactAmountIn` level), we can either use this function for outputs as well or create a second one that handles outputs with different rounding.
      
      I personally think having one function with rounding handled at a higher level of abstraction is cleaner because it has less repeat code, but I can see the security argument for having multiple scaling functions that round differently for each specific use (cc: @ValarDragon)
      
      ## Brief Changelog
      
      - Add `scaledInput` function and tests
      
      ## Testing and Verifying
      
      - The function added in this PR is tested in `pool_test.go` under `TestScaledInput`
      
      ## Documentation and Release Note
      
        - Does this pull request introduce a new feature or user-facing behavior changes? (no)
        - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? (no)
        - How is the feature or change documented? (not documented)
      b9773dca
    • Dev Ojha's avatar
      stableswap: Improve the scaling factor API (#2908) · f573904e
      Dev Ojha authored
      * Improve the scaling factor API
      
      * Rounding direction test
      
      * Fix spot pric
      
      * Delete more unused methods
      
      * Test & fix for boundary condition
      
      * scaling factor initial docs
      
      * More spec update
      f573904e
    • punishell's avatar
      DOCKER_BUILDKIT=1 is not passed when using docker-compose (#2818) · 3c7eab90
      punishell authored
      
      * DOCKER_BUILDKIT=1 is not passed when using docker-compose
      
      DOCKER_BUILDKIT=1 is not passed when using docker-compose it needs to be changed to DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 in order to make
      e.g:
      make localnet-build  works
      
      * Update Makefile
      
      changed only 
      from 
      @DOCKER_BUILDKIT=1
      to
      @DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1
      
      * Update Makefile
      
      fix spaces
      
      * Update Makefile
      
      sorry for wasting your time :D
      
      * Update Makefile
      
      * Update Makefile
      
      Co-authored-by: default avatarNiccolo Raspa <6024049+niccoloraspa@users.noreply.github.com>
      3c7eab90