ox
Version:
33 lines • 942 B
TypeScript
import * as Hex from '../core/Hex.js';
import * as TokenId from './TokenId.js';
/**
* Converts a user token and validator token to a pool ID.
*
* Pool IDs are deterministic keys derived from two token addresses (order-independent)
* used to identify trading pairs on Tempo's enshrined stablecoin DEX.
*
* [Stablecoin DEX Specification](https://docs.tempo.xyz/protocol/exchange/spec)
*
* @example
* ```ts twoslash
* import { PoolId } from 'ox/tempo'
*
* const poolId = PoolId.from({
* userToken: 1n,
* validatorToken: 2n,
* })
* ```
*
* @param value - User token and validator token.
* @returns The pool ID.
*/
export declare function from(value: from.Value): Hex.Hex;
export declare namespace from {
type Value = {
/** User token. */
userToken: TokenId.TokenIdOrAddress;
/** Validator token. */
validatorToken: TokenId.TokenIdOrAddress;
};
}
//# sourceMappingURL=PoolId.d.ts.map