Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ target/
deploy_testnet.sh
deploy_mainnet.sh

.env
.env

scripts/
16 changes: 9 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

## Mainnet Deployment

Code Id: 1817
Code Id: 1860

Address: `inj1m4xetr87wenaffq0ehhjewxpl9l7detuxtxduv`
Address: `inj1g5nuy2c6up2f2z0dqf4qayl9seeg7enq3xxaks`

## Getting Started

### Prerequisites

- [Rust](https://www.rust-lang.org/tools/install) (latest stable version recommended)
- `rustup` target for Wasm: `rustup target add wasm32-unknown-unknown`
- [Docker](https://www.docker.com/get-started/) for reproducible production builds.
- [Rust](https://www.rust-lang.org/tools/install) (latest stable version recommended)
- `rustup` target for Wasm: `rustup target add wasm32-unknown-unknown`
- [Docker](https://www.docker.com/get-started/) for reproducible production builds.

---

Expand Down Expand Up @@ -185,6 +185,7 @@ pub struct OrderbookSwapOp {
pub swap_contract: String,
pub offer_asset_info: external::AssetInfo,
pub ask_asset_info: external::AssetInfo,
pub min_quantity_tick_size: Uint128,
}
```

Expand Down Expand Up @@ -214,7 +215,8 @@ Here is an example of a complex route that showcases the multi-hop `Path` functi
"orderbook_swap": {
"swap_contract": "inj1...",
"offer_asset_info": { "native_token": { "denom": "peggy0x...usdt" } },
"ask_asset_info": { "token": { "contract_addr": "inj1...shroom" } }
"ask_asset_info": { "token": { "contract_addr": "inj1...shroom" } },
"min_quantity_tick_size": 100000000
}
}
]
Expand Down Expand Up @@ -244,4 +246,4 @@ Here is an example of a complex route that showcases the multi-hop `Path` functi
"minimum_receive": "123000000"
}
}
```
```