Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OmniBTC/Sui-AMM-swap
The first open source AMM swap on the Sui. @mystenLabs
https://github.com/OmniBTC/Sui-AMM-swap
Last synced: 3 months ago
JSON representation
The first open source AMM swap on the Sui. @mystenLabs
- Host: GitHub
- URL: https://github.com/OmniBTC/Sui-AMM-swap
- Owner: OmniBTC
- License: apache-2.0
- Created: 2022-10-08T11:28:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-13T08:17:10.000Z (over 1 year ago)
- Last Synced: 2024-08-01T02:26:07.826Z (5 months ago)
- Language: Move
- Homepage:
- Size: 5.01 MB
- Stars: 71
- Watchers: 6
- Forks: 31
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sui - SuiAMMswap - Sui AMM Swap implemented by the OmniBTC team. (Code / DeFi)
- awesome-move - SuiAMMswap - Sui AMM Swap implemented by the OmniBTC team. (Code / DeFi)
README
# Sui-AMM-swap
The first open source AMM swap on the [Sui](https://github.com/MystenLabs).
## [Audit Report](https://movebit.xyz/file/Sui-AMM-swap-Contracts-Audit-Report.pdf)
This code has been audited by MoveBit professional auditing company.
Audit report click [here](https://github.com/OmniBTC/Sui-AMM-swap/blob/main/Sui-AMM-swap%20Contracts%20Audit%20Report%20(5).pdf)## cmd for tests
```bash
$ issue XBTC and USDT test coins
XBTC="0x985c26f5edba256380648d4ad84b202094a4ade3::coins::XBTC"
USDT="0x985c26f5edba256380648d4ad84b202094a4ade3::coins::USDT"
SUI="0x2::sui::SUI"$ sui client publish --gas-budget 10000
package=0xc6f8ce30d96bb9b728e000be94e25cab1a6011d1
global=0x28ae932ee07d4a0881e4bd24f630fe7b0d18a332$ sui client objects
sui_coin=0x525c0eb0e1f4d8744ae21984de2e8a089366a557
usdt_coin=0x8e81c2362ff1e7101b2ef2a0d1ff9b3c358a1ac9$ sui client call --gas-budget 10000 \
--package=$package \
--module=interface \
--function=add_liquidity \
--args $global $sui_coin 1 $usdt_coin 1 \
--type-args $SUI $USDT
lp_sui_usdt=0xdf622fddc8447b0c1d15f8418e010933dd5f0a6c
pool_sui_usdt=0x5058b90e728df97c4cb5cade5e5c77fcb662a4b9$ sui client split-coin --gas-budget 10000 \
--coin-id $lp_sui_usdt \
--amounts 100000
lp_sui_usdt2=0x6cde2fe9277c92e196585fb12c6e3d5aaa4eab34$ sui client call --gas-budget 10000 \
--package=$package \
--module=interface \
--function=remove_liquidity \
--args $global $lp_sui_usdt2 \
--type-args $SUI $USDTnew_usdt_coin=0xc090e45f9461e39abb0452cf3ec297a40efbfdc3
new_sui_coin=0x9c8c1cc38cc61a94264911933c69a772ced07a09# sui -> usdt
$ sui client call --gas-budget 10000 \
--package=$package \
--module=interface \
--function=swap \
--args $global $new_sui_coin 1 \
--type-args $SUI $USDT
out_usdt_coin=0x80076d95c8bd1d5a0f97b537669008a1a369ce12# usdt -> sui
sui client call --gas-budget 10000 \
--package=$package \
--module=interface \
--function=swap \
--args $global $out_usdt_coin 1 \
--type-args $USDT $SUIout_sui_coin=0xaa89836115e1e1a4f5fa990ebd2c7be3a5124d07
$ sui client call --gas-budget 10000 \
--package=$package \
--module=interface \
--function=add_liquidity \
--args $global $out_sui_coin 100 $new_usdt_coin 1000 \
--type-args $SUI $USDT
```