Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

fix typo #429

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 2 additions & 2 deletions packages/contracts/exchange_abi/src/main.sw
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ abi Exchange {
/// Burn SWAYSWAP tokens to withdraw ETH and Tokens at current ratio.
#[storage(read, write), payable]
fn remove_liquidity(min_eth: u64, min_tokens: u64, deadline: u64) -> RemoveLiquidityInfo;
/// Swap ETH <-> Tokens and tranfers to sender.
/// Swap ETH <-> Tokens and transfers to sender.
#[storage(read, write), payable]
fn swap_with_minimum(min: u64, deadline: u64) -> u64;
/// Swap ETH <-> Tokens and tranfers to sender.
/// Swap ETH <-> Tokens and transfers to sender.
#[storage(read, write), payable]
fn swap_with_maximum(amount: u64, deadline: u64) -> u64;
/// Get the minimum amount of coins that will be received for a swap_with_minimum.
Expand Down