@rarimo/swap
Version:
Internal tools that other Rarimo packages use to swap tokens.
8 lines (7 loc) • 446 B
TypeScript
import type { IProvider } from '@rarimo/provider';
import type { Swapper } from '../../types';
/**
* @description Instead of using this function directly, run token swaps as transactions with the [@rarimo/nft-checkout]() package.
* For more information about swaps, see [Swapping tokens](https://docs.rarimo.com/overview/swapping-tokens) in the Rarimo documentation.
*/
export declare const createEVMSwapper: (provider: IProvider) => Swapper;