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

v0.1.1 release sync #316

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Changes from 1 commit
Commits
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: 22 additions & 1 deletion contracts/astroport-tf-liquid-pooler/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# astroport liquid pooler
# astroport tokenfactory-based liquid pooler

Contract responsible for providing liquidity to a specified pool.

This is a modification of the [old astroport liquid pooler contract](../astroport-liquid-pooler/README.md)
which works with cw20-based LP tokens.

The only changes between that contract and this one should be isolated
to the way `ExecuteMsg::Withdraw` is handled.
This contract modifies that handler to work with the native tokenfactory
LP tokens. No other changes should be necessary.

## Testing

Because of different astroport versions causing conflicts in the same
workspace, this contract is currently tested on its dedicated
[v0.1.1 release branch](https://github.com/timewave-computer/covenants/tree/release/v0.1.1).

The local-interchaintest directory there contains the existing e2e tests
that are modified to use this contract code id instead of the old one.

To ensure that the tests are working as expected, make sure to confirm the
checksum between the contract that results from wasm optimization in this repo
and the one in `release/v0.1.1` matches.

## Instantiation
Copy link
Contributor

Choose a reason for hiding this comment

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

👍


The following parameters are expected to instantiate the liquid pooler:
Expand Down
Loading