This project is mirrored from https://github.com/osmosis-labs/osmosis.git.
Pull mirroring updated .
- 10 Nov, 2022 6 commits
-
-
Adam Tucker authored
-
Adam Tucker authored
-
Adam Tucker authored
-
Adam Tucker authored
-
Adam Tucker authored
-
mergify[bot] authored
* Upgrade to IBC v3.4.0 * Changelog update (cherry picked from commit 18cafcf5 ) Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
- 09 Nov, 2022 1 commit
-
-
mergify[bot] authored
* Add keeper level panic catches * Add changelog * Add panic catch for swap (cherry picked from commit f88577d3 ) Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
- 08 Nov, 2022 5 commits
-
-
Sishir Giri authored
* Revert "[ValSet-Pref] Module Wired up and created MsgSetValidatorSetPreference (#2892)" This reverts commit 2ee66e40. * removed folder
-
mergify[bot] authored
* properly parsing denoms * fixing lints * correct bytecode (cherry picked from commit 748262d7 ) Co-authored-by: Nicolas Lara <nicolaslara@gmail.com>
-
mergify[bot] authored
* Add basic CLI for stableswap * Fix some of the tx items (cherry picked from commit 945e8fc9 ) Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
mergify[bot] authored
## What is the purpose of the change Minor code improvements and refactoring GetAllUniquePairs to be less complex and more readable ## Brief Changelog - GetAllUniquePairs function changed to return slice of DenomPair structs instead of two slices - Uneccessary checks removed from GetInterpolatedRecord and GetMostRecentRecord - Minor changes in inline comments - Existing unit tests adapted to changes listed above ## Testing and Verifying Fixed existing test cases for functions that use: GetAllUniquePairs() ## 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? code comments (cherry picked from commit b703f471 ) Co-authored-by: Aleksandar Ljahović <106961751+ljah8@users.noreply.github.com>
-
mergify[bot] authored
* Update spec for error tolerance mathematics * Add proof * markdown lint Co-authored-by: alpo <yukseloglua@berkeley.edu> (cherry picked from commit 4e2b9425 ) Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
- 07 Nov, 2022 10 commits
-
-
alpo authored
* increase max post-scaled amount to 10^34 * tighten tests around max pool assets * change big.int to sdk int pow Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com> * fix power calculation and clean up comments * minor comment cleanup Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
Nicolas Lara authored
* added multiple quotas * small fixes * reordered imports * added management messages * reorganized management messages and experimenting with e2e testing * commenting out test configuration test for now * added query * added flow unit test * cleanup * added AddChannel tests * format * test values are properly stored * testing remove channel * some more rate limiting tests * moved tests about test setup to the right place * fixed params * merged main * running gofumpt * added ibc-rate-limiting contract * added ibc-rate-limit middleware * added chain integration and tests * reverted change to match merged branch in main (#2341 instead of #2274) * added cosmwasm workflow * added a migrate message * added some doc comments to the state * added doc comments * fixed dependency after merging https://github.com/osmosis-labs/cosmos-sdk/pull/312 * added migr...
-
alpo authored
[x/gamm][stableswap]: Add default scaling factor multiplier, geometric error tolerance, and minimum post-scaled asset amount (#3223) * add default scaling factor multiplier * update constant name * minor fixes * update tests and core logic to reflect scaling factor multiplier * add min post-scaled asset amount and switch to geometric error tolerance * clean up comments * add tests for min post-scaled asset amount * fix conflicts with err tolerance changes * remove bigdec err tol and change geometric tolerance to 10^-12 * Apply suggestions from code review Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com> * add back removed test and fix lint Co-authored-by: Dev Ojha <ValarDragon@users.noreply.github.com>
-
Niccolo Raspa authored
-
Dev Ojha authored
## What is the purpose of the change Move rounding direction into error tolerance, rather than being another argument to binary search. ## Testing and Verifying This change is already covered by existing binary search tests. ## 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? Code comments
-
dependabot[bot] authored
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.13.0 to 1.13.1. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/v1.13.1/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.13.0...v1.13.1 ) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
dependabot[bot] authored
Bumps [github.com/spf13/viper](https://github.com/spf13/viper) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/spf13/viper/releases) - [Commits](https://github.com/spf13/viper/compare/v1.13.0...v1.14.0 ) --- updated-dependencies: - dependency-name: github.com/spf13/viper dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
Dev Ojha authored
## What is the purpose of the change Needed for stableswap correctness. We ensure that the binary search always rounds `k` in the correct direction. I'm currently in the process of rewriting the tests, to make this directly testable, and then will do a spec update. However the code for the stableswap change I believe is sufficiently commented. ## Brief Changelog - Add rounding behavior option to ErrTolerance compare - Use this in binary searcher - Add this to stableswap cfmmSolve - Improve tests ## Testing and Verifying Working on test improvements here. # Documentation and Release Note - Does this pull request introduce a new feature or user-facing behavior changes? yes - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? no - How is the feature or change documented? Stableswap Spec
-
Nicolas Lara authored
The channel value for native tokens shouldn't be only the value in escrow for that channel, but the value for *all* channels. This is similar to what we were doing before: getting the total supply, but focuses on the IBC supply of native tokens.
-
Niccolo Raspa authored
-
- 06 Nov, 2022 1 commit
-
-
Sishir Giri authored
* Module Wired up and created MsgSetValidatorSetPreference * [ValSet-Pref] Module Wired up and created MsgSetValidatorSetPreference * bez feedback
-
- 04 Nov, 2022 4 commits
-
-
Nicolas Lara authored
-
Reece Williams authored
* cleanup & fixes multinode testnet * cleanup superfluiod-test-startnode
-
Miguel Dingli authored
* Last error time now updates during record interpolation * Add CHANGELOG entry for #2923 * Revert "Last error time now updates during record interpolation" This reverts commit 8d1e259019e9bad959f9434bb69203892bd0a1fe. * Revert "Add CHANGELOG entry for #2923" This reverts commit 8e359f71a86798591d50b09225d6de5d95a6efe7. * Update error time during interpolation and update error checks in twap calculation * Add changelog entry * Update x/twap/logic.go Co-authored-by: Matt, Park <45252226+mattverse@users.noreply.github.com> * Update CHANGELOG.md * Fix lint issue Co-authored-by: Matt, Park <45252226+mattverse@users.noreply.github.com>
-
Dev Ojha authored
* Re-enable stableswap * Fix test scaffolding, re-enable messages * clean up prints and comments Co-authored-by: alpo <62043214+AlpinYukseloglu@users.noreply.github.com>
-
- 03 Nov, 2022 2 commits
-
-
Dev Ojha authored
* rename p.ScalingFactor -> ScalingFactors * Lower line length * Minor comment updates
-
Ruslan Akhtariev authored
* JoinSwapExactAmountIn query * ExitSwapShareAmountIn query * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * JoinSwapExactAmountIn, ExitSwapShareAmountIn queries * save * test: finish CalcJoinPoolShares query test * tests for CalcExitPoolCoinsFromShares * tests for CalcExitPoolCoinsFromShares * test: add additional exit coin tests * Update x/gamm/keeper/grpc_query.go Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> * Update x/gamm/keeper/grpc_query.go Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> * Update x/gamm/keeper/grpc_query.go Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> * queries * docs fix * chore: generate protobuf files * feat: remove TokensOutDenoms, fix typos * Update x/gamm/keeper/grpc_query_test.go Co-authored-by: Ruslan Akhtariev <ruslanakhtariev@Ruslans-MacBook-Air.local> Co-authored-by: George McAskill <42020095+georgemc98@users.noreply.github.com> Co-authored-by: Roman <roman@osmosis.team> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
-
- 02 Nov, 2022 4 commits
-
-
Mirel Dalčeković authored
-
Dev Ojha authored
## What is the purpose of the change Add CLI query support for TWAP. I've eye ball-tested the values for correctness against imperator API. Ideally we add this logic to our querygen, or use proto-reflect from SDK to automate CLI boilerplate going for. ## Testing and Verifying Manually tested ## Documentation and Release Note - Does this pull request introduce a new feature or user-facing behavior changes? yes - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? yes - How is the feature or change documented? CLI help
-
Ruslan Akhtariev authored
* TotalDelegationByValidatorForAsset query + tests * TotalDelegationByValidatorForAsset + tests * TotalDelegationByValidatorForAsset + test * names changed * save * TotalDelegationByValidatorForDenom query * TotalDelegationByValidatorForDenom * save * docs rpc TotalDelegationByValidatorForDenom * TotalDelegationByValidatorForDenom clean * TotalDelegationByValidatorForDenom query * TotalDelegationByValidatorForDenom query * TotalDelegationByValidatorForDenom query * query * save Co-authored-by: Ruslan Akhtariev <ruslanakhtariev@Ruslans-MacBook-Air.local> Co-authored-by: George <42020095+georgemc98@users.noreply.github.com>
-
Roman authored
* fix(e2e): various e2e build issues breaking debugging on linux amd64 * fix test-e2e-debug
-
- 01 Nov, 2022 4 commits
-
-
Dev Ojha authored
* Progress on IBC rate limit spec * Fix CI * Fix lints * More updates * fix mdlinter * More notes * one more todo * More README update * Update x/ibc-rate-limit/README.md Co-authored-by: Adam Tucker <adam@osmosis.team> Co-authored-by: Adam Tucker <adam@osmosis.team>
-
Aleksandr Bezobchuk authored
-
Ruslan Akhtariev authored
feat(release): Automated post-upgrade tasks by code generating upgrade handler and auto-increasing e2e version (#3100) * automate post-upgrade tasks by code generating upgrade handler and setting e2e in makefile * automate post-upgrade tasks by code generating upgrade handler and setting e2e in makefile * save * save * save * yaml * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * On release auto upgrade * docs * save * also changes app.go * also changes app.go * also changes app.go * test using ci because will run forever on m1 with qemu * save * post release action * post release github action * auto postrelease action * cleanup * cleanup * cleanup * del * docs * major * save * save * save * Save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * save * s * s * s * s * s * only on major upgrades * docs Co-authored-by: Ruslan Akhtariev <ruslanakhtariev@Ruslans-MacBook-Air.local>
-
Ruslan Akhtariev authored
* natural logarithm * tick log * save * save * customBase * logs Co-authored-by: Ruslan Akhtariev <ruslanakhtariev@Ruslans-MacBook-Air.local>
-
- 31 Oct, 2022 3 commits
-
-
Roman authored
-
dependabot[bot] authored
Bumps [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) from 1.14.15 to 1.14.16. - [Release notes](https://github.com/mattn/go-sqlite3/releases) - [Commits](https://github.com/mattn/go-sqlite3/compare/v1.14.15...v1.14.16 ) --- updated-dependencies: - dependency-name: github.com/mattn/go-sqlite3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
dependabot[bot] authored
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](https://github.com/spf13/cobra/compare/v1.6.0...v1.6.1 ) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-