soroswap-utils
Version:
Utilities for interacting with Soroswap, the decentralized exchange (DEX) on Soroban, which is the smart contracts platform of the Stellar network.
10 lines (6 loc) • 419 B
text/typescript
import type { FactoryEvent, RawFactoryEvent } from "./factory-events";
import type { ExtendedPairEvent, RawExtendedPairEvent } from "./pair-events";
import type { RawRouterEvent, RouterEvent } from "./router-events";
type RawSoroswapEvent = RawExtendedPairEvent | RawFactoryEvent | RawRouterEvent;
type SoroswapEvent = ExtendedPairEvent | FactoryEvent | RouterEvent;
export type { RawSoroswapEvent, SoroswapEvent };