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

Single party pol v2 #146

Merged
merged 23 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8392a5c
init
bekauz Jan 4, 2024
9a6de7b
started migration of V1 to V2
Art3miX Jan 6, 2024
fb7ae90
start interchaintest
bekauz Jan 5, 2024
77a3abf
interchaintest test utils add stride
bekauz Jan 5, 2024
420effb
instantiating liquid staker on ictests
bekauz Jan 6, 2024
8378771
started working on the withdraw functionlity on the LPer
Art3miX Jan 7, 2024
bc72622
Finished with astro lper withdraw change and isngle party holder
Art3miX Jan 8, 2024
c2ef5ab
fmt/clippy
Art3miX Jan 8, 2024
351c8ea
clippy
Art3miX Jan 8, 2024
cf7b77e
init holder on covenant single party
Art3miX Jan 9, 2024
ead3eda
instantiating covenant in ictest; renaming ibc forwarders in top leve…
bekauz Jan 16, 2024
006d7cc
native splitter creates ica
bekauz Jan 17, 2024
0f4977e
splitter actually splits
bekauz Jan 18, 2024
9536181
liquid pooler receives both assets
bekauz Jan 18, 2024
46eb6b0
ictest works for redeeming LP tokens
bekauz Jan 18, 2024
41c1067
moving native splitter & ibc forwarder sudo callback handlers to dedi…
bekauz Jan 18, 2024
75324ad
get_instantiate2_salt_and_address helper; clippy; fmt
bekauz Jan 18, 2024
d0411d5
enable missing migrations in sigle party covenant
bekauz Jan 18, 2024
c6f2a85
rebase fix; clippy; fmt
bekauz Jan 19, 2024
838fd3d
fix osmo genesis helpers
bekauz Jan 19, 2024
1ad473c
removing concentratedliquidity entries from osmo genesis modifications
bekauz Jan 19, 2024
78b225e
enable single party pol in CI
bekauz Jan 19, 2024
f030ee4
osmo genesis modifications
bekauz Jan 19, 2024
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
23 changes: 23 additions & 0 deletions .github/workflows/interchaintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,29 @@ jobs:
- name: swap covenant
run: mkdir interchaintest/swap/wasms && cp -R artifacts/*.wasm interchaintest/swap/wasms && just local-e2e swap TestTokenSwap

single-party-pol-covenant:
needs: compile-contracts
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: contracts
path: artifacts/

- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: setup just
uses: extractions/setup-just@v1

- name: single party pol covenant
run: mkdir interchaintest/single-party-pol/wasms && cp -R artifacts/*.wasm interchaintest/single-party-pol/wasms && cp -R interchaintest/wasms/astroport/*.wasm interchaintest/single-party-pol/wasms && just local-e2e single-party-pol


two-party-pol-covenant:
needs: compile-contracts
Expand Down
Loading
Loading