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

chore: osmoutils, twap, downtime-detector, ibc-hooks cherry-pick to v14 #3925

Merged
merged 30 commits into from
Jan 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ad0c311
Upgrade IBC to v4.2.0 (#3838)
nicolaslara Dec 23, 2022
e8c3c6c
feat(x/twap): modify cli to add geometric option (#3812)
p0mvn Dec 22, 2022
a2fc2c8
Make wasm hooks importable (#3850)
nicolaslara Dec 23, 2022
129cbcb
refactor(x/twap): handle spot price error case in the context of geom…
p0mvn Dec 23, 2022
8196036
test(x/twap): add randomized geometric twap test on a balancer pool (…
p0mvn Dec 23, 2022
c7c0222
Basic geometric twap e2e test (#3835)
hieuvubk Dec 23, 2022
1afb23e
feat(x/twap): whitelist GeometricTwap and GeometricTwapToNow (#3852)
p0mvn Dec 23, 2022
c12bfa3
fix(scripts): proto gen for osmoutils (#3854)
p0mvn Dec 24, 2022
168ccda
fix(scripts): proto gen osmoutils path (#3859)
p0mvn Dec 27, 2022
de76db0
added packet timeouts to wasm hooks (#3862)
nicolaslara Dec 29, 2022
8f88f7d
add negative to cli (#3888)
czarcas7ic Dec 30, 2022
f4c7d47
Making osmoutils compile on chains that don't use our SDK fork (#3899)
nicolaslara Jan 2, 2023
19e4a9d
remove deprecation from arithmetic & geometric twap to now query (#3917)
iboss-ptk Jan 4, 2023
952b2d7
Add types & boilerplate for the Downtime detector module (#3609)
ValarDragon Dec 6, 2022
7ec5e4e
Add downtime detector module (#3688)
ValarDragon Dec 14, 2022
ecde767
Initial by hand fixes
czarcas7ic Jan 4, 2023
1500176
feat(osmomath): Exp2 function (#3708)
p0mvn Dec 16, 2022
048a2a5
[x/TWAP] Expose a geometric TWAP API (#3529)
stackman27 Dec 1, 2022
7ade440
fix twap by hand
czarcas7ic Jan 4, 2023
ea3af42
change to gamm
czarcas7ic Jan 4, 2023
813a6e8
fix balancer test
czarcas7ic Jan 4, 2023
640dfb9
bump to v14 upgrade
czarcas7ic Jan 4, 2023
f7ded6c
e2e fix
czarcas7ic Jan 4, 2023
da63fa8
add remaining diff from main to ibc-rate-limit
czarcas7ic Jan 5, 2023
7d25928
update contracts test
czarcas7ic Jan 5, 2023
f864dcf
osmomath: `AddMut` and `QuoMut` (#3779)
pysel Dec 22, 2022
35ab94e
Modify CHANGELOG
mattverse Jan 5, 2023
09ccc37
Whitelist EstimateSwapExactAmountOut (#3693)
byeongsu-hong Dec 13, 2022
3a4aac2
updated rate limit contract
nicolaslara Jan 5, 2023
d5dda29
Fix rust checks (#3576)
nicolaslara Nov 30, 2022
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
5 changes: 2 additions & 3 deletions tests/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,9 @@ func (s *IntegrationTestSuite) TestIBCTokenTransferRateLimiting() {
fmt.Println(wd, projectDir)
err = copyFile(projectDir+"/x/ibc-rate-limit/bytecode/rate_limiter.wasm", wd+"/scripts/rate_limiter.wasm")
s.NoError(err)
// set LatestCodeId to 1 since we upload a contract in the upgrade handler for v13
chainA.LatestCodeId = 1

node.StoreWasmCode("rate_limiter.wasm", initialization.ValidatorWalletName)
chainA.LatestCodeId += 1
chainA.LatestCodeId = 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@czarcas7ic This looks good, but similar question. Why not cherry pick #3635?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think my main concern was I didn't want to cherry-pick a PR and not realize it had some drive by that it shouldn't have

node.InstantiateWasmContract(
strconv.Itoa(chainA.LatestCodeId),
fmt.Sprintf(`{"gov_module": "%s", "ibc_module": "%s", "paths": [{"channel_id": "channel-0", "denom": "%s", "quotas": [{"name":"testQuota", "duration": 86400, "send_recv": [1, 1]}] } ] }`, node.PublicAddress, node.PublicAddress, initialization.OsmoToken.Denom),
Expand Down