thena-v3-sdk
Version:
⚒️ An SDK for building applications on top of Thena V3 Fusion
12 lines (11 loc) • 378 B
TypeScript
import { Token } from 'thena-sdk-core';
/**
* Computes a pool address
* @param tokenA The first token of the pair, irrespective of sort order
* @param tokenB The second token of the pair, irrespective of sort order
* @returns The pool address
*/
export declare function computePoolAddress({ tokenA, tokenB, }: {
tokenA: Token;
tokenB: Token;
}): string;