mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 05:29:55 +00:00
08e6669403
Gains explicit typing.
49 lines
1 KiB
Rust
49 lines
1 KiB
Rust
use serai_runtime::primitives::{Coin, Amount};
|
|
|
|
use serai_client::{Serai, SeraiDex, PairSigner};
|
|
use sp_core::{sr25519::Pair, Pair as PairTrait};
|
|
|
|
use crate::common::tx::publish_tx;
|
|
|
|
#[allow(dead_code)]
|
|
pub async fn add_liquidity(
|
|
serai: &Serai,
|
|
coin: Coin,
|
|
coin_amount: Amount,
|
|
sri_amount: Amount,
|
|
nonce: u32,
|
|
pair: Pair,
|
|
) -> [u8; 32] {
|
|
let address = pair.public();
|
|
|
|
let tx = serai.sign(
|
|
&PairSigner::new(pair),
|
|
&SeraiDex::add_liquidity(coin, coin_amount, sri_amount, Amount(1), Amount(1), address.into()),
|
|
nonce,
|
|
Default::default(),
|
|
);
|
|
|
|
publish_tx(serai, &tx).await
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub async fn swap(
|
|
serai: &Serai,
|
|
from_coin: Coin,
|
|
to_coin: Coin,
|
|
amount_in: Amount,
|
|
amount_out_min: Amount,
|
|
nonce: u32,
|
|
pair: Pair,
|
|
) -> [u8; 32] {
|
|
let address = pair.public();
|
|
|
|
let tx = serai.sign(
|
|
&PairSigner::new(pair),
|
|
&SeraiDex::swap(from_coin, to_coin, amount_in, amount_out_min, address.into()),
|
|
nonce,
|
|
Default::default(),
|
|
);
|
|
|
|
publish_tx(serai, &tx).await
|
|
}
|